Skip to content

Commit 2dcc12c

Browse files
committed
version 3.0.1
1 parent 0cbd33d commit 2dcc12c

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include(InstallRequiredSystemLibraries)
1515
### The current version number
1616
set(LIRI_VERSION_MAJOR 3)
1717
set(LIRI_VERSION_MINOR 0)
18-
set(LIRI_VERSION_PATCH 0)
18+
set(LIRI_VERSION_PATCH 1)
1919
set(LIRI_VERSION ${LIRI_VERSION_MAJOR}.${LIRI_VERSION_MINOR})
2020

2121
set(LIRI_EXECUTABLE_NAME Li-ri)

NEWS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
xx-xx-xxxx : Version 3.0.1
1+
19-12-2023 : Version 3.0.1
22
CMake compilation
33
Github workflow to provide binaries for Linux, Windows and macOS
4+
Add missing icon for F-Droid
45
11-11-2023 : Version 3.0.0
56
Update to SDL2
67
Compilation ok on Android

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="org.liri.app"
4-
android:versionCode="30000"
5-
android:versionName="3.0.0"
4+
android:versionCode="30001"
5+
android:versionName="3.0.1"
66
android:installLocation="auto">
77

88
<application
4.1 KB
Loading

src/main.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
SDL_Window *sdlWindow; // Pointe sur l'écran video
4444
SDL_Renderer *sdlRenderer; // Pointe sur l'écran video
4545

46-
char Titre[]="Li-ri V3.0.0";
46+
char Titre[]="Li-ri V3.0.1";
4747

4848
Sprite *Sprites=NULL; // Pointe sur les sprites
4949
int NSprites=0; // Nombre de sprites en mémoire

0 commit comments

Comments
 (0)