Skip to content

Commit

Permalink
Bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
piepie62 committed Jun 21, 2020
1 parent 9ec9571 commit 7085738
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 14 deletions.
2 changes: 0 additions & 2 deletions 3ds/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ SOURCES := $(FORMATSOURCES) \
../core/source/sav \
../core/source/utils \
../core/source/wcx \
../core/swshcrypto \
../external/picoc/source/interpreter \
../external/qrgen

Expand Down Expand Up @@ -105,7 +104,6 @@ INCLUDES := $(FORMATINCLUDES) \
../core/include/utils \
../core/include/wcx \
../core/memecrypto \
../core/swshcrypto \
../external/picoc/include \
../external/qrgen

Expand Down
11 changes: 2 additions & 9 deletions 3ds/source/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,15 +175,8 @@ namespace
return rc;
}

void backupExtData()
{
Archive::copyDir(Archive::data(), u"/", Archive::sd(), u"/3ds/PKSM/extDataBackup");
}

void backupBanks()
{
Archive::copyDir(Archive::sd(), u"/3ds/PKSM/banks", Archive::sd(), u"/3ds/PKSM/banksBkp");
}
void backupExtData() { Archive::copyDir(Archive::data(), u"/", Archive::sd(), u"/3ds/PKSM/extDataBackup"); }
void backupBanks() { Archive::copyDir(Archive::sd(), u"/3ds/PKSM/banks", Archive::sd(), u"/3ds/PKSM/banksBkp"); }

bool update(std::string execPath)
{
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
APP_TITLE := PKSM
APP_DESCRIPTION := Gen IV to Gen VII save manager
APP_DESCRIPTION := Gen III to Gen VIII save manager
APP_AUTHOR := FlagBrew

VERSION_MAJOR := 9
VERSION_MINOR := 0
VERSION_MICRO := 1
VERSION_MINOR := 1
VERSION_MICRO := 0
GIT_REV="$(shell git rev-parse --short HEAD)"

OUTDIR := out
Expand Down

0 comments on commit 7085738

Please sign in to comment.