diff --git a/android-activity/CHANGELOG.md b/android-activity/CHANGELOG.md index b2dbebd..7b15fa7 100644 --- a/android-activity/CHANGELOG.md +++ b/android-activity/CHANGELOG.md @@ -9,10 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.4] - 2022-11-10 ### Changed -- *Breaking*: `input_events` callback now return whether an event was handled or not to allow for fallback handling ([#31](https://github.com/rib/android-activity/issues/31)) -- The native-activity backend is now implemented in Rust only, without building on `android_native_app_glue.c` ([#35](https://github.com/rib/android-activity/pull/35)) +- *Breaking*: `input_events` callback now return whether an event was handled or not to allow for fallback handling ([#31](https://github.com/rust-mobile/android-activity/issues/31)) +- The native-activity backend is now implemented in Rust only, without building on `android_native_app_glue.c` ([#35](https://github.com/rust-mobile/android-activity/pull/35)) ### Added -- Added `Pointer::tool_type()` API to `GameActivity` backend for compatibility with `ndk` events API ([#38](https://github.com/rib/android-activity/pull/38)) +- Added `Pointer::tool_type()` API to `GameActivity` backend for compatibility with `ndk` events API ([#38](https://github.com/rust-mobile/android-activity/pull/38)) ## [0.3] - 2022-09-15 ### Added diff --git a/android-activity/Cargo.toml b/android-activity/Cargo.toml index 1f2d970..61f7af0 100644 --- a/android-activity/Cargo.toml +++ b/android-activity/Cargo.toml @@ -4,8 +4,8 @@ version = "0.4.0" edition = "2021" keywords = ["android", "ndk"] readme = "../README.md" -homepage = "https://github.com/rib/android-activity" -repository = "https://github.com/rib/android-activity" +homepage = "https://github.com/rust-mobile/android-activity" +repository = "https://github.com/rust-mobile/android-activity" documentation = "https://docs.rs/android-activity" description = "Glue for building Rust applications on Android with NativeActivity or GameActivity" license = "MIT OR Apache-2.0"