Skip to content

Commit

Permalink
updated version number, changelog and code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Swaroop Guggilam committed Aug 20, 2022
1 parent 35cd355 commit 9c7c627
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 35 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## History
* 2022/xx/xx ver 3.0.3
* 2022/08/19 ver 3.0.3
* Fixed keyboard movement of number and sudoku in hex grids.
* Answer check translation and make the Solve Mode title clickable.
* Allow alphabets to I/O Sudoku.
Expand Down
50 changes: 18 additions & 32 deletions docs/css/base-structure.css
Original file line number Diff line number Diff line change
Expand Up @@ -244,35 +244,11 @@ hr.newgridhrline {
}

#stylemode_button *,
#submode_button *{
#submode_button * {
line-height: 25px;
vertical-align: middle;
}

.submode_button {
position: relative;
text-align: left;
padding-top: 5px;
font-size: 12px;
height: 35px;
}

.submode_button label {
font-size: 12px;
}

.stylemode_button {
position: relative;
text-align: left;
padding-bottom: -5px;
font-size: 12px;
height: 35px;
}

.stylemode_button label {
font-size: 14px;
}

.label_mode {
display: inline;
margin: 0px;
Expand Down Expand Up @@ -1428,39 +1404,47 @@ sup {
}

#app-container.streaming-mode {
display:flex;
justify-content:left;
align-items:flex-start;
flex-direction:row-reverse;
display: flex;
justify-content: left;
align-items: flex-start;
flex-direction: row-reverse;
margin: 35px 285px 0 30px !important;
}

#app-container.streaming-mode #puzzletitle::before,
#app-container.streaming-mode #puzzleauthor::before{
#app-container.streaming-mode #puzzleauthor::before {
display: none;
}

#app-container.streaming-mode #puzzletitle::after {
content: " - ";
}

#app-container.streaming-mode #puzzletitle,
#app-container.streaming-mode #puzzleauthor{
#app-container.streaming-mode #puzzleauthor {
display: inline;
font-size: 2em;
}

#app-container.streaming-mode #puzzlerules {
display: none;
}

#app-container.streaming-mode #puzzleinfo {
width: auto;
}

#app-container.streaming-mode #tool-container {
margin-left: 20px;
margin-right: 20px;
margin-top: 6px;
}

#app-container.streaming-mode #buttons {
width: 100%;
min-height: 200px;
}

#app-container.streaming-mode #ruletext {
display: block;
user-select: text;
Expand Down Expand Up @@ -1519,11 +1503,13 @@ sup {
}

@media (max-width: 850px) {

#app-container.responsive #mode_txt_space,
#app-container.responsive #mode_break {
display: inline;
}
}

@media (max-width: 600px) {
body {
margin: 0 auto;
Expand Down Expand Up @@ -1564,4 +1550,4 @@ sup {
margin: 5px;
font-size: 30px;
padding: 2px;
}
}
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Local styles -->
<script>
var ver = "3.0.2"; // Also defined in class_p.js
var ver = "3.0.3"; // Also defined in class_p.js
let style_sources = [
"./css/light_theme.css",
"./css/base-structure.css",
Expand Down
2 changes: 1 addition & 1 deletion docs/js/class_p.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class Puzzle {
["\"__a\"", "z_"],
["null", "zO"],
];
this.version = [3, 0, 2]; // Also defined in HTML Script Loading in header tag to avoid Browser Cache Problems
this.version = [3, 0, 3]; // Also defined in HTML Script Loading in header tag to avoid Browser Cache Problems
this.undoredo_disable = false;
this.comp = false;
this.multisolution = false;
Expand Down

0 comments on commit 9c7c627

Please sign in to comment.