forked from Mdashdotdashn/LittleGPTracker
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* First stable release! 1.3o-1: Fixed errors when random naming projects (shoutouts to 256k!) Start sample navigation behavior adjusted New: When in Phrase or Table view, FX commands have a help legend at the top of the screen (#68) Official builds for: Miyoo mini Win32 CHIP Raspberry Pi PSP Deb32 Bugs: SCREENMULT no longer applies for PSP (47) Disable default mapping for MIYOO to not conflict with mapping.xml (53) Shoutouts to fpiesik and Sacaredo for help debugging Includes: * Random project name generator! (#54) When entering New in load screen or Save As, select Regen to generate a random name Add manual entry Co-authored-by: djdiskmachine <[email protected]> * Stop playing back samples on exit of sample browser (#23) Hold "A" and navigating up or down to quicker preview when browsing samples Hold "A" and press sideways for folder navigation * Adds filter attenuation (#9) * Piggy Tracker config & mapping guides (#14) Co-authored-by: INFU <[email protected]> * Change default colors dark theme pink hue default (#15) Co-authored-by: djdiskmachine <[email protected]> * Improve sample browser (#52) (#55) Preview with start Browse preview with start + up / down Load sample with start + right Navigate up in folder structure with start + left Bump build number Hold A and press up to ".." to navigate one level up B navigation no longer wraps around but stays at end points Co-authored-by: djdiskmachine <[email protected]> * Unify cursor color (#24) Cursor now has the same color everywhere Co-authored-by: djdiskmachine <[email protected]> * Add save as (#12) Save As option in Project page Mdashdotdashn#1 Shoutouts yoyz! Co-authored-by: yoyz <[email protected]> * Miyoo mini release (#43) Co-authored-by: Nine <[email protected]> * Add ability to change font (#50) Co-authored-by: subnixr <[email protected]> * Update license License changed from MIT to CC BY-NC-SA 4.0
- Loading branch information
1 parent
ec13c06
commit 32eabdd
Showing
105 changed files
with
2,489 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
bin/** | ||
build/** | ||
projects/buildPSP/** | ||
tracks/** | ||
projects/build** | ||
tracks/** | ||
*.dat | ||
*.wav | ||
*exe* | ||
*elf* | ||
*dge* | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
-include $(PWD)/rules_base | ||
STRIP = $(CROSS_COMPILE)strip | ||
|
||
%.elf: $(OFILES) | ||
$(CXX) $(LDFLAGS) -o $@ $(OFILES) $(LIBS) | ||
@$(STRIP) $@ | ||
|
||
DEVKIT=/opt/arm-buildroot-linux-musleabi_sdk-buildroot | ||
CROSS_COMPILE=$(DEVKIT)/bin/arm-buildroot-linux-musleabi- | ||
|
||
CC = $(CROSS_COMPILE)gcc | ||
CXX = $(CROSS_COMPILE)g++ | ||
SYSROOT := $(shell $(CROSS_COMPILE)gcc --print-sysroot) | ||
SDL_CFLAGS := $(shell $(SYSROOT)/usr/bin/sdl-config --cflags) | ||
SDL_LIBS := $(shell $(SYSROOT)/usr/bin/sdl-config --libs) | ||
|
||
DEFINES = -DHAVE_STDINT_H -D_NDEBUG -D_NO_JACK_ -I$(PWD)/../sources -D__LINUX_ALSA__ -DCPP_MEMORY $(SDL_CFLAGS) $(SDL_LIBS) -DBUFFERED | ||
INCLUDES = -Iinclude $(SDL_CFLAGS) | ||
OPT_FLAGS = -O3 -Ofast | ||
|
||
OUTPUT = ../lgpt-bittboy | ||
|
||
TOOLPATH=$(DEVKIT)/usr/bin | ||
PREFIX := arm-linux- | ||
SDL_BASE = $(DEVKIT)/arm-buildroot-linux-musleabi/sysroot/usr/bin/ | ||
|
||
CFLAGS := $(DEFINES) $(INCLUDES) $(OPT_FLAGS) -Wall -DRS97 | ||
|
||
CXXFLAGS:= $(CFLAGS) -std=gnu++03 | ||
|
||
EXTENSION:= elf | ||
|
||
LIBS := -lSDL -lSDL_mixer -lasound -lpthread | ||
LIBDIRS := $(DEKVIT)/usr/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
-include $(PWD)/rules_base | ||
|
||
STRIP = arm-gph-linux-gnueabi-strip | ||
|
||
%.gpe: $(OFILES) | ||
$(CXX) $(LDFLAGS) -o $@ $(OFILES) $(LIBS) | ||
@$(STRIP) $@ | ||
|
||
DEVKITARM=/home/nostromo/caanoodev/gcc-4.2.4-glibc-2.7-eabi/ | ||
|
||
PREFIX := arm-gph-linux-gnueabi- | ||
|
||
include $(PWD)/caanoo_rules | ||
|
||
CFLAGS := -O3 -DNDEBUG -Wall -DCPP_MEMORY -DPLATFORM_$(PLATFORM) -I$(PWD)/../sources -D__LINUX_OSS__ | ||
#CFLAGS := -g -D_DEBUG -Wall -DCPP_MEMORY -DPLATFORM_$(PLATFORM) -I$(PWD)/../sources -D__LINUX_OSS__ | ||
|
||
CXXFLAGS:= $(CFLAGS) | ||
|
||
EXTENSION:= gpe | ||
|
||
LIBS := -L/c/GPH_SDK/tools/cross-eabi/arm-gph-linux-gnueabi/sys-root/ -L/c/GPH_SDK/tools/cross-eabi/arm-gph-linux-gnueabi/sys-root/lib -L/c/GPH_SDK/tools/cross-eabi/arm-gph-linux-gnueabi/sys-root/usr/lib -lSDL | ||
#-lpthread | ||
|
||
|
||
LIBDIRS := $(DEKVITARM)/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
-include $(PWD)/rules_base | ||
LDFLAGS := -m32 | ||
|
||
include $(PWD)/deb_rules | ||
|
||
CFLAGS := -O3 -DCPP_MEMORY -Wall -I/usr/local/include -I$(PWD)/../sources -D__LINUX_ALSA__ -D__LINUX_ALSASEQ__ -D_DEBUG | ||
#CFLAGS := -g -DCPP_MEMORY -Wall -I/usr/local/include -I$(PWD)/../sources -D__LINUX_ALSA__ -D__LINUX_ALSASEQ__ | ||
|
||
|
||
CXXFLAGS:= $(CFLAGS) | ||
|
||
EXTENSION:= deb-exe | ||
%.deb-exe: $(OFILES) | ||
$(CXX) $(LDFLAGS) $@ $(OFILES) $(LIBS) | ||
|
||
CFLAGS := -m32 -O3 -DCPP_MEMORY -Wall -I/usr/local/include -I$(PWD)/../sources -D__LINUX_ALSA__ -D__LINUX_ALSASEQ__ -D_DEBUG | ||
LIBS := -O3 -L/local/lib -Wl,-rpath,/usr/local/lib -lasound -lSDL -ljack -lpthread | ||
|
||
#For debugging | ||
#LIBS := -g -L/local/lib -Wl,-rpath,/usr/local/lib -lasound -lSDL -ljack -lpthread | ||
#CFLAGS := -g -m32 -DCPP_MEMORY -Wall -I/usr/local/include -I$(PWD)/../sources -D__LINUX_ALSA__ -D__LINUX_ALSASEQ__ | ||
|
||
CXXFLAGS:= $(CFLAGS) | ||
EXTENSION:= deb-exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.