Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e55e51e
Adding JsonCpp Source
DanTheMan827 Jun 28, 2016
f8bad5b
Fix the app by using the JSON feed from the ticket website
DanTheMan827 Jun 28, 2016
bfd3e4f
Load region from system secure info
DanTheMan827 Jun 28, 2016
5813662
Update about
DanTheMan827 Jun 28, 2016
8a1991f
Add missing regions and confirmation prompts
DanTheMan827 Jun 29, 2016
ce83f4e
Add progress bar for deleting
DanTheMan827 Jun 29, 2016
00b538c
Don't write any temp .tik files (FASTER!)
DanTheMan827 Jun 29, 2016
db21b47
Add git revision to about
DanTheMan827 Jul 27, 2016
8bae3ad
Fix key mapping to cancel
DanTheMan827 Jul 27, 2016
f0b8e06
Simplify ticket installation check code
DanTheMan827 Jul 27, 2016
a3cd078
Fix incorrect deleted ticket count for out of region cleanup
DanTheMan827 Jul 27, 2016
74583c3
Update for the newest ctrulib
DanTheMan827 Aug 6, 2016
5425dda
Add the option to launch the eShop
DanTheMan827 Aug 6, 2016
398b015
Replace the bt folder with a git submodule
DanTheMan827 Aug 20, 2016
92d878d
[Code Style] Convert spaces to tabs
DanTheMan827 Aug 20, 2016
4a39c72
Move jsoncpp.cpp into the json folder
DanTheMan827 Aug 20, 2016
b17af69
Code formatting / cleanup
DanTheMan827 Aug 20, 2016
6a92f08
Move eShop code to a submodule
DanTheMan827 Aug 20, 2016
9043901
Move about screen to bottom
DanTheMan827 Aug 20, 2016
28f0378
Embed version number in the generated files
DanTheMan827 Aug 20, 2016
d7fe328
Cleaner and louder audio for the home menu
DanTheMan827 Aug 20, 2016
4154154
- Move progress bar to a class
DanTheMan827 Aug 21, 2016
5696972
Update buildtools
DanTheMan827 Jan 7, 2017
b300161
Fix compile error
DanTheMan827 May 10, 2017
6b76401
Change domain for ticket website
DanTheMan827 May 10, 2017
2ac6aa0
Update buildtools
DanTheMan827 May 10, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[submodule "buildtools"]
path = buildtools
url = https://github.com/Steveice10/buildtools.git
[submodule "source/eshop"]
path = source/eshop
url = https://github.com/DanTheMan827/3DS-eShop-Utils.git
[submodule "source/ConsoleProgressPrinter"]
path = source/ConsoleProgressPrinter
url = https://github.com/DanTheMan827/ConsoleProgressPrinter.git
16 changes: 13 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,18 @@ EXTRA_OUTPUT_FILES :=
LIBRARY_DIRS := $(DEVKITPRO)/libctru
LIBRARIES := ctru m

#BUILD_FLAGS := -DVERSION_STRING="\"`git describe --tags --abbrev=0`\""#
RUN_FLAGS :=
BUILD_FLAGS := -DVERSION_STRING="\"`git describe --tags --abbrev=0`\"" -DREVISION_STRING="\"`git rev-parse --short HEAD``git diff-index --quiet HEAD -- || echo ' (dirty)'`\""
RUN_FLAGS :=

VERSION_PARTS := $(subst ., ,$(shell echo "`git describe --tags --abbrev=0`.0.0" | cut -d "v" -f 2))
VERSION_MAJOR := $(word 1, $(VERSION_PARTS))
VERSION_MINOR := $(word 2, $(VERSION_PARTS))
VERSION_MICRO := $(word 3, $(VERSION_PARTS))

$(info Major Version: $(VERSION_MAJOR))
$(info Minor Version: $(VERSION_MINOR))
$(info Micro Version: $(VERSION_MICRO))
$(info )

# 3DS CONFIGURATION #

Expand All @@ -52,4 +62,4 @@ ICON := icon.png

# INTERNAL #

include bt/make_base
include buildtools/make_base
Binary file modified audio.wav
Binary file not shown.
Binary file removed bt/3ds/bannertool-linux
Binary file not shown.
Binary file removed bt/3ds/bannertool-mac
Binary file not shown.
Binary file removed bt/3ds/bannertool.exe
Binary file not shown.
1 change: 0 additions & 1 deletion bt/3ds/citra/README.md

This file was deleted.

Binary file removed bt/3ds/citra/citra-linux
Binary file not shown.
Binary file removed bt/3ds/citra/citra-mac
Binary file not shown.
Binary file removed bt/3ds/citra/citra.exe
Binary file not shown.
339 changes: 0 additions & 339 deletions bt/3ds/citra/license.txt

This file was deleted.

Binary file removed bt/3ds/makerom-linux
Binary file not shown.
Binary file removed bt/3ds/makerom-mac
Binary file not shown.
Binary file removed bt/3ds/makerom.exe
Binary file not shown.
281 changes: 0 additions & 281 deletions bt/3ds/template.rsf

This file was deleted.

5 changes: 0 additions & 5 deletions bt/README.md

This file was deleted.

Loading