Skip to content

Commit 316318c

Browse files
committed
v0.17.1
1 parent 8a300ea commit 316318c

File tree

8 files changed

+19
-9
lines changed

8 files changed

+19
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,8 @@ If you like Saber, please consider supporting it by:
328328
[google_play]: https://play.google.com/store/apps/details?id=com.adilhanney.saber
329329
[snap]: https://snapcraft.io/saber
330330
[app_store]: https://apps.apple.com/us/app/saber/id1671523739
331-
[download_windows]: https://github.com/saber-notes/saber/releases/download/v0.17.0/SaberInstaller_v0.17.0.exe
332-
[download_appimage]: https://github.com/saber-notes/saber/releases/download/v0.17.0/Saber-0.17.0-x86_64.AppImage
331+
[download_windows]: https://github.com/saber-notes/saber/releases/download/v0.17.1/SaberInstaller_v0.17.1.exe
332+
[download_appimage]: https://github.com/saber-notes/saber/releases/download/v0.17.1/Saber-0.17.1-x86_64.AppImage
333333

334334
[nextcloud]: https://nc.saber.adil.hanney.org/
335335

flatpak/com.adilhanney.saber.metainfo.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,14 @@
265265
</screenshots>
266266

267267
<releases>
268+
<release version="0.17.1" type="development" date="2023-10-28">
269+
<description>
270+
<ul>
271+
<li>Fixed a crash when zooming in to PDFs</li>
272+
<li>Improved performance of the shape tool</li>
273+
</ul>
274+
</description>
275+
</release>
268276
<release version="0.17.0" type="development" date="2023-10-21">
269277
<description>
270278
<ul>

installers/desktop_inno_script.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Saber"
5-
#define MyAppVersion "0.17.0"
5+
#define MyAppVersion "0.17.1"
66
#define MyAppPublisher "Adil Hanney"
77
#define MyAppURL "https://github.com/saber-notes/saber"
88
#define MyAppExeName "saber.exe"

lib/data/version.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// Run `./scripts/apply_version.sh --help` for more information.
33

44
/// The current app version as an ordinal number.
5-
const int buildNumber = 17000;
5+
const int buildNumber = 17010;
66

77
/// The current app version as a string.
8-
const String buildName = '0.17.0';
8+
const String buildName = '0.17.1';
99

1010
/// The year in which the current version was released.
1111
const int buildYear = 2023;

metadata/en-US/changelogs/17010.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
• Fixed a crash when zooming in to PDFs
2+
• Improved performance of the shape tool

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1515
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1616
# Read more about iOS versioning at
1717
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18-
version: 0.17.0+17000
18+
version: 0.17.1+17010
1919

2020
environment:
2121
sdk: ">=3.0.0 <4.0.0"

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ parts:
3636
saber:
3737
after: [rustup]
3838
source: https://github.com/saber-notes/saber.git
39-
source-tag: 'v0.17.0'
39+
source-tag: 'v0.17.1'
4040
plugin: flutter
4141
#build-attributes: [enable-patchelf]
4242
build-packages:

windows/runner/Runner.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ IDI_APP_ICON ICON "resources\\app_icon.ico"
6363
#ifdef FLUTTER_BUILD_NUMBER
6464
#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER
6565
#else
66-
#define VERSION_AS_NUMBER 0,17,0,0
66+
#define VERSION_AS_NUMBER 0,17,1,0
6767
#endif
6868

6969
#ifdef FLUTTER_BUILD_NAME
7070
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME
7171
#else
72-
#define VERSION_AS_STRING "0.17.0.0"
72+
#define VERSION_AS_STRING "0.17.1.0"
7373
#endif
7474

7575
VS_VERSION_INFO VERSIONINFO

0 commit comments

Comments
 (0)