File tree Expand file tree Collapse file tree 7 files changed +31
-8
lines changed Expand file tree Collapse file tree 7 files changed +31
-8
lines changed Original file line number Diff line number Diff line change 11# Release Notes
2+ ## Version 0.9.4 – 02/07/2025
3+ ### Desktop
4+ #### New Features
5+ - Private page sharing: Add members to private pages with Can View or Can Edit permissions
6+ - Guest editor collaboration: Invite non-members (guest editors) to collaborate in real-time on your pages
7+ - Shared with me: Browse all pages shared with you under the new Shared with me section
8+ - New syncing protocol: Optimized for faster, more reliable multi-user and multi-device data sync
9+ ### Mobile
10+ #### New Features
11+ - Shared page collaboration: View and edit pages that have been shared with you on iOS and Android
12+ - New syncing protocol: Optimized for faster, more reliable multi-user and multi-device data sync
13+
214## Version 0.9.3 - 28/05/2025
315### Desktop
416#### New Features
2335## Version 0.9.2 - 14/05/2025
2436### Desktop
2537#### New Features
26- - Supported AI Overview in Search to answer user queries based on their entire workspace
27- - Revamped the Search panel in the desktop app
38+ - Supported AI Overview in Search to answer user queries based on their entire workspace
39+ - Revamped the Search panel in the desktop app
2840- Enabled loading custom prompts from an AppFlowy database page
2941#### Bug Fixes
3042- Improved inserting emojis using the colon (:)
235247- Fixed an error when opening files in the database in local mode
236248- Fixed arrow up/down navigation not working for selecting a language in Code Block
237249- Fixed an issue where deleting multiple blocks using the drag button on the document page didn’t work
238-
250+
239251## Version 0.7.7 - 09/12/2024
240252### Bug Fixes
241253- Fixed sidebar menu resize regression
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
2626CARGO_MAKE_CRATE_FS_NAME = " dart_ffi"
2727CARGO_MAKE_CRATE_NAME = " dart-ffi"
2828LIB_NAME = " dart_ffi"
29- APPFLOWY_VERSION = " 0.9.3 "
29+ APPFLOWY_VERSION = " 0.9.4 "
3030FLUTTER_DESKTOP_FEATURES = " dart"
3131PRODUCT_NAME = " AppFlowy"
3232MACOSX_DEPLOYMENT_TARGET = " 11.0"
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ if (keystorePropertiesFile.exists()) {
3232}
3333
3434android {
35- compileSdkVersion 34
35+ compileSdkVersion 35
3636 ndkVersion " 24.0.8215888"
3737
3838 compileOptions {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ buildscript {
66 }
77
88 dependencies {
9- classpath ' com.android.tools.build:gradle:7.4.2 '
9+ classpath ' com.android.tools.build:gradle:8.1.0 '
1010 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
1111 }
1212}
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.5-bin .zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.1-all .zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ buildscript {
99 }
1010
1111 dependencies {
12- classpath ' com.android.tools.build:gradle:7.4.2 '
12+ classpath ' com.android.tools.build:gradle:8.1.0 '
1313 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
1414 }
1515}
@@ -26,6 +26,16 @@ apply plugin: 'kotlin-android'
2626
2727android {
2828 compileSdkVersion 33
29+ namespace ' com.plugin.appflowy_backend'
30+
31+ compileOptions {
32+ sourceCompatibility JavaVersion . VERSION_1_8
33+ targetCompatibility JavaVersion . VERSION_1_8
34+ }
35+
36+ kotlinOptions {
37+ jvmTarget = ' 1.8'
38+ }
2939
3040 sourceSets {
3141 main. java. srcDirs + = ' src/main/kotlin'
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ apply plugin: 'com.android.library'
2424
2525android {
2626 compileSdkVersion 33
27+ namespace ' com.example.flowy_infra_ui'
2728
2829 compileOptions {
2930 sourceCompatibility JavaVersion . VERSION_1_8
You can’t perform that action at this time.
0 commit comments