Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adil192 committed Mar 20, 2024
1 parent 95581ce commit a1b5879
Show file tree
Hide file tree
Showing 12 changed files with 38 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ Ricochlime is a game where you attack the advancing monsters with your ricocheti
[app_store]: https://apps.apple.com/app/ricochlime/id6459539993
[web_app]: https://ricochlime.adil.hanney.org
[flathub]: https://flathub.org/apps/com.adilhanney.ricochlime
[download_windows]: https://github.com/adil192/ricochlime/releases/download/v1.1.3/RicochlimeInstaller_v1.1.3.exe
[download_appimage]: https://github.com/adil192/ricochlime/releases/download/v1.1.3/Ricochlime-1.1.3-x86_64.AppImage
[download_windows]: https://github.com/adil192/ricochlime/releases/download/v1.2.0/RicochlimeInstaller_v1.2.0.exe
[download_appimage]: https://github.com/adil192/ricochlime/releases/download/v1.2.0/Ricochlime-1.2.0-x86_64.AppImage
10 changes: 10 additions & 0 deletions flatpak/com.adilhanney.ricochlime.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@
</screenshots>

<releases>
<release version="1.2.0" type="development" date="2024-03-20">
<description>
<ul>
<li>Improved the UI throughout the app</li>
<li>Added page transitions</li>
<li>Fixed the monster having unsatisfying collisions on its right side</li>
<li>Small bug fixes and performance improvements</li>
</ul>
</description>
</release>
<release version="1.1.3" type="development" date="2024-01-22">
<description>
<p>Added a setting to show the colliders of the monsters, and cleaned up the collision polygon.</p>
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 "Ricochlime"
#define MyAppVersion "1.1.3"
#define MyAppVersion "1.2.0"
#define MyAppPublisher "Adil Hanney"
#define MyAppURL "https://github.com/adil192/ricochlime"
#define MyAppExeName "ricochlime.exe"
Expand Down
4 changes: 2 additions & 2 deletions lib/utils/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 = 101030;
const int buildNumber = 102000;

/// The current app version as a string.
const String buildName = '1.1.3';
const String buildName = '1.2.0';

/// The year in which the current version was released.
const int buildYear = 2024;
5 changes: 5 additions & 0 deletions metadata/en-US/changelogs/102000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
• Improved the UI throughout the app
• Added page transitions
• Ads aren't displayed when you have battery saver enabled
• Fixed the monster having unsatisfying collisions on its right side
• Small bug fixes and performance improvements
1 change: 1 addition & 0 deletions metadata/en-US/changelogs/1020003.txt
5 changes: 5 additions & 0 deletions metadata/es/changelogs/102000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
• Se mejoró la interfaz de usuario en toda la aplicación.
• Transiciones de página añadidas
• Los anuncios no se muestran cuando tienes activado el ahorro de batería
• Se corrigió que el monstruo tuviera colisiones insatisfactorias en su lado derecho.
• Pequeñas correcciones de errores y mejoras de rendimiento
1 change: 1 addition & 0 deletions metadata/es/changelogs/1020003.txt
5 changes: 5 additions & 0 deletions metadata/kk/changelogs/102000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
• Қолданбада пайдаланушы интерфейсі жақсартылды
• Қосылған бет ауысулары
• Батареяны үнемдеу құралы қосылған кезде жарнамалар көрсетілмейді
• Құбыжықтың оң жағында қанағаттанарлықсыз соқтығысуы түзетілді
• Шағын қателерді түзету және өнімділікті жақсарту
1 change: 1 addition & 0 deletions metadata/kk/changelogs/1020003.txt
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.1.3+101030
version: 1.2.0+102000

environment:
sdk: '>=3.0.6 <4.0.0'
Expand Down
8 changes: 4 additions & 4 deletions windows/runner/Runner.rc
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ IDI_APP_ICON ICON "resources\\app_icon.ico"
//

#if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD)
#define VERSION_AS_NUMBER 1,1,3,0
#define VERSION_AS_NUMBER 1,2,0,0
#else
#define VERSION_AS_NUMBER 1,1,3,0
#define VERSION_AS_NUMBER 1,2,0,0
#endif

#if defined(FLUTTER_VERSION)
#define VERSION_AS_STRING "1.1.3.0"
#define VERSION_AS_STRING "1.2.0.0"
#else
#define VERSION_AS_STRING "1.1.3.0"
#define VERSION_AS_STRING "1.2.0.0"
#endif

VS_VERSION_INFO VERSIONINFO
Expand Down

0 comments on commit a1b5879

Please sign in to comment.