Skip to content

Commit 200bf5d

Browse files
committed
Update readme, bump version
1 parent 4fa56b8 commit 200bf5d

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ This project is built with cmake and vcpkg and requires wxwidgets library.
3030
Install vcpkg first, then install wxwidgets into vcpkg and run cmake. Make sure to define
3131
`CMAKE_TOOLCHAIN_FILE` pointing to `vcpkg/scripts/buildsystems/vcpkg.cmake`.
3232

33-
Optionally pass `VCPKG_TARGET_TRIPLET="x64-windows-static"` and `CMAKE_UPX_PATH=path/to/upx.exe`
34-
to link statically and compress the executable.
33+
Make sure to pass `VCPKG_TARGET_TRIPLET="x64-windows-static"` to cmake to link the executable
34+
statically. If you use vscode the setting is already enabled in checked in config.
35+
36+
Optionally pass `CMAKE_UPX_PATH=path/to/upx.exe` to compress the executable.
3537

3638
Config form is created using wxFormBuilder, `config_base*` files are auto generated and should
3739
not be edited or formatted.

app.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ APP_ICON ICON "icon/appicon.ico"
1010
#define VER_PRODUCTNAME_STR "MultiScreenSaver\0"
1111
#define VER_ORIGINALFILENAME_STR "MultiScreenSaver.scr\0"
1212

13-
#define VER_FILEVERSION 1,0
14-
#define VER_FILEVERSION_STR "1.0\0"
13+
#define VER_FILEVERSION 1,3
14+
#define VER_FILEVERSION_STR "1.3\0"
1515

16-
#define VER_PRODUCTVERSION 1,0
17-
#define VER_PRODUCTVERSION_STR "1.0\0"
16+
#define VER_PRODUCTVERSION 1,3
17+
#define VER_PRODUCTVERSION_STR "1.3\0"
1818

1919
#ifndef DEBUG
2020
#define VER_DEBUG 0

0 commit comments

Comments
 (0)