diff --git a/Makefile b/Makefile
index 6434aecf..a4f9beb5 100644
--- a/Makefile
+++ b/Makefile
@@ -39,7 +39,7 @@ ASFLAGS = $(CFLAGS)
all: $(TARGET).vpk
%.vpk: eboot.bin
- vita-mksfoex -d PARENTAL_LEVEL=1 -s APP_VER=00.90 -s TITLE_ID=$(TITLE_ID) "$(TARGET)" param.sfo
+ vita-mksfoex -d PARENTAL_LEVEL=1 -s APP_VER=00.91 -s TITLE_ID=$(TITLE_ID) "$(TARGET)" param.sfo
vita-pack-vpk -s param.sfo -b eboot.bin \
--add pkg/sce_sys/icon0.png=sce_sys/icon0.png \
--add pkg/sce_sys/livearea/contents/bg.png=sce_sys/livearea/contents/bg.png \
diff --git a/README.md b/README.md
index c88a68de..8e6bc853 100644
--- a/README.md
+++ b/README.md
@@ -70,6 +70,13 @@ https://github.com/xy2iii/vitashell-themes
Be sure you pull request your customized design or language file there.
+### Changelog 0.91 ###
+- Added automatic network update. VitaShell will now notify you when there's a new update.
+ You'll then be able to download it within the VitaShell application and it will update both
+ molecularShell and VitaShell to the newest verison.
+- Added text and audio file icon by littlebalup.
+- Updated to latest libftpvita which fixed file size string > 2GB and added APPE command.
+
### Changelog 0.9 ###
- Added possibility to use specific background for file browser, hex editor, text editor, photo viewer.
- Added files and folder icons by littlebalup.
diff --git a/main.h b/main.h
index 77fa9dde..d02a34c6 100644
--- a/main.h
+++ b/main.h
@@ -65,7 +65,7 @@
// VitaShell version major.minor
#define VITASHELL_VERSION_MAJOR 0x0
-#define VITASHELL_VERSION_MINOR 0x90
+#define VITASHELL_VERSION_MINOR 0x91
#define VITASHELL_VERSION ((VITASHELL_VERSION_MAJOR << 0x18) | (VITASHELL_VERSION_MINOR << 0x10))
diff --git a/network_update.c b/network_update.c
index 28e4c00f..2f523d6c 100644
--- a/network_update.c
+++ b/network_update.c
@@ -208,7 +208,7 @@ int network_update_thread(SceSize args, void *argp) {
return sceKernelExitDeleteThread(0);
}
-int installUpdater() {
+void installUpdater() {
// Recursively clean up package_temp directory
removePath(PACKAGE_PARENT, NULL, 0, NULL, NULL);
sceIoMkdir(PACKAGE_PARENT, 0777);
diff --git a/pkg/sce_sys/livearea/contents/template.xml b/pkg/sce_sys/livearea/contents/template.xml
index a1326591..8ddb49f8 100644
--- a/pkg/sce_sys/livearea/contents/template.xml
+++ b/pkg/sce_sys/livearea/contents/template.xml
@@ -28,7 +28,7 @@
- v0.9
+ v0.91