Skip to content

Commit

Permalink
v0.2.3: small bug patch
Browse files Browse the repository at this point in the history
  • Loading branch information
lichendust committed Jan 8, 2024
1 parent 4f3da36 commit bc66df7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.2.3

Patch Release

### Bugs

- Fixed false-positive declarations (headers footers, etc.), once confirmed to be false, *always* reverting to action elements because of an obtuse control-flow fail.
- Fixed dual-dialogue page breaks sometimes creating two pages for themselves.
- Fixed dual-dialogue page breaks sometimes doing a fun bonus increment of the `#PAGE` value.
- Fixed dual-dialogue page-breaks sometimes omitting the header and footer.

## 0.2.2

Patch Release
Expand Down
4 changes: 2 additions & 2 deletions source/meander.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package main

import "os"

const VERSION = "v0.2.2"
const VERSION = "v0.2.3"
const MEANDER = "Meander " + VERSION

func main() {
Expand Down Expand Up @@ -343,4 +343,4 @@ func get_arguments() (*Config, bool) {
}

return conf, !has_errors
}
}

0 comments on commit bc66df7

Please sign in to comment.