Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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 19 commits into from
Nov 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated readme and changelog
  • Loading branch information
tmaxxdd committed Nov 1, 2024
commit 2e90b148497c97b95044dd20e33bc68e2e77d4ac
6 changes: 6 additions & 0 deletions 6 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
### Added
- serialization for public models
- XCFramework output
- `getHighlightsAsync()` with handy `DefaultHighlightsResultListener` adapter
- `getByName()` function for `SyntaxThemes`

### Changed
- Kotlin version to 2.0.20
- direct snapshot field access to `getSnapshot()` function

## [0.9.3]

Expand Down
2 changes: 1 addition & 1 deletion 2 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ highlights.getHighlightsAsync(
// onStart
// onError
// onCancel
override fun onComplete(highlights: List<CodeHighlight>) {
override fun onSuccess(result: List<CodeHighlight>) {
emitResult(highlights)
}
}
Expand Down
4 changes: 2 additions & 2 deletions 4 sample/src/main/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ fun runAsync(
// onStart
// onError
// onCancel
override fun onComplete(highlights: List<CodeHighlight>) {
emitResult(highlights)
override fun onSuccess(result: List<CodeHighlight>) {
emitResult(result)
}
}
)
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.