-
Notifications
You must be signed in to change notification settings - Fork 5
Feature/lineage tracking #228
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
Merged
Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
bc34626
copilot instructions
TrevorBurgoyne 0c14ddb
Fix zero-len polylines
TrevorBurgoyne fb6f2d3
Start actions refactor
TrevorBurgoyne ccecf73
Move undo/redo to actions file
TrevorBurgoyne d58f517
add first action listener
TrevorBurgoyne 38ff212
Move annotation id out of undo/redo payloads. Verified that all undo/…
TrevorBurgoyne d55de30
Separate out begin vs continue edit
TrevorBurgoyne cdbcfda
same for move actions
TrevorBurgoyne 97b5a66
update during move/edit
TrevorBurgoyne 831c5c1
Add continue_annotation
TrevorBurgoyne d85d9e5
Refactor suggest_edits to be the main controller of dialog visibility
TrevorBurgoyne 3091ec6
add finish annotation
TrevorBurgoyne abbf3ae
add deletion handle
TrevorBurgoyne 8cfc9ab
Fix docstrings
TrevorBurgoyne e51c94d
Rmv redundant calls for finish annotation
TrevorBurgoyne 324b710
handler for id change
TrevorBurgoyne 6bff442
Fix non-recorded actions clearing undo stack
TrevorBurgoyne c1077af
Rmv redundant delete calls
TrevorBurgoyne 4ca31e5
Start anno listener, and fix duplicate redo listener triggers
TrevorBurgoyne 2c964fa
Listen for create annotation
TrevorBurgoyne 1469cc9
refactor undo/redo
TrevorBurgoyne 48ddd73
Dont use begin annotation for point create keybind
TrevorBurgoyne 1632a21
Fix edits
TrevorBurgoyne f143d84
listen to non-spatial annotation creation, and fix some bugs related …
TrevorBurgoyne 2198c76
add cancel and complex polygon start listeners
TrevorBurgoyne ca3fa1b
fix finish complex undo/redo, and start listening for begin brush
TrevorBurgoyne ee6caa1
listen for continue brush and fix undo
TrevorBurgoyne 74515d9
handle internal polygon action undos
TrevorBurgoyne c21245a
remove redundant draws for polygon layer merging
TrevorBurgoyne 2021fa0
fix edit bugs, ie not rendering polygon merge
TrevorBurgoyne 9517dec
fix edit undo/redo bugs by replacing whole annotation
TrevorBurgoyne a8423b5
fix move polyline tweaking during filter
TrevorBurgoyne 662a538
Finally actually add lineage tracking, and fix bug with resume_from n…
TrevorBurgoyne 6c74c18
clean up logging
TrevorBurgoyne 335f695
Bump version and rebuild.
TrevorBurgoyne 2cefdc4
update docs
TrevorBurgoyne 79ab3da
Don't init loaded annotations with the current time
TrevorBurgoyne ef87dd0
refactor action listeners
TrevorBurgoyne cf27c19
build
TrevorBurgoyne e4f6350
use log message instead of console.error
TrevorBurgoyne 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| ## General Instructions | ||
| - Keep it simple. | ||
| - Work in small, incremental changes. | ||
| - Whenever you run a command in the terminal, pipe the output to a file, output.txt, that you can read from. Make sure to overwrite each time so that it doesn't grow too big. There is a bug in the current version of Copilot that causes it to not read the output of commands correctly. This workaround allows you to read the output from the temporary file instead. | ||
| - Ensure changes pass linting checks by running `npm run lint` and waiting for it to complete. Read the linting errors and resolve them manually. | ||
| - Ensure changes build successfully by running `npm run build`. | ||
| - Do not add new dependencies unless given explicit permission. | ||
| - Do not modify the `package.json` or `package-lock.json` files unless instructed. | ||
|
|
||
|
|
||
| ## Task Tracking | ||
| - Always start each step by referencing and updating your tasks in `.github/tasks.md`. | ||
| - Use checkboxes to track progress. | ||
| - Work on one task at a time. | ||
| - Do not mark tasks as complete until they are fully done. Ask for confirmation if unsure. |
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,5 @@ | ||
| ## Tasks | ||
| - [x] Read the discussion in [#209](https://github.com/SenteraLLC/ulabel/issues/209) and understand the requirements. | ||
| - [x] Implement the fix requested in [#209](https://github.com/SenteraLLC/ulabel/issues/209). | ||
| - [x] Build the fix and ensure the build succeeds by running `npm run build`. | ||
| - [x] Receive confirmation that the fix works as expected. |
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,4 +1,5 @@ | ||
| node_modules | ||
| ulabel_local/py-dbapi/dbapi/__pycache__ | ||
| build | ||
| build/* | ||
| build/* | ||
| output.txt |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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.
Is this referring to itself?
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.
yeah idk how this got added
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.
looks like its getting auto inserted by the build and I dont feel like tracking down why rn lol