Skip to content

Commit

Permalink
v0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
adil192 committed Dec 14, 2022
1 parent 14d81c6 commit 67d20cf
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 6 deletions.
12 changes: 12 additions & 0 deletions flatpak/com.adilhanney.saber.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,18 @@
</screenshots>

<releases>
<release version="0.4.7" type="development" date="2022-12-14">
<description>
<ol>
<li>Security fix for how your credentials are stored on your device.</li>
<li>The home screen will now show thumbnails of images to reduce memory usage.</li>
<li>Renaming a file to an existing file's name won't overwrite the existing file.</li>
<li>The iOS/macOS icon is now properly cropped.</li>
<li>New users will get a hint to drag the pen size indicator left and right.</li>
<li>Minor bug fixes</li>
</ol>
</description>
</release>
<release version="0.4.6" type="development" date="2022-12-11">
<description>
<ol>
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.4.6"
#define MyAppVersion "0.4.7"
#define MyAppPublisher "Adil Hanney"
#define MyAppURL "https://github.com/adil192/saber"
#define MyAppExeName "saber.exe"
Expand Down
2 changes: 1 addition & 1 deletion lib/data/version.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// The current app version as an ordinal number.
const int buildNumber = 406;
const int buildNumber = 407;
6 changes: 6 additions & 0 deletions metadata/en-US/changelogs/407.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
• Security fix for how your credentials are stored on your device.
• The home screen will now show thumbnails of images to reduce memory usage.
• Renaming a file to an existing file's name won't overwrite the existing file.
• The iOS/macOS icon is now properly cropped.
• New users will get a hint to drag the pen size indicator left and right.
• Minor bug fixes
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.4.6+406
version: 0.4.7+407

environment:
sdk: ">=2.17.6 <3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: saber
version: 0.4.6
version: 0.4.7
summary: Handwritten notes
description: A cross-platform libre handwritten notes app, available for Android, iOS, Linux, Windows, and the web!

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,4,6,0
#define VERSION_AS_NUMBER 0,4,7,0
#endif

#ifdef FLUTTER_BUILD_NAME
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME
#else
#define VERSION_AS_STRING "0.4.6.0"
#define VERSION_AS_STRING "0.4.7.0"
#endif

VS_VERSION_INFO VERSIONINFO
Expand Down

0 comments on commit 67d20cf

Please sign in to comment.