Compare commits

..

No commits in common. "a93bc5be85d4abfa2954f98375e9164b8c273896" and "259ad59755b81834694da339b306cb625947d57a" have entirely different histories.

2 changed files with 3 additions and 9 deletions

View File

@ -4,20 +4,14 @@ 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/),
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
### Fixed
### Changed
- Fixed bug with solved puzzle tracking when config.json cannot be loaded.
## [v4.6.0] - 2024-04-17
### Fixed
### Changed
- Mothd now correctly handles using the current directory for a path.
For instance, `-puzzles .`
### Changed
- Theme configuration has a new structure:
old theme config files need to be modified
- Theme now omits the qix animation in the background

View File

@ -69,7 +69,7 @@ async function Config() {
let obj = {}
try {
let resp = await fetch(
new URL("config.json", BaseURL),
new URL("configg.json", BaseURL),
{
cache: "no-cache"
},