Skip to content
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

Version 2.38.1 #43

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

# [2.38.1]
- [Android] Workaround bug that caused the next focus view search loop when the editor is used in a Compose context, causing ANRs.
- [Android] Fix crashes when either the editor or the rendering views contain a code block and their size changes, making the previously calculated and cached coordinates for rendering the code block invalid.
- [Common] Change licensing to AGPLv3 + Element Commercial license.

# [2.38.0]
- [Rust] Bump Rust version to `1.76`.
- [Web] Bump wasm-pack version to `0.13.1`.
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindings/wysiwyg-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Swift and Kotlin bindings for wysiwyg-rust"
keywords = ["matrix", "chat", "messaging", "composer", "wysiwyg"]
license-file = { workspace = true }
name = "uniffi-wysiwyg-composer"
version = "2.38.0"
version = "2.38.1"
rust-version = { workspace = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion bindings/wysiwyg-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "WASM bindings for wysiwyg-rust"
keywords = ["matrix", "chat", "messaging", "composer", "wysiwyg"]
license-file = { workspace = true }
name = "wysiwyg-wasm"
version = "2.38.0"
version = "2.38.1"
rust-version = { workspace = true }

[package.metadata.wasm-pack.profile.profiling]
Expand Down
2 changes: 1 addition & 1 deletion bindings/wysiwyg-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vector-im/matrix-wysiwyg-wasm",
"version": "2.38.0",
"version": "2.38.1",
"homepage": "https://gitlab.com/andybalaam/wysiwyg-rust",
"description": "WASM bindings for wysiwyg-rust",
"license": "SEE LICENSE IN README.md",
Expand Down
2 changes: 1 addition & 1 deletion crates/wysiwyg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Model code to power a rich text editor for Matrix"
keywords = ["matrix", "chat", "messaging", "composer", "wysiwyg"]
license-file = { workspace = true }
name = "wysiwyg"
version = "2.38.0"
version = "2.38.1"
rust-version = { workspace = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion platforms/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ android.enableBuildConfigAsBytecode=true
# Maven publishing
# ===================
MAVEN_GROUP=io.element.android
MAVEN_VERSION_NAME=2.38.0
MAVEN_VERSION_NAME=2.38.1
2 changes: 1 addition & 1 deletion platforms/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vector-im/matrix-wysiwyg",
"version": "2.38.0",
"version": "2.38.1",
"type": "module",
"description": "Wysiwyg composer for Element Web using React",
"author": "New Vector Ltd.",
Expand Down
Loading