Skip to content

Commit c0cc813

Browse files
committed
Increment version to 0.7
1 parent b8712f4 commit c0cc813

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ DATA := data
3434
INCLUDES := include amitool/include
3535
#ROMFS := romfs
3636
APP_TITLE := Thenaya
37-
APP_DESCRIPTION := Amiibo Maker (Alpha 0.6)
37+
MAJOR_VERSION := 0
38+
MINOR_VERSION := 7
39+
APP_DESCRIPTION := Amiibo Maker (Alpha 0.7)
3840
APP_AUTHOR := HiddenRambler
3941

4042
#---------------------------------------------------------------------------------
@@ -44,7 +46,7 @@ ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard -mtp=soft
4446

4547
CFLAGS := -g -Wall -O2 -mword-relocations \
4648
-fomit-frame-pointer -ffunction-sections \
47-
$(ARCH)
49+
$(ARCH) -DMAJOR_VERSION=$(MAJOR_VERSION) -DMINOR_VERSION=$(MINOR_VERSION)
4850

4951
CFLAGS += $(INCLUDE) -DARM11 -D_3DS
5052

source/ui.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ void uiUpdateStatus(char *status) {
4040
void uiUpdateBanner() {
4141
consoleSelect(&headerScreen);
4242
printf("\e[1;7m\e[2J\e[H"); //invert colors and clear screen
43-
printf("\e[1;1HThenaya\e[1;33Hv0.6 [%s]", __DATE__);
43+
printf("\e[1;1HThenaya\e[1;33Hv%d.%d [%s]", MAJOR_VERSION, MINOR_VERSION, __DATE__);
4444
char line[51];
4545
memset(line, 0xc4, sizeof(line)-1);
4646
line[sizeof(line)-1] = '\0';

0 commit comments

Comments
 (0)