-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
86 lines (61 loc) · 2.5 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
=== Nonogram Puzzle Block ===
Contributors: todays-mitsui
Tags: nonogram, puzzle, game, block, gutenberg
Requires at least: 6.1
Tested up to: 6.1
Requires PHP: 7.0
License: MIT
License URI: https://opensource.org/licenses/MIT
Create and solve Nonogram puzzles in the WordPress block editor.
== Description ==
The Nonogram Block allows you to create Nonogram puzzles (also known as Hanjie, Paint by Numbers, Picross, Griddlers, and Pic-a-Pix) in the WordPress block editor. This block provides a user-friendly interface for designing puzzles and presenting them to your website visitors for solving.
== Features ==
- Customize the number of rows and columns for your puzzle.
- Choose from predefined aspect ratios (Square, Wide, Tall).
- Easy to use controls in the WordPress editor.
- Responsive and interactive puzzle solving experience.
== Installation ==
1. Download the repository from GitHub:
```sh
git clone https://github.com/todays-mitsui/wp-block-nonogram.git
```
2. Navigate to the plugin directory:
```sh
cd wp-block-nonogram
```
3. Install the dependencies:
```sh
npm install
```
4. Build the plugin:
```sh
npm run build
```
5. Upload the `wp-block-nonogram` folder to the `/wp-content/plugins/` directory of your WordPress installation.
6. Activate the plugin through the 'Plugins' menu in WordPress.
== Development ==
To start the development environment:
1. Follow steps 1-3 from the Installation section.
2. Start the development environment:
```sh
npm start
```
3. This will set up a local development server. Open your browser and go to [http://localhost:8888/wp-admin/](http://localhost:8888/wp-admin/) to access the WordPress admin dashboard. Use the following credentials to log in:
- **Username**: `admin`
- **Password**: `password`
== Usage ==
1. In the WordPress editor, add a new block and search for "Nonogram".
2. Use the block's settings in the sidebar to customize the number of rows, columns, and the aspect ratio.
3. Design your Nonogram puzzle and save your post or page.
== Attributes ==
- **numRows**: Number of rows in the puzzle (default: 15).
- **numColumns**: Number of columns in the puzzle (default: 15).
- **boardData**: The encoded puzzle data.
- **aspectRatio**: The aspect ratio of the puzzle grid. Options are:
- Square (1:1)
- Wide (3:2)
- Tall (2:3)
== License ==
This plugin is licensed under the MIT License. See the LICENSE file for more details.
== Credits ==
Developed by [todays-mitsui](https://github.com/todays-mitsui).