diff --git a/README.md b/README.md index 23b7bd4c2..8561c9531 100644 --- a/README.md +++ b/README.md @@ -342,8 +342,8 @@ If you like Saber, please consider supporting it by: [google_play]: https://play.google.com/store/apps/details?id=com.adilhanney.saber [snap]: https://snapcraft.io/saber [app_store]: https://apps.apple.com/us/app/saber/id1671523739 -[download_windows]: https://github.com/saber-notes/saber/releases/download/v0.19.4/SaberInstaller_v0.19.4.exe -[download_appimage]: https://github.com/saber-notes/saber/releases/download/v0.19.4/Saber-0.19.4-x86_64.AppImage +[download_windows]: https://github.com/saber-notes/saber/releases/download/v0.20.0/SaberInstaller_v0.20.0.exe +[download_appimage]: https://github.com/saber-notes/saber/releases/download/v0.20.0/Saber-0.20.0-x86_64.AppImage [nextcloud]: https://nc.saber.adil.hanney.org/ diff --git a/flatpak/com.adilhanney.saber.metainfo.xml b/flatpak/com.adilhanney.saber.metainfo.xml index 953cd7048..a0c29d94c 100644 --- a/flatpak/com.adilhanney.saber.metainfo.xml +++ b/flatpak/com.adilhanney.saber.metainfo.xml @@ -242,6 +242,13 @@ + + +
    +
  • Added the pencil tool
  • +
+
+
    diff --git a/installers/desktop_inno_script.iss b/installers/desktop_inno_script.iss index a16919f79..3afd7eff3 100644 --- a/installers/desktop_inno_script.iss +++ b/installers/desktop_inno_script.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Saber" -#define MyAppVersion "0.19.4" +#define MyAppVersion "0.20.0" #define MyAppPublisher "Adil Hanney" #define MyAppURL "https://github.com/saber-notes/saber" #define MyAppExeName "saber.exe" diff --git a/lib/data/version.dart b/lib/data/version.dart index 3f843102d..c7430d0f7 100644 --- a/lib/data/version.dart +++ b/lib/data/version.dart @@ -2,10 +2,10 @@ // Run `./scripts/apply_version.sh --help` for more information. /// The current app version as an ordinal number. -const int buildNumber = 19040; +const int buildNumber = 20000; /// The current app version as a string. -const String buildName = '0.19.4'; +const String buildName = '0.20.0'; /// The year in which the current version was released. const int buildYear = 2024; diff --git a/metadata/en-US/changelogs/20000.txt b/metadata/en-US/changelogs/20000.txt new file mode 100644 index 000000000..bb6b04b5a --- /dev/null +++ b/metadata/en-US/changelogs/20000.txt @@ -0,0 +1 @@ +• Added the pencil tool diff --git a/pubspec.yaml b/pubspec.yaml index a5cbde77c..92f975a51 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 0.19.4+19040 +version: 0.20.0+20000 environment: sdk: ">=3.0.0 <4.0.0" diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index d19c0c915..26e0bfe58 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -36,7 +36,7 @@ parts: saber: after: [rustup] source: https://github.com/saber-notes/saber.git - source-tag: 'v0.19.4' + source-tag: 'v0.20.0' plugin: flutter #build-attributes: [enable-patchelf] build-packages: diff --git a/windows/runner/Runner.rc b/windows/runner/Runner.rc index c0acd1a80..1b753cd9b 100644 --- a/windows/runner/Runner.rc +++ b/windows/runner/Runner.rc @@ -63,13 +63,13 @@ IDI_APP_ICON ICON "resources\\app_icon.ico" #ifdef FLUTTER_BUILD_NUMBER #define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER #else -#define VERSION_AS_NUMBER 0,19,4,0 +#define VERSION_AS_NUMBER 0,20,0,0 #endif #ifdef FLUTTER_BUILD_NAME #define VERSION_AS_STRING #FLUTTER_BUILD_NAME #else -#define VERSION_AS_STRING "0.19.4.0" +#define VERSION_AS_STRING "0.20.0.0" #endif VS_VERSION_INFO VERSIONINFO