Skip to content

Commit 5b141ea

Browse files
committed
Principia 2024.06.28
1 parent dd5abcd commit 5b141ea

File tree

6 files changed

+19
-13
lines changed

6 files changed

+19
-13
lines changed

build-android/principia/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
applicationId "com.bithack.principia"
1212
minSdk 21
1313
targetSdk 33
14-
versionCode 35
15-
versionName "2024.02.29"
14+
versionCode 36
15+
versionName "2024.06.28"
1616

1717
externalNativeBuild {
1818
ndkBuild {
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- Updated to the latest SDL2 on Android (previously it was on an old beta version from 2012)
2+
- Sounds have been improved, some sounds that were missing on Android has been added
3+
- The default community domain is now configurable
4+
- New Lua functions have been added
5+
6+
For a full list of changes including bugfixes and technical changes see the Changelog.

packaging/principia.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#include <windows.h>
22

33
#define VER_MAJOR 2024
4-
#define VER_MINOR 02
5-
#define VER_PATCH 29
4+
#define VER_MINOR 06
5+
#define VER_PATCH 28
66

7-
#define VER_STRING "2024.02.29"
8-
#define PRODUCT_VER_STRING "2024.02.29"
7+
#define VER_STRING "2024.06.28"
8+
#define PRODUCT_VER_STRING "2024.06.28"
99

1010
1 ICON "icon.ico"
1111
1 24 "principia.manifest"

packaging/principia_install.nsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ SetCompressor lzma
44

55
!define MUI_ICON "..\packaging\icon.ico"
66
!define VER_MAJOR 2024
7-
!define VER_MINOR 02
8-
!define VER_BUILD 29
7+
!define VER_MINOR 06
8+
!define VER_BUILD 28
99

10-
!define VERSION "2024.02.29"
10+
!define VERSION "2024.06.28"
1111

1212
Name "Principia"
1313
OutFile "principia-setup.exe"

packaging/version_info.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# This file is used by set_version.lua to keep track of version info. DO NOT EDIT IT MANUALLY, USE THE SCRIPT!
2-
35
3-
2024.02.29
2+
36
3+
2024.06.28

src/src/version.hh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
#define VER_EXTRA
77
#endif
88

9-
#define PRINCIPIA_VERSION_CODE 35
10-
#define PRINCIPIA_VERSION_STRING "2024.02.29" VER_EXTRA
9+
#define PRINCIPIA_VERSION_CODE 36
10+
#define PRINCIPIA_VERSION_STRING "2024.06.28" VER_EXTRA

0 commit comments

Comments
 (0)