Skip to content

Commit edc2368

Browse files
committed
Add 8 12x12
1 parent 9519a08 commit edc2368

6 files changed

Lines changed: 104 additions & 100 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.2.1
2+
3+
- Add 8 12x12
4+
15
# 0.2.0
26

37
- Add 20 8x8

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nonogram_advance"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
publish = false
55
authors = ["Emma Britton <emmabritton@pm.me>"]
66
readme = "README.md"

assets/12x12.nonos

Lines changed: 96 additions & 96 deletions
Original file line numberDiff line numberDiff line change
@@ -1,106 +1,106 @@
1-
______________
2-
______________
3-
______________
4-
______________
5-
______________
6-
______________
7-
______________
8-
______________
9-
______________
10-
______________
11-
______________
12-
______________
1+
_#____#___#_
2+
________#_##
3+
___#_#______
4+
__#___##____
5+
__#___#_#___
6+
###__#_##___
7+
_###______##
8+
_###__######
9+
############
10+
############
11+
___#########
12+
___#########
1313

14-
______________
15-
______________
16-
______________
17-
______________
18-
______________
19-
______________
20-
______________
21-
______________
22-
______________
23-
______________
24-
______________
25-
______________
14+
_____####___
15+
____######__
16+
____######__
17+
____#######_
18+
____####_##_
19+
_____###_##_
20+
___#########
21+
___#########
22+
___#########
23+
__##########
24+
_###########
25+
_###########
2626

27-
______________
28-
______________
29-
______________
30-
______________
31-
______________
32-
______________
33-
______________
34-
______________
35-
______________
36-
______________
37-
______________
38-
______________
27+
_______#____
28+
_______#____
29+
############
30+
____#_______
31+
____#_______
32+
____########
33+
____#___#___
34+
#####___#___
35+
____#___#___
36+
____########
37+
____#_______
38+
____#_______
3939

40-
______________
41-
______________
42-
______________
43-
______________
44-
______________
45-
______________
46-
______________
47-
______________
48-
______________
49-
______________
50-
______________
51-
______________
40+
____________
41+
____________
42+
#####_______
43+
#####_____##
44+
###########_
45+
_########___
46+
__####______
47+
____________
48+
____________
49+
_##_##_#_##_
50+
____________
51+
____________
5252

53-
______________
54-
______________
55-
______________
56-
______________
57-
______________
58-
______________
59-
______________
60-
______________
61-
______________
62-
______________
63-
______________
64-
______________
53+
___#________
54+
___#________
55+
__##________
56+
_######_____
57+
_#######____
58+
#########___
59+
__#####_____
60+
___#________
61+
___##___#___
62+
___#_#____#_
63+
____#___#___
64+
___________#
6565

66-
______________
67-
______________
68-
______________
69-
______________
70-
______________
71-
______________
72-
______________
73-
______________
74-
______________
75-
______________
76-
______________
77-
______________
66+
_____#______
67+
____#_#_____
68+
___#___#_#__
69+
____________
70+
_#_#___###__
71+
____________
72+
_###__#___#_
73+
_____##___##
74+
_##__##___##
75+
_#_#_##___##
76+
#_#__##___##
77+
_____##___##
7878

79-
______________
80-
______________
81-
______________
82-
______________
83-
______________
84-
______________
85-
______________
86-
______________
87-
______________
88-
______________
89-
______________
90-
______________
79+
____________
80+
____________
81+
____________
82+
_____###____
83+
____#####___
84+
______#_____
85+
########____
86+
######______
87+
####________
88+
##__________
89+
#___________
90+
____________
9191

92-
______________
93-
______________
94-
______________
95-
______________
96-
______________
97-
______________
98-
______________
99-
______________
100-
______________
101-
______________
102-
______________
103-
______________
92+
____________
93+
_____####___
94+
_____####___
95+
_____####___
96+
______##____
97+
____________
98+
______#_____
99+
____________
100+
______#_____
101+
____________
102+
___#_____#__
103+
___#_____#__
104104

105105
______________
106106
______________
839 Bytes
Binary file not shown.

src/scenes/scene_puzzle_menu.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ use agb::display::object::Object;
1313
use agb::display::tiled::{RegularBackground, VRAM_MANAGER};
1414
use agb::fixnum::vec2;
1515
use agb::input::{Button, ButtonController};
16+
use agb::println;
1617
use agb::sound::mixer::{ChannelId, Mixer};
1718
use alloc::boxed::Box;
1819
use alloc::vec;
1920
use alloc::vec::Vec;
20-
use agb::println;
2121

2222
pub struct PuzzleMenuScene {
2323
cursor: (usize, usize),
@@ -51,7 +51,7 @@ impl PuzzleMenuScene {
5151
(0, 0)
5252
};
5353
let pos = size.buttons()[cursor.1][cursor.0];
54-
let button_highlight = Highlight::new(pos.0,pos.1);
54+
let button_highlight = Highlight::new(pos.0, pos.1);
5555

5656
let mut empty_sprite = vec![];
5757
match size {

src/settings_data.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ impl SettingsData {
107107
music_enabled: true,
108108
sfx_enabled: true,
109109
completed_games: [0; TOTAL_GAME_COUNT],
110-
help_level: HelpLevel::Solvable,
110+
help_level: HelpLevel::Full,
111111
}
112112
} else {
113113
let mut grid_enabled = HashMap::new();

0 commit comments

Comments
 (0)