Update version numbers: 15.0.0 Community, 14.0.1 EA Latest

Corrected version dropdown to reflect actual game versions:
- 15.0.0 (Community Server Latest)
- 14.0.1 (EA Official Latest)
- 14.0.0 through 8.0.0 (Historical EA versions)

Updated documentation to match real version history.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-20 10:01:14 -08:00
parent dd2c23000f
commit 7033a33795
17 changed files with 36 additions and 22 deletions

View File

@@ -66,7 +66,7 @@ Place `manifest.xml` in the root of your ZIP file:
### Root Fields
- **version**: Asset pack version (e.g., "1.0.0")
- **gameVersion**: RR3 game version this pack is for (e.g., "9.3.0")
- **gameVersion**: RR3 game version this pack is for (e.g., "14.0.1", "15.0.0")
- **description**: Brief description of the asset pack
- **author**: Creator name (optional)
- **category**: Default category if not specified per-asset
@@ -80,8 +80,14 @@ Place `manifest.xml` in the root of your ZIP file:
## Game Version Format
- Use semantic versioning: `MAJOR.MINOR.PATCH`
- Examples: `9.3.0`, `9.3.1`, `10.0.0`
- **Compatibility**: Patch versions are compatible (9.3.x works with 9.3.0)
- Examples: `15.0.0` (Community), `14.0.1` (EA Latest), `14.0.0`, `13.0.0`
- **Compatibility**: Patch versions are compatible (14.0.x works with 14.0.0)
## Version History
- **15.0.0** - Community Server version (current)
- **14.0.1** - EA's latest official version
- **14.0.0** - EA version 14
- **13.0.0 - 8.0.0** - Earlier EA versions
## Categories
Standard categories:
@@ -138,9 +144,9 @@ my-asset-pack.zip
## Version Compatibility
When a game client requests assets:
- Client sends version: `9.3.1`
- Server returns assets for: `9.3.0`, `9.3.1` (patch-compatible)
- Server excludes: `9.2.x`, `9.4.x`, `10.x.x`
- Client sends version: `14.0.1`
- Server returns assets for: `14.0.0`, `14.0.1` (patch-compatible)
- Server excludes: `13.x.x`, `15.x.x`
Major/minor versions must match exactly, patch versions are compatible within the same minor version.