Compare commits
3 Commits
c1c4fca1db
...
63cb971aca
Author | SHA1 | Date |
---|---|---|
Max Bradbury | 63cb971aca | |
Max Bradbury | 03ce88e015 | |
Max Bradbury | 8a8b861e5d |
2
TODO.md
2
TODO.md
|
@ -3,6 +3,8 @@
|
||||||
* tests
|
* tests
|
||||||
* if image is exactly 128×128, *don't* crop
|
* if image is exactly 128×128, *don't* crop
|
||||||
* tile reuse
|
* tile reuse
|
||||||
|
* noise reduction (remove lonely pixels)
|
||||||
* implement Atkinson and Bayer dithering options
|
* implement Atkinson and Bayer dithering options
|
||||||
* if "create new bitsy game", add new room as room 0
|
* if "create new bitsy game", add new room as room 0
|
||||||
* actually create room
|
* actually create room
|
||||||
|
* stats for added room (number of tiles)
|
||||||
|
|
|
@ -78,7 +78,7 @@ html(lang="en-gb")
|
||||||
br
|
br
|
||||||
|
|
||||||
button.pagination.prev#back-to-image previous
|
button.pagination.prev#back-to-image previous
|
||||||
button.pagination.next#room-next next
|
button.pagination.next#room-next add room
|
||||||
.page.download
|
.page.download
|
||||||
h2 download
|
h2 download
|
||||||
|
|
||||||
|
|
|
@ -313,7 +313,7 @@ mod test {
|
||||||
let expected = include_str!("test-resources/test.png.base64").trim();
|
let expected = include_str!("test-resources/test.png.base64").trim();
|
||||||
assert_eq!(output, expected);
|
assert_eq!(output, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn get_palettes() {
|
fn get_palettes() {
|
||||||
load_default_game();
|
load_default_game();
|
||||||
|
|
Loading…
Reference in New Issue