Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-06-24 | Merge branch 'master' into tools-makefile-integration | yenatch | |
2017-06-24 | Include front.dimensions file instead of manual pic dimensions | yenatch | |
2017-06-24 | Fix insecure fprintf | yenatch | |
2017-06-24 | Merge pull request #371 from yenatch/graphics | yenatch | |
Use sha1sum instead of md5sum to compare roms | |||
2017-06-24 | Fix implicit stdint | yenatch | |
2017-06-24 | Add a travis badge and remove pokered link | yenatch | |
2017-06-24 | Add a md5 tool to avoid md5sum dependency. | yenatch | |
md5sum is missing in macOS and (presumably) BSD. An alternative would have been to use sha1sum instead, but it's probably a good idea to have as few dependencies as possible, so this doesn't happen again. fixes #364 | |||
2017-06-24 | Use SHA1 to compare roms | yenatch | |
2017-06-24 | Fix a misleading define for SLP | yenatch | |
2017-06-24 | Merge pull request #354 from FredrIQ/comments | yenatch | |
Fix a reversed label mistake and reference a major bug | |||
2017-06-24 | Merge pull request #370 from yenatch/graphics | yenatch | |
png everywhere | |||
2017-06-24 | gcc is needed in cygwin | yenatch | |
- also mention the new dlls in install | |||
2017-06-24 | Fix implicit getopt | yenatch | |
2017-06-24 | Fix tools/gfx | yenatch | |
2017-06-24 | Explicit rules for gfx/shrink{1,2}.2bpp | yenatch | |
2017-06-24 | 1bpp in gitignore | yenatch | |
2017-06-24 | Fix gfx/misc | yenatch | |
2017-06-24 | Fix gfx/frames | yenatch | |
2017-06-24 | pngs in gfx/unknown | yenatch | |
2017-06-24 | pngs in gfx/misc | yenatch | |
2017-06-24 | pngs in gfx/mobile | yenatch | |
2017-06-24 | forgot to remove 2bpp from gfx/tilesets | yenatch | |
2017-06-24 | forgot to remove 2bpp from gfx/intro | yenatch | |
2017-06-24 | pngs in gfx/fx | yenatch | |
- gave up on wind.png - add --remove-yflip | |||
2017-06-23 | pngs in gfx/battle | yenatch | |
2017-06-23 | pngs in gfx/ | yenatch | |
2017-06-22 | pngs in gfx/unown_puzzle | yenatch | |
2017-06-22 | pngs in gfx/trainers | yenatch | |
2017-06-22 | pngs in gfx/trade | yenatch | |
game_boy.png can be rearranged in a nicer way, but it's a job for another time | |||
2017-06-21 | Add --interleave to tools/gfx and refactor. | yenatch | |
For images composed of 8x16 sprites. The width has to be manually passed in. If this were an rgbgfx feature this would not be necessary. Fixes 647f9b4452fb166fedbbb987808bb0dae9623db2 | |||
2017-06-21 | pngs in gfx/title | yenatch | |
2017-06-21 | pngs in gfx/tilesets | yenatch | |
2017-06-21 | pngs in gfx/stats | yenatch | |
2017-06-21 | pngs in gfx/splash | yenatch | |
2017-06-21 | pngs in gfx/special/celebi | yenatch | |
2017-06-21 | pngs in gfx/pokegear | yenatch | |
- flymap_label_border.2bpp was actually 1bpp | |||
2017-06-20 | pngs in gfx/pokedex | yenatch | |
2017-06-20 | Use $(if) in the makefile. Fix gfx/mail. | yenatch | |
Fixes 384788f3700a5c429dfa86c6ec673a648b4b1c42 | |||
2017-06-18 | Remove debug statement from tools/gfx | yenatch | |
2017-06-18 | pngs in gfx/mail | yenatch | |
2017-06-18 | Add `gfx` tool for graphics postprocessing | yenatch | |
2017-06-17 | Merge pull request #366 from Ben10do/fix-deprecation-warnings | yenatch | |
Replace ‘jp [hl]’ with ‘jp hl’ | |||
2017-06-13 | Merge pull request #367 from SkyrisBactera/patch-1 | yenatch | |
rgbds: Missing a dependency | |||
2017-06-13 | Missing a dependency | SkyrisBactera | |
Without libpng-dev, sudo make install causes: In file included from src/gfx/gb.c:20:0: include/gfx/main.h:20:17: fatal error: png.h: No such file or directory #include <png.h> ^ compilation terminated. Makefile:90: recipe for target 'src/gfx/gb.o' failed make: *** [src/gfx/gb.o] Error 1 | |||
2017-06-10 | Fix parallelisation issues in Makefile | Ben10do | |
Introduces a minor hack, in order to ensure that the tools are built before the Makefile attempts to use any of the tools, even when using ‘make -j’. | |||
2017-06-09 | Fix warnings about assignments in ‘if’ statements | Ben10do | |
Assignments in ‘if’ statements cause a warning in Clang, asking you to enclose the assignment in brackets (to show that it was intentional). | |||
2017-06-09 | Remove ‘make tools’ step in installation | Ben10do | |
This step is no longer required, as it will be run automatically when making the ROM. | |||
2017-06-09 | Add .gitignore for compiled tools | Ben10do | |
2017-06-09 | Replace ‘jp [hl]’ with ‘jp hl’ | Ben10do | |
The former is arguably misleading (as you don’t access the memory location in hl to retrieve the jump location), and is consequently deprecated in newer versions of rgbds. This fix silences these deprecation warnings. | |||
2017-06-09 | - Make the tools implicitly when making the ROM | Ben10do | |
- Add a clean target to the tools Makefile - Run said clean target when cleaning the pokecrystal directory |