Skip to content

Commit

Permalink
v0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adil192 committed Oct 21, 2023
1 parent 13a288c commit 0fc8e41
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/adil192/saber/releases/download/v0.16.1/SaberInstaller_v0.16.1.exe
[download_appimage]: https://github.com/adil192/saber/releases/download/v0.16.1/Saber-0.16.1-x86_64.AppImage
[download_windows]: https://github.com/adil192/saber/releases/download/v0.17.0/SaberInstaller_v0.17.0.exe
[download_appimage]: https://github.com/adil192/saber/releases/download/v0.17.0/Saber-0.17.0-x86_64.AppImage

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

Expand Down
11 changes: 11 additions & 0 deletions flatpak/com.adilhanney.saber.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,17 @@
</screenshots>

<releases>
<release version="0.17.0" type="development" date="2023-10-21">
<description>
<ul>
<li>Added a shape recognition pen</li>
<li>Straight line detection now only works with the shape recognition pen</li>
<li>New PDF imports will retain their original quality</li>
<li>Select multiple notes at once to move or delete them</li>
<li>You can now delete and duplicate a selection of strokes/images</li>
</ul>
</description>
</release>
<release version="0.16.1" type="development" date="2023-09-29">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion installers/desktop_inno_script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Saber"
#define MyAppVersion "0.16.1"
#define MyAppVersion "0.17.0"
#define MyAppPublisher "Adil Hanney"
#define MyAppURL "https://github.com/adil192/saber"
#define MyAppExeName "saber.exe"
Expand Down
4 changes: 2 additions & 2 deletions lib/data/version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// Run `./scripts/apply_version.sh --help` for more information.

/// The current app version as an ordinal number.
const int buildNumber = 16010;
const int buildNumber = 17000;

/// The current app version as a string.
const String buildName = '0.16.1';
const String buildName = '0.17.0';

/// The year in which the current version was released.
const int buildYear = 2023;
5 changes: 5 additions & 0 deletions metadata/en-US/changelogs/17000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
• Added a shape recognition pen
• Straight line detection now only works with the shape recognition pen
• New PDF imports will retain their original quality
• Select multiple notes at once to move or delete them
• You can now delete and duplicate a selection of strokes/images
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.16.1+16010
version: 0.17.0+17000

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ parts:
saber:
after: [rustup]
source: https://github.com/adil192/saber.git
source-tag: 'v0.16.1'
source-tag: 'v0.17.0'
plugin: flutter
#build-attributes: [enable-patchelf]
build-packages:
Expand Down
4 changes: 2 additions & 2 deletions windows/runner/Runner.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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,16,1,0
#define VERSION_AS_NUMBER 0,17,0,0
#endif

#ifdef FLUTTER_BUILD_NAME
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME
#else
#define VERSION_AS_STRING "0.16.1.0"
#define VERSION_AS_STRING "0.17.0.0"
#endif

VS_VERSION_INFO VERSIONINFO
Expand Down

0 comments on commit 0fc8e41

Please sign in to comment.