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 1
1
# 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
+
2
14
## Version 0.9.3 - 28/05/2025
3
15
### Desktop
4
16
#### New Features
23
35
## Version 0.9.2 - 14/05/2025
24
36
### Desktop
25
37
#### 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
28
40
- Enabled loading custom prompts from an AppFlowy database page
29
41
#### Bug Fixes
30
42
- Improved inserting emojis using the colon (:)
235
247
- Fixed an error when opening files in the database in local mode
236
248
- Fixed arrow up/down navigation not working for selecting a language in Code Block
237
249
- Fixed an issue where deleting multiple blocks using the drag button on the document page didn’t work
238
-
250
+
239
251
## Version 0.7.7 - 09/12/2024
240
252
### Bug Fixes
241
253
- 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
26
26
CARGO_MAKE_CRATE_FS_NAME = " dart_ffi"
27
27
CARGO_MAKE_CRATE_NAME = " dart-ffi"
28
28
LIB_NAME = " dart_ffi"
29
- APPFLOWY_VERSION = " 0.9.3 "
29
+ APPFLOWY_VERSION = " 0.9.4 "
30
30
FLUTTER_DESKTOP_FEATURES = " dart"
31
31
PRODUCT_NAME = " AppFlowy"
32
32
MACOSX_DEPLOYMENT_TARGET = " 11.0"
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ if (keystorePropertiesFile.exists()) {
32
32
}
33
33
34
34
android {
35
- compileSdkVersion 34
35
+ compileSdkVersion 35
36
36
ndkVersion " 24.0.8215888"
37
37
38
38
compileOptions {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ buildscript {
6
6
}
7
7
8
8
dependencies {
9
- classpath ' com.android.tools.build:gradle:7.4.2 '
9
+ classpath ' com.android.tools.build:gradle:8.1.0 '
10
10
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
11
11
}
12
12
}
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =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
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ buildscript {
9
9
}
10
10
11
11
dependencies {
12
- classpath ' com.android.tools.build:gradle:7.4.2 '
12
+ classpath ' com.android.tools.build:gradle:8.1.0 '
13
13
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
14
14
}
15
15
}
@@ -26,6 +26,16 @@ apply plugin: 'kotlin-android'
26
26
27
27
android {
28
28
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
+ }
29
39
30
40
sourceSets {
31
41
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'
24
24
25
25
android {
26
26
compileSdkVersion 33
27
+ namespace ' com.example.flowy_infra_ui'
27
28
28
29
compileOptions {
29
30
sourceCompatibility JavaVersion . VERSION_1_8
You can’t perform that action at this time.
0 commit comments