Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-20 | Silence -Wimplicit-fallthrough | Rangi | |
2018-06-07 | Fix md5.c for Windows | mid-kid | |
Solves #520 | |||
2018-06-05 | sort_symfile: don't need to use sort -o with a temp file | yenatch | |
2018-06-05 | sort_symfile: don't overwrite the symfile with an intermediate file | yenatch | |
2018-06-03 | Don’t use GNU extensions when calling sed | Ben10do | |
Apparently, GNU sed has a few extensions that aren’t supported by the version of BSD sed that currently comes with Macs. This would cause sort_symfile.sh to fail on macOS, causing the build to appear to fail at the last minute. Admittedly, I’m not very familiar with sed, but this seems to do the trick on both macOS and Ubuntu. - The input file must be last in the arguments list. - The -i option, allowing the same file for input and output, doesn’t appear to be supported. Instead, I’m writing the output to a temporary file, and replacing the original file with that temporary file. - Apparently ‘\w’ isn’t supported, so I’m simply using ‘.’ instead, as it appears to match “0_ROM0@” etc. just as well. | |||
2018-04-04 | Merge pull request #501 from mid-kid/reorg | yenatch | |
Organize the engine/ directory | |||
2018-04-01 | Fix file permissions | mid-kid | |
I have no idea why this was a thing (do people store this repo on FAT32 flash drives or something?), but quite a bit of files had a permission of 755. This isn't really a problem, but it's inconsistent and weird. | |||
2018-03-10 | Fix scan_includes matching the word "include" in strings. | yenatch | |
2018-01-14 | Shebang | Remy Oukaour | |
2018-01-01 | sort the symfile by symbol type | yenatch | |
2017-12-28 | rebuild gfx and md5 when common.h changes | yenatch | |
2017-12-28 | fix unused fread return value warnings | yenatch | |
2017-12-15 | Move old baserom.gbc 'compare' scripts to tools/ | Remy Oukaour | |
2017-12-13 | Don't bother supporting numbered lists | Remy Oukaour | |
2017-12-13 | Document more bugs and glitches | Remy Oukaour | |
Add a toc.py script to auto-generate tables of contents in Markdown files | |||
2017-09-24 | Build tools with -O3. | yenatch | |
This improves build time by about 20%. | |||
2017-09-24 | fix warnings in lzcomp and md5 | yenatch | |
2017-09-24 | Add warnings for tools | yenatch | |
2017-09-24 | tools/gfx: Replace --width with --png | yenatch | |
2017-08-20 | Remove comma from png_dimensions usage | yenatch | |
2017-08-20 | Fix unused variable warnings | yenatch | |
2017-08-20 | Refactor scan_includes | yenatch | |
2017-06-29 | Check some errors (not enough). | IIMarckus | |
malloc can always fail. Check to avoid null dereference. malloc(0) is well defined but leads to an eventual crash on some systems. Check it too. | |||
2017-06-29 | Fix uninitialized value. | IIMarckus | |
2017-06-29 | tools: Default to gcc. | yenatch | |
This gives Cygwin users an easier time at the expense of defaulting to gcc. | |||
2017-06-25 | pokemon_animation's variable is not initialized (#374) | SnDream | |
2017-06-24 | Add tools/gfx and tools/md5 to gitignore | yenatch | |
2017-06-24 | Merge branch 'master' into tools-makefile-integration | yenatch | |
2017-06-24 | Fix insecure fprintf | yenatch | |
2017-06-24 | Fix implicit stdint | 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 | Fix implicit getopt | yenatch | |
2017-06-24 | Fix tools/gfx | yenatch | |
2017-06-24 | pngs in gfx/fx | yenatch | |
- gave up on wind.png - add --remove-yflip | |||
2017-06-23 | pngs in gfx/ | yenatch | |
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-18 | Remove debug statement from tools/gfx | yenatch | |
2017-06-18 | Add `gfx` tool for graphics postprocessing | yenatch | |
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 | Add .gitignore for compiled tools | Ben10do | |
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 | |||
2017-05-29 | Use a separate makefile for tools | yenatch | |
- Fix crystal11 - Fix a bug where the dependency checks would run regardless of target Fixes 0bd74cdd7341a4cff5da73e1c32ac0d237ec8e08 | |||
2017-05-28 | pokemon_animation_graphics: remove declarations from for loops | yenatch | |
2017-05-28 | pokemon_animation_graphics: stdint.h | yenatch | |
2017-05-28 | Fix the pokemon animation tools. | yenatch | |
Fixed a lot of serious bugs. These tools were not functional. Also added a --girafarig flag for a special case. | |||
2017-05-28 | scan_includes: add --strict so it doesn't have to be default | yenatch | |
2017-05-28 | Fix pokemon_animation_graphics | yenatch | |
2017-04-28 | Refactor scan_includes. | yenatch | |
2016-08-24 | Add C build tools. | yenatch | |