From 316318c0aabea290ec2ce5df53a870b09eeef146 Mon Sep 17 00:00:00 2001 From: Adil Hanney Date: Sat, 28 Oct 2023 20:09:55 +0100 Subject: [PATCH] v0.17.1 --- README.md | 4 ++-- flatpak/com.adilhanney.saber.metainfo.xml | 8 ++++++++ installers/desktop_inno_script.iss | 2 +- lib/data/version.dart | 4 ++-- metadata/en-US/changelogs/17010.txt | 2 ++ pubspec.yaml | 2 +- snap/snapcraft.yaml | 2 +- windows/runner/Runner.rc | 4 ++-- 8 files changed, 19 insertions(+), 9 deletions(-) create mode 100644 metadata/en-US/changelogs/17010.txt diff --git a/README.md b/README.md index dd94cd7a6..2abd2d415 100644 --- a/README.md +++ b/README.md @@ -328,8 +328,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.17.0/SaberInstaller_v0.17.0.exe -[download_appimage]: https://github.com/saber-notes/saber/releases/download/v0.17.0/Saber-0.17.0-x86_64.AppImage +[download_windows]: https://github.com/saber-notes/saber/releases/download/v0.17.1/SaberInstaller_v0.17.1.exe +[download_appimage]: https://github.com/saber-notes/saber/releases/download/v0.17.1/Saber-0.17.1-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 512419085..08ec97052 100644 --- a/flatpak/com.adilhanney.saber.metainfo.xml +++ b/flatpak/com.adilhanney.saber.metainfo.xml @@ -265,6 +265,14 @@ + + +
    +
  • Fixed a crash when zooming in to PDFs
  • +
  • Improved performance of the shape tool
  • +
+
+
    diff --git a/installers/desktop_inno_script.iss b/installers/desktop_inno_script.iss index ef78e5981..516c32ec1 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.17.0" +#define MyAppVersion "0.17.1" #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 50a1051a1..685cd5e5c 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 = 17000; +const int buildNumber = 17010; /// The current app version as a string. -const String buildName = '0.17.0'; +const String buildName = '0.17.1'; /// The year in which the current version was released. const int buildYear = 2023; diff --git a/metadata/en-US/changelogs/17010.txt b/metadata/en-US/changelogs/17010.txt new file mode 100644 index 000000000..22c4a4be8 --- /dev/null +++ b/metadata/en-US/changelogs/17010.txt @@ -0,0 +1,2 @@ +• Fixed a crash when zooming in to PDFs +• Improved performance of the shape tool diff --git a/pubspec.yaml b/pubspec.yaml index 4b8d99442..443523118 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.17.0+17000 +version: 0.17.1+17010 environment: sdk: ">=3.0.0 <4.0.0" diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index b17620a63..5dcafc2ed 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.17.0' + source-tag: 'v0.17.1' plugin: flutter #build-attributes: [enable-patchelf] build-packages: diff --git a/windows/runner/Runner.rc b/windows/runner/Runner.rc index 513fe4622..fadbd47fc 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,17,0,0 +#define VERSION_AS_NUMBER 0,17,1,0 #endif #ifdef FLUTTER_BUILD_NAME #define VERSION_AS_STRING #FLUTTER_BUILD_NAME #else -#define VERSION_AS_STRING "0.17.0.0" +#define VERSION_AS_STRING "0.17.1.0" #endif VS_VERSION_INFO VERSIONINFO