-
Notifications
You must be signed in to change notification settings - Fork 8
Release 1.0.0 #54
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
Release 1.0.0 #54
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
a67f5b1
Bumped version to 1.0.0
tmaxxdd e58cebb
Bumped kotlin version to 2.0
tmaxxdd e434c9f
Bumped version to 2.0.20
tmaxxdd ddf37ca
Setup serialization and utils for plugin
tmaxxdd 1133776
Added more general API tests
tmaxxdd 2bf68fd
Updated to kotlin 2.0.20
tmaxxdd ce67565
Setup API tests
tmaxxdd 7071c82
Corrected cancelling
tmaxxdd 5d33f3f
Tested new async method
tmaxxdd ffb306a
Added async code to sample
tmaxxdd 80062fc
Created async example
tmaxxdd b6c8acc
Extracted long java code
tmaxxdd 97209f2
Removed wrong gitignore rule
tmaxxdd d970e4b
Fixed example indents
tmaxxdd 65953dd
Removed Job field from public API
tmaxxdd 64f303f
Improved cancellation
tmaxxdd 8752f97
Removed job storing for async work
tmaxxdd 2e90b14
Updated readme and changelog
tmaxxdd 9004bb3
Merge pull request #62 from SnipMeDev/chore/update-release-info
tmaxxdd 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
Binary file not shown.
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
Binary file added
BIN
+137 KB
...nsformedMetadataLibraries/org.jetbrains.kotlin-kotlin-stdlib-2.0.0-commonMain-2bbUHA.klib
Binary file not shown.
Binary file added
BIN
+1.4 KB
...etadataLibraries/org.jetbrains.kotlin-kotlin-test-2.0.0-annotationsCommonMain-24eTFQ.klib
Binary file not shown.
Binary file added
BIN
+5.71 KB
...MetadataLibraries/org.jetbrains.kotlin-kotlin-test-2.0.0-assertionsCommonMain-24eTFQ.klib
Binary file not shown.
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
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
17 changes: 17 additions & 0 deletions
17
src/commonMain/kotlin/dev/snipme/highlights/HighlightsResultListener.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,17 @@ | ||
| package dev.snipme.highlights | ||
|
|
||
| import dev.snipme.highlights.model.CodeHighlight | ||
|
|
||
| interface HighlightsResultListener { | ||
| fun onStart() | ||
| fun onSuccess(result: List<CodeHighlight>) | ||
| fun onError(exception: Throwable) | ||
| fun onCancel() | ||
| } | ||
|
|
||
| abstract class DefaultHighlightsResultListener : HighlightsResultListener { | ||
| override fun onStart() {} | ||
| override fun onSuccess(result: List<CodeHighlight>) {} | ||
| override fun onError(exception: Throwable) {} | ||
| override fun onCancel() {} | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.