mirror of https://github.com/dirtbags/moth.git
Compare commits
2 Commits
259ad59755
...
a93bc5be85
Author | SHA1 | Date |
---|---|---|
Neale Pickett | a93bc5be85 | |
Neale Pickett | 7db402144f |
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -4,14 +4,20 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [v4.6.2] - 2024-04-17
|
||||||
|
### Fixed
|
||||||
|
- Fixed code to intentionally break config.json loading, used to test v4.6.1
|
||||||
|
|
||||||
## [v4.6.1] - 2024-04-17
|
## [v4.6.1] - 2024-04-17
|
||||||
### Changed
|
### Fixed
|
||||||
- Fixed bug with solved puzzle tracking when config.json cannot be loaded.
|
- Fixed bug with solved puzzle tracking when config.json cannot be loaded.
|
||||||
|
|
||||||
## [v4.6.0] - 2024-04-17
|
## [v4.6.0] - 2024-04-17
|
||||||
### Changed
|
### Fixed
|
||||||
- Mothd now correctly handles using the current directory for a path.
|
- Mothd now correctly handles using the current directory for a path.
|
||||||
For instance, `-puzzles .`
|
For instance, `-puzzles .`
|
||||||
|
|
||||||
|
### Changed
|
||||||
- Theme configuration has a new structure:
|
- Theme configuration has a new structure:
|
||||||
old theme config files need to be modified
|
old theme config files need to be modified
|
||||||
- Theme now omits the qix animation in the background
|
- Theme now omits the qix animation in the background
|
||||||
|
|
|
@ -69,7 +69,7 @@ async function Config() {
|
||||||
let obj = {}
|
let obj = {}
|
||||||
try {
|
try {
|
||||||
let resp = await fetch(
|
let resp = await fetch(
|
||||||
new URL("configg.json", BaseURL),
|
new URL("config.json", BaseURL),
|
||||||
{
|
{
|
||||||
cache: "no-cache"
|
cache: "no-cache"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue