-
Notifications
You must be signed in to change notification settings - Fork 3
#11: Re-implementation of version tracking #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
shubertm
wants to merge
20
commits into
main
Choose a base branch
from
version-tracking-2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
ab47493
Re-implementing version tracking
shubertm 6905458
Minor fix
shubertm 126d717
Hide and show buttons
shubertm 9775e6a
README stub
kirillt b7f3a0d
Forking note
shubertm 15c90df
Merge branch 'version-tracking-2' of https://github.com/ARK-Builders/…
shubertm 8886ba2
Fix note saving
shubertm 26c811e
Fix note creation
shubertm 8dc86c0
Update ark dependencies
shubertm 1ba11cc
Merge remote-tracking branch 'origin/main' into version-tracking-2
shubertm 838b64c
Resolve conflicts + some refactors
shubertm 69f56ae
Merge main + refactors
shubertm 0e7b176
Some fixes
shubertm 42f9cf3
Adopt ARK storage for versions
shubertm 15add0b
Ensure compiling versions works
shubertm f7df0b6
Update build.yml
shubertm 8256952
Update build.yml
shubertm fecaa2f
Update build.yml
shubertm 01524d1
Merge remote-tracking branch 'refs/remotes/origin/main' into version-…
shubertm 7654b46
Invalidate versions UI and resolve conflicts
shubertm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # ARK Memo: Notes App by ARK Builders | ||
|
|
||
| _Implementation in progress_ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,13 @@ | ||
| package dev.arkbuilders.arkmemo.models | ||
|
|
||
| import android.os.Parcelable | ||
| import dev.arkbuilders.arklib.data.index.Resource | ||
|
|
||
| interface Note { | ||
| interface Note : Parcelable { | ||
| val title: String | ||
| val description: String | ||
| var resource: Resource? | ||
| var pendingForDelete: Boolean | ||
| var selected: Boolean | ||
| var isForked: Boolean | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
app/src/main/java/dev/arkbuilders/arkmemo/models/VersionsResult.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| package dev.arkbuilders.arkmemo.models | ||
|
|
||
| import dev.arkbuilders.arklib.ResourceId | ||
| import dev.arkbuilders.arkmemo.repo.versions.Version | ||
|
|
||
| data class VersionsResult( | ||
| val versions: List<Version>, | ||
| val parents: Set<ResourceId>, | ||
| val children: List<ResourceId>, | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix: setup-java v4 no longer supports distribution 'adopt'
actions/setup-java@v4 does not accept 'adopt'. Use 'temurin' for Java 17 (AdoptOpenJDK migrated to Eclipse Temurin).
Apply this diff:
📝 Committable suggestion
🤖 Prompt for AI Agents