Skip to content
Merged
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: 1 addition & 1 deletion src-ui/changes.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
<main>
<div style="margin-bottom: 5px;"><b>Latest types</b> (<em><a href="/list.html" target="_parent">all types</a></em>)</div>
<ul>
<li><a href="/p?blindrush" target="_parent">Blind Rush 猪突猛進</a></li>
<li><a href="/p?cityspace" target="_parent">City Space</a></li>
<li><a href="/p?numcity" target="_parent">Number City ナンバーシティ一</a></li>
<li><a href="/p?distopia" target="_parent">Distopia</a></li>
<li><a href="/p?uturns" target="_parent">U-Turns</a></li>
<li><a href="/p?isowatari" target="_parent">Isowatari イソワタリ</a></li>
<li><a href="/p?narrow" target="_parent">Narrowfence</a></li>
<li><a href="/p?kurarin" target="_parent">Kurarin クラリン</a></li>
</ul>
</main>
</body>
26 changes: 3 additions & 23 deletions src-ui/js/ui/KeyPopup.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ ui.keypopup = {
wataridori: [10, 0],
kurarin: [133, 0],
narrow: [134, 0],
blindrush: [10, 0],
isowatari: [10, 0],
uturns: [133, 0],
distopia: [10, 0],
Expand Down Expand Up @@ -485,29 +486,8 @@ ui.keypopup = {
text: "■",
color: "rgb(204,204,204)"
};
} else if (
pid === "kurotto" ||
pid === "bonsan" ||
pid === "satogaeri" ||
pid === "heyabon" ||
pid === "yosenabe" ||
pid === "herugolf" ||
pid === "kazunori" ||
pid === "nurimisaki" ||
pid === "amibo" ||
pid === "firefly" ||
pid === "shikaku" ||
pid === "aho" ||
pid === "bosanowa" ||
pid === "portal" ||
pid === "minarism" ||
pid === "mintonette" ||
pid === "onsen" ||
pid === "wataridori"
) {
cap = "○";
} else if (!ui.puzzle.painter.hideHatena) {
cap = "?";
} else {
cap = ui.puzzle.painter.hideHatena ? "○" : "?";
}
if (cap !== null) {
itemlist.push(["-", cap]);
Expand Down
1 change: 1 addition & 0 deletions src-ui/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ <h2 id="title"><span lang="ja">パズルの種類のリスト</span><span lang="
<li data-pid="oyakodori"></li>
<li data-pid="brownies"></li>
<li data-pid="timebomb"></li>
<li data-pid="blindrush"></li>
</ul>
</div>
<div class="lists divides">
Expand Down
1 change: 1 addition & 0 deletions src/pzpr/variety.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
battleship: [0, 0, "Battleship", "Battleship", "statuepark"],
bdblock: [1, 0, "ボーダーブロック", "Border Block"],
bdwalk: [0, 0, "ビルウォーク", "Building Walk", "haisu"],
blindrush: [0, 0, "猪突猛進", "Blind Rush"],
bonsan: [1, 0, "ぼんさん", "Bonsan", "bonsan"],
bosanowa: [1, 0, "ボサノワ", "Bosanowa", "", { alias: "bossanova" }],
bosnianroad: [0, 0, "Bosnian Road", "Bosnian Road"],
Expand Down
8 changes: 6 additions & 2 deletions src/res/failcode.en.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@
"bdNotChassis.shwolf": "A line doesn't connect to the chassis.",
"bdPassStar.nuriuzu": "A star overlaps a shaded cell.",
"bdPassStar.tentaisho": "A line goes over a star.",
"bdPierceGt1.blindrush": "A network of walls is pierced more than once.",
"bdPierceLt1.blindrush": "A network of walls is not pierced by a line.",
"bdUnequal.antmill": "A cross clue does not overlap exactly 1 shaded cell.",
"bdUnused.fillomino": "A given border does not divide two regions.",
"bdUnused.kissing": "A bar is not adjacent to two different blocks.",
Expand Down Expand Up @@ -519,6 +521,7 @@
"laIsolate.rectslider": "A line doesn't connect any shaded cell.",
"laIsolate.yosenabe": "A line doesn't connect any filling.",
"laIsolate": "A line doesn't connect to any letter.",
"laLenNe.blindrush": "A number doesn't go through the correct amount of walls.",
"laLenNe.herugolf": "A ball stops halfway.",
"laLenNe": "The length of a line is wrong.",
"laLoop": "A line forms a loop.",
Expand All @@ -536,6 +539,7 @@
"laOnNum": "A line goes through a letter.",
"laShadeOnBorder.oyakodori": "A black bird goes over a border.",
"laUnshadeNoBorder.oyakodori": "A white bird does not go over a border.",
"laWallStop.blindrush": "A circle does not stop at a wall.",
"laWaterHazard.herugolf": "A ball lands into the water.",
"lbDivide.amibo": "The bars are not connected.",
"lbIsolate.walllogic": "A line doesn't connect to any number.",
Expand Down Expand Up @@ -774,8 +778,8 @@
"nmNoLine.kusabi": "A circle is not connected to another object.",
"nmNoLine.wblink": "A circle doesn't start any line.",
"nmNoLine": "A number is not connected to another number.",
"nmNoMove.bonsan": "A circle doesn't start any line.",
"nmNoMove.rectslider": "A shaded cell doesn't start any line.",
"nmNoMove.bonsan": "A circle doesn't move.",
"nmNoMove.rectslider": "A shaded cell doesn't move.",
"nmNoOrbit.orbital": "A black circle is not inside a loop.",
"nmNoSequence.numcity": "A city does not contain one district of every number from 1 to N.",
"nmNoSideShade.tasquare": "No shaded cells are adjacent to square marks.",
Expand Down
Loading