Skip to content

Commit 9d388e6

Browse files
committed
Bump stable Chunky version to 2.4.5.
1 parent b471a6a commit 9d388e6

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Click on the pencil icon at the top right of any docs page to make small changes
7070

7171
1. Change the working directory to `./ChunkyDocs`.
7272

73-
2. Serve the site for development by using either the command, `CHUNKY_VERSION=20404 python -m mkdocs serve`, or the command, `CHUNKY_VERSION=20500 python -m mkdocs serve`, depending on the version of Chunky for which you want to serve documentation.
73+
2. Serve the site for development by using either the command, `CHUNKY_VERSION=20405 python -m mkdocs serve`, or the command, `CHUNKY_VERSION=20500 python -m mkdocs serve`, depending on the version of Chunky for which you want to serve documentation.
7474

7575
Alternatively, on Windows, you can run either "serve_stable.bat" or "serve_snapshot.bat", depending on the version of Chunky for which you want to build documentation.
7676

ChunkyDocs/docs/getting_started/installing_chunky.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ To install Chunky, download the Chunky Launcher (Universal JAR).[^1] This requir
66

77
| | CPU | Available RAM | Available Storage |
88
| --------------------------------- | ------------------------------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
9-
| **Minimum requirements**[^2] | CPU supported by Java & OpenJFX | 512 MB | 270 MB for core files: <ul><li><strong>Java 17:</strong> 135 MB</li><li><strong>OpenJFX:</strong> 110 MB</li><li><strong>Chunky 2.4.4:</strong> 25 MB</li></ul> |
9+
| **Minimum requirements**[^2] | CPU supported by Java & OpenJFX | 512 MB | 270 MB for core files: <ul><li><strong>Java 17:</strong> 135 MB</li><li><strong>OpenJFX:</strong> 110 MB</li><li><strong>Chunky 2.4.5:</strong> 25 MB</li></ul> |
1010
| **Recommended requirements** | 64-bit CPU | 8+ GB | 270 MB for core files + <ul><li><strong>Multiple Chunky versions:</strong> 50+ MB</li><li><strong>Multiple Chunky scenes:</strong> 1+ GB</li></ul> |
1111

1212
## Downloads

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ This site uses <a href="https://www.mkdocs.org/" target="_blank">mkdocs</a>. Pyt
2121

2222
- Step 4: If running Windows, simply run "serve_stable.bat" or "serve_snapshot.bat", depending on the version of Chunky for which you want to serve documentation. Otherwise, change the working directory to "./ChunkyDocs".
2323

24-
- Step 5: Serve the site for development by using the either the command, `CHUNKY_VERSION=20404 python -m mkdocs serve`, or the command, `CHUNKY_VERSION=20500 python -m mkdocs serve`, depending on the version of Chunky for which you want to serve documentation.
24+
- Step 5: Serve the site for development by using the either the command, `CHUNKY_VERSION=20405 python -m mkdocs serve`, or the command, `CHUNKY_VERSION=20500 python -m mkdocs serve`, depending on the version of Chunky for which you want to serve documentation.
2525

26-
- Step 6: Build a preview of the final site by using either the command, `CHUNKY_VERSION=20404 python -m mkdocs build`, or the command `CHUNKY_VERSION=20500 python -m mkdocs build`, depending on the version of Chunky for which you want to build documentation. On Windows, first run either the command, `set CHUNKY_VERSION=20404`, or the command, `set CHUNKY_VERSION=20500`, depending on the version of Chunky for which you want to build documentation. Then run the command, `python -m mkdocs serve`.
26+
- Step 6: Build a preview of the final site by using either the command, `CHUNKY_VERSION=20405 python -m mkdocs build`, or the command `CHUNKY_VERSION=20500 python -m mkdocs build`, depending on the version of Chunky for which you want to build documentation. On Windows, first run either the command, `set CHUNKY_VERSION=20405`, or the command, `set CHUNKY_VERSION=20500`, depending on the version of Chunky for which you want to build documentation. Then run the command, `python -m mkdocs serve`.
2727

2828
### With Docker
2929

VERSIONING_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The Chunky Manual builds documentation for separate versions of Chunky from the same source code to avoid duplication of content.
44

5-
The target version can be specified using the `CHUNKY_VERSION` environment variable when building/serving the docs (defaults to `20500`). The version must be specified as a number equal to `major * 10000 + minor * 100 + patch` (2.4.4 is `20404` and 2.5.0 is `20500`), which allows comparing versions easily.
5+
The target version can be specified using the `CHUNKY_VERSION` environment variable when building/serving the docs (defaults to `20500`). The version must be specified as a number equal to `major * 10000 + minor * 100 + patch` (2.4.5 is `20405` and 2.5.0 is `20500`), which allows comparing versions easily.
66

77
## Page Versioning
88

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ else
1212
sed -i 's/..\/versions.json/\/docs\/versions.json/g' ../docs/snapshot/assets/javascripts/bundle*.min.js
1313
fi
1414

15-
CHUNKY_VERSION=20404 python -m mkdocs build
15+
CHUNKY_VERSION=20405 python -m mkdocs build
1616
cp -r site/* ../docs/
1717
# get the versions from /docs/versions.json instead of the hard-coded ../versions.json
1818
if [[ "$OSTYPE" == "darwin"* ]]; then
@@ -21,4 +21,4 @@ else
2121
sed -i 's/..\/versions.json/\/docs\/versions.json/g' ../docs/assets/javascripts/bundle*.min.js
2222
fi
2323

24-
echo '[{ "version": "../docs", "title": "2.4.4", "aliases": ["stable"] }, { "version": "../docs/snapshot", "title": "2.5.0 (snapshot)", "aliases": ["snapshot"] }]' > ../docs/versions.json
24+
echo '[{ "version": "../docs", "title": "2.4.5", "aliases": ["stable"] }, { "version": "../docs/snapshot", "title": "2.5.0 (snapshot)", "aliases": ["snapshot"] }]' > ../docs/versions.json

serve_stable.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CD /d %~dp0/ChunkyDocs
22

3-
set CHUNKY_VERSION=20404
3+
set CHUNKY_VERSION=20405
44

55
python -m mkdocs serve
66

0 commit comments

Comments
 (0)