Skip to content

Commit

Permalink
Prepare for v1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
cracrayol committed Aug 24, 2024
1 parent cead285 commit 35c7a1e
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 17 deletions.
17 changes: 10 additions & 7 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -106,28 +106,28 @@
- Disable use of object restoring endurance prior/during combat (except is specified)
- Apply healing only on story sections

1.13.1
1.13.1
- Fix combatsWon test not checked if set to false (can stuck the player in multiples books)

1.14
1.14
- Book 17 and 18 available
- Book 14/15: Fix test that only check rope instead of rope/largerope
- Added possibility to restart the book from section 1
- Reset zoom button added for the map

1.15
1.15
- Book 19 and 20 available. Grand Master is now complete!
- Restore the possibility to run Kai Chronicles inside Docker

1.15.1 (*Thanks to lonevvolf for the fixes*)
1.15.1 (*Thanks to lonevvolf for the fixes*)
- Fixed MIME type of the savegame to JSON
- Allows to create homescreen app icon, on mobile devices, using Safari or Chrome.
- Fireseeds are now stacked.
- Book 8/11: Fix mental only battle
- Book 9: Fix meal sections where only huntmastery is allowed (can't hunt if only kai hunting discipline)
- Book 18: Don't remove quivers when loosing backpack (sect236/290/335)

1.16 (*Thanks to lonevvolf for the reports/fixes/book 21*)
1.16 (*Thanks to lonevvolf for the reports/fixes/book 21*)
- Book 21 available.
- Add "Text size" (normal/large) setting
- Fix type error (ennemy instead of enemy)
Expand All @@ -139,9 +139,12 @@
- Book 16: Fix incorrect section name (350 -> sect350)
- Book 20: Fix incorrect section name (199 -> sect199)

1.17 (*Thanks to lonevvolf for the books/multi-currency support*)
1.17 (*Thanks to lonevvolf for the books/multi-currency support*)
- Book 22 to 25 available.
- Add multi-currency support (and update books that use other currencies other than gold crowns)
- Fix "Kai Weapon" not hidden on non "New order" books
- Fix combat ratio increasing when going back and forth in action chart if combat has combatSkillModifierIncrement
- Disallow dropping/selling of Kai Weapons
- Disallow dropping/selling of Kai Weapons

1.18 (*Thanks to lonevvolf for the books*)
- Book 26 available.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ Open your browser on http://localhost:3000.
Optional method for running a local website only to play the game
* Download and install [Docker](https://docs.docker.com/install/) and make sure it's is in your PATH environment variable
* Using a terminal (Linux or iOS) or PowerShell (Windows 10) navigate to the project's directory
* Type `docker build -t kai:1.17 .`
* Type `docker run -p 8080:8080 kai:1.17`
* Type `docker build -t kai:1.18 .`
* Type `docker run -p 8080:8080 kai:1.18`
* Open http://localhost:8080

More information about this method [here](./doc/README-docker.md)
Expand Down
8 changes: 4 additions & 4 deletions doc/README-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
Running Kai Chronicles inside a Docker cointainer configures and runs a local website for playing the game. If you intend to develop the game and are not familiar with Docker, then this method is not recommended.
* Download and install [Docker](https://docs.docker.com/install/) and make sure it's is in your PATH environment variable
* Using a terminal (Linux or iOS) or PowerShell (Windows 10) navigate to the project's directory
* Type `docker build -t kai:1.17 .` (including the `.`)
* Type `docker build -t kai:1.18 .` (including the `.`)
* The build command only needs to be run once.
* It takes awhile.
* Type `docker run -p 8080:8080 kai:1.17`
* If you want to access the site via a different port, change the *first* 8080 e.g. `docker run -p 5000:8080 kai:1.17`
* If you want to run the website independently of your terminal window (i.e. as a daemon), add a `-d` flag e.g. `docker run -d -p 8080:8080 kai:1.17`
* Type `docker run -p 8080:8080 kai:1.18`
* If you want to access the site via a different port, change the *first* 8080 e.g. `docker run -p 5000:8080 kai:1.18`
* If you want to run the website independently of your terminal window (i.e. as a daemon), add a `-d` flag e.g. `docker run -d -p 8080:8080 kai:1.18`
* If you try this command and you get some kind of 'conflicting port' error, then try a different port per instructions above.
* Open http://localhost:8080
* The server's ready message has incorrect URLs. Use the URL above, swapping in the correct port if you changed it.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kaichronicles",
"displayName": "Kai Chronicles",
"version": "1.17",
"version": "1.18",
"repository": {
"type": "git",
"url": "https://github.com/tonib/kaichronicles.git"
Expand Down
2 changes: 1 addition & 1 deletion www/views/mainMenu.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h1 data-translation="kaiChronicles">Kai Chronicles</h1>
<div style="float: right; padding-right: 25px;">
<a href="#" class="action" id="menu-color-theme" data-translation="menu-changecolor">Change color</a>
</div>
<b>v1.17</b><br/>
<b>v1.18</b><br/>
<span data-translation="appInfo">
This is a player for Lone Wolf game books 1 to 26.
</span>
Expand Down

0 comments on commit 35c7a1e

Please sign in to comment.