diff --git a/3ds/Makefile b/3ds/Makefile
index 4bcd778..b110947 100644
--- a/3ds/Makefile
+++ b/3ds/Makefile
@@ -36,8 +36,8 @@ APP_DESCRIPTION := Fast and simple save manager
APP_AUTHOR := Bernardo Giordano
VERSION_MAJOR := 3
-VERSION_MINOR := 3
-VERSION_MICRO := 1
+VERSION_MINOR := 4
+VERSION_MICRO := 0
TARGET := $(subst $e ,_,$(notdir $(APP_TITLE)))
OUTDIR := out
diff --git a/3ds/assets/romfs/config.json b/3ds/assets/romfs/config.json
index 22446fb..f1e6f6a 100644
--- a/3ds/assets/romfs/config.json
+++ b/3ds/assets/romfs/config.json
@@ -10,6 +10,6 @@
},
"nand_saves": false,
"version_major": 3,
- "version_minor": 3,
- "version_micro": 1
+ "version_minor": 4,
+ "version_micro": 0
}
\ No newline at end of file
diff --git a/README.md b/README.md
index d9652a7..856fdf6 100644
--- a/README.md
+++ b/README.md
@@ -26,6 +26,7 @@ Checkpoint relies on the following folders to store the files it generates. Note
### Switch
* **`sdmc:/switch/Checkpoint`**: root path
+* **`sdmc:/switch/Checkpoint/config.json`**: custom configuration file
* **`sdmc:/switch/Checkpoint/saves/
`**: root path for all the save backups for a generic game
## Usage
@@ -85,7 +86,7 @@ Additionally, you can receive real-time support by joining PKSM's discord server
Checkpoint for 3DS relies on [latest libctru](https://github.com/smealum/ctrulib), [latest citro3d](https://github.com/fincs/citro3d) and [latest citro2d](https://github.com/devkitPro/citro2d).
-Checkpoint for Switch relies on [latest libnx](https://github.com/switchbrew/libnx).
+Checkpoint for Switch relies on [latest libnx](https://github.com/switchbrew/libnx) and switch-freetype, available from [dkp-pacman](https://github.com/devkitPro/pacman/releases).
## License
@@ -93,7 +94,7 @@ This project is licensed under the GNU GPLv3. Additional Terms 7.b and 7.c of GP
## Credits
-Even though this is the result of independent research and work, Checkpoint for 3DS couldn't be possible without J-D-K's [JKSM](https://gbatemp.net/threads/release-jks-savemanager-homebrew-cia-save-manager.413143/), which is an incredible piece of software that you should all be using. Best regards JK, hope you're fine.
+Even though this is the result of independent research and work, Checkpoint for 3DS couldn't be possible without J-D-K's original [JKSM](https://github.com/J-D-K/JKSM) version, which is an incredible piece of software that you should all be using. Best regards JK, hope you're fine.
TuxSH for [TWLSaveTool](https://github.com/TuxSH/TWLSaveTool), from which SPI code has been taken.
@@ -101,6 +102,8 @@ All the maintainers for [nx-hbmenu](https://github.com/switchbrew/nx-hbmenu), fo
Yellows8 and all the mantainers for [switch-examples](https://github.com/switchbrew/switch-examples).
+[rakujira](https://twitter.com/rakujira) for the awesome Checkpoint icons he provided!
+
Hikari-chin and all the other testers for their help with testing.
If you like my work, **support me on [Patreon](https://www.patreon.com/bernardogiordano)**!
\ No newline at end of file
diff --git a/switch/Makefile b/switch/Makefile
index 929c7fd..6a127fb 100644
--- a/switch/Makefile
+++ b/switch/Makefile
@@ -31,8 +31,8 @@ include $(DEVKITPRO)/libnx/switch_rules
# - /default_icon.jpg
#---------------------------------------------------------------------------------
VERSION_MAJOR := 3
-VERSION_MINOR := 3
-VERSION_MICRO := 1
+VERSION_MINOR := 4
+VERSION_MICRO := 0
APP_TITLE := Checkpoint
APP_AUTHOR := Bernardo Giordano
diff --git a/switch/romfs/config.json b/switch/romfs/config.json
index 8b58653..8025cb7 100644
--- a/switch/romfs/config.json
+++ b/switch/romfs/config.json
@@ -6,6 +6,6 @@
},
"version_major": 3,
- "version_minor": 3,
- "version_micro": 1
+ "version_minor": 4,
+ "version_micro": 0
}
\ No newline at end of file