Skip to content

Commit 2479d6a

Browse files
committed
v0.3.1: installer rebuilt with Forge 1.2.1 (clean uninstall; 'also remove settings' deletes the install folder with typewriter.ini)
1 parent 84f6d34 commit 2479d6a

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

forge.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[app]
99
name = "Typewriter"
10-
version = "0.3.0"
10+
version = "0.3.1"
1111
id = "com.fezcode.typewriter"
1212
icon = "icon.ico"
1313

@@ -30,7 +30,10 @@ window_title = "Typewriter ${app.version} Setup"
3030
default_dir = "${LOCALAPPDATA}/Programs/Typewriter"
3131

3232
[uninstall]
33-
keep = ["typewriter.ini"]
33+
keep = ["typewriter.ini"]
34+
# typewriter.ini lives in the install folder, so that folder is the "settings dir":
35+
# it is only removed when the user ticks "Also remove my settings and data".
36+
settings_dirs = ["${INSTALLDIR}"]
3437

3538
# --- wizard -----------------------------------------------------------------
3639

main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Build: make (or) gcc -O2 main.c -o typewriter $(pkg-config --cflags --libs sdl2 SDL2_ttf) -lm
66
*/
77

8-
#define TYPEWRITER_VERSION "0.3.0"
8+
#define TYPEWRITER_VERSION "0.3.1"
99

1010
#include <SDL.h>
1111
#include <SDL_ttf.h>

0 commit comments

Comments
 (0)