Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'Number Tapa' tab option #95

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## History
* Unreleased
* Added 'Number Tapa' tab mode
* 2022/06/02 ver 2.26.20
* Implicit edges for region division puzzles solved using Shading.
* Improvement to size of Sudoku Mode buttons for Mobile Devices.
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ enhancements are being done.
## Pull Request Process

1. Ensure your changes are working and other functionality are same as before
2. Ensure your branch contains up-to-date changes of the **Master** branch.
3. Update ChangeLog.md
2. Ensure your branch contains up-to-date changes of the **dev** branch.
3. Update ChangeLog.md, adding to the `Unreleased` section at the top. If that does not exist, add it.
4. Submit Pull Request through GitHub and tag me as a reviewer.
5. Reviewer makes comments and submitter fixes them iteratively as needed.
6. Final acceptance will be based on Author's discretion.
Expand Down
6 changes: 3 additions & 3 deletions docs/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ onload = function() {
"Line Normal", "Line Diagonal", "Line Free", "Line Middle", "Line Helper",
"Edge Normal", "Edge Diagonal", "Edge Free", "Edge Helper", "Edge Erase",
"Wall",
"Number Normal", "Number L", "Number M", "Number S", "Candidates", "Number 1/4", "Number Side",
"Number Normal", "Number L", "Number M", "Number S", "Candidates", "Number 1/4", "Number Side", "Number Tapa",
"Sudoku Normal", "Sudoku Corner", "Sudoku Centre",
"Shape",
"Special", "Thermo", "Sudoku Arrow",
Expand All @@ -189,7 +189,7 @@ onload = function() {
"Line Normal", "Line Diagonal", "Line Free", "Line Middle", "Line Helper",
"Edge Normal", "Edge Diagonal", "Edge Free", "Edge Helper", "Edge Erase",
"Wall",
"Number Normal", "Number L", "Number M", "Number S", "Candidates", "Number 1/4", "Number Side",
"Number Normal", "Number L", "Number M", "Number S", "Candidates", "Number 1/4", "Number Side", "Number Tapa",
"Sudoku Normal", "Sudoku Corner", "Sudoku Centre",
"Shape",
"Special", "Thermo", "Sudoku Arrow",
Expand All @@ -200,7 +200,7 @@ onload = function() {
"sub_line1", "sub_line2", "sub_line3", "sub_line5", "sub_line4",
"sub_lineE1", "sub_lineE2", "sub_lineE3", "sub_lineE4", "sub_lineE5",
"wall",
"sub_number1", "sub_number10", "sub_number6", "sub_number5", "sub_number7", "sub_number3", "sub_number9",
"sub_number1", "sub_number10", "sub_number6", "sub_number5", "sub_number7", "sub_number3", "sub_number9", "sub_number4",
"sub_sudoku1", "sub_sudoku2", "sub_sudoku3",
"symbol",
"special", "sub_specialthermo", "sub_specialarrows",
Expand Down