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

[bug] web #73

Merged
merged 1 commit into from
Jan 23, 2024
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 pon2.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.10.0"
version = "0.10.1"
author = "Keisuke Izumiya"
description = "Puyo Puyo Library"
license = "Apache-2.0 OR MPL-2.0"
Expand Down
3 changes: 1 addition & 2 deletions src/pon2pkg/apppkg/editorpermuter.nim
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ proc permute*(mSelf; fixMoves: seq[Positive], allowDouble: bool,

proc nextReplay*(mSelf) {.inline.} =
## Shows the next replay.
echo mSelf.replayData
if mSelf.replayData.isNone or mSelf.replayData.get.len == 0:
return

Expand Down Expand Up @@ -328,7 +327,7 @@ when defined(js):
if mSelf.replayData.isSome:
tdiv(class = "block"):
mSelf.initEditorPaginationNode
if mSelf.replayData.isSome:
if mSelf.replayData.get.len > 0:
tdiv(class = "block"):
mSelf.initEditorSimulatorNode

Expand Down