GURPS 2.25.0

- add new GCA5 fields
- update GCS import docs
This commit is contained in:
Ken
2026-06-06 17:07:19 -07:00
parent bc37fd7e59
commit 943e4ea510
3 changed files with 25 additions and 9 deletions
+3 -3
View File
@@ -2,8 +2,8 @@
## Links
- [Export Templates](https://github.com/richardwilkes/gcs_master_library/blob/master/Library/Markdown/Help/Export%20Templates.md)
- [Expression Functions](https://github.com/richardwilkes/gcs_master_library/blob/master/Library/Markdown/Help/Expression%20Functions.md)
- [Export Templates](https://github.com/richardwilkes/gcs_master_library/blob/master/Library/Markdown/User%20Guide/Export%20Templates.md)
- [Suggested by repo](https://pkg.go.dev/html/template)
- [export.go](C:\Users\kfoub\source\gcs\model\gurps\export.go)
- [GCS Repo](https://github.com/richardwilkes/gcs)
- [export.go](https://github.com/richardwilkes/gcs/blob/master/model/gurps/export.go)
- [Hot to Use Templates in Go](https://www.digitalocean.com/community/tutorials/how-to-use-templates-in-go)
+1 -1
View File
@@ -60,7 +60,7 @@ GCS Text Template v1
"EnhancedGroundMoveMod": 0.0,
"EnhancedGroundMovePoints": 0.0,
"DodgeMod": 0.0,
"LiftStMod": 2.0,
"LiftStMod": 0.0,
"LiftStPoints": 0.0,
"StrikingStMod": 0.0,
"StrikingStPoints": 0.0,
+21 -5
View File
@@ -4377,9 +4377,10 @@
<input type="text" name="attr_announcement_version" readonly="readonly" value="0" title="GURPS Character Sheet Version" />
</h4>
<!-- current version notes: 2.24.3 -->
<!-- current version notes: 2.25.0 -->
<ul>
<li><b>FIXED:</b> Update tooltips for Range Calculator Tool. Improve syncing between Ranged Calculator Tool and Ranged Roll Modifiers Toolbox.</li>
<li><b>NEW:</b> Added new GCA5 Field value imports for Home World, Gravity, Birth Date, Birth Place, Gender, Handedness, Build, Hair Color, Eye Color, and Family.</li>
<li><b>REVISED:</b> Updated GCS documentation for Roll20.json file and updated links for the GCS Template Exporter.md file.</li>
</ul>
<label class="check"><input type="checkbox" name="attr_announcements_hide" value="1">&nbsp;<b><span data-i18n="hide-until-next-update">Hide until next update</span></b></label>
@@ -28081,7 +28082,13 @@ For more information, see B409.
<p>Pull Request: <span name="attr_latest_changes"></span></p>
<!-- current version notes: 2.24.3 -->
<!-- current version notes: 2.25.0 -->
<ul>
<li><b>NEW:</b> Added new GCA5 Field value imports for Home World, Gravity, Birth Date, Birth Place, Gender, Handedness, Build, Hair Color, Eye Color, and Family.</li>
<li><b>REVISED:</b> Updated GCS documentation for Roll20.json file and updated links for the GCS Template Exporter.md file.</li>
</ul>
<h4>Version: 2.24.3</h4>
<ul>
<li><b>FIXED:</b> Update tooltips for Range Calculator Tool. Improve syncing between Ranged Calculator Tool and Ranged Roll Modifiers Toolbox.</li>
</ul>
@@ -33851,9 +33858,9 @@ B378
const noop = function () { }; // do nothing callback function.
const version = "2.24.3";
const version = "2.25.0";
const latestChangesDate = "5/25/2026";
const latestChangesDate = "6/9/2026";
let modCascade = true;
@@ -53361,6 +53368,15 @@ B378
weight: parseFloat(character.Weight),
appearance: parseInt(character.Appearance),
general_appearance: character.GeneralAppearance,
build: character.Build,
hair: character.HairColor,
eyes: character.EyeColor,
birth_date: character.BirthDate,
birth_place: character.BirthPlace,
homeworld: character.HomeWorld,
homeworld_gravity_rating: character.Gravity,
hand: character.Handedness,
family: character.Family,
strength_points: parseInt(character.StrengthPoints),
dexterity_points: parseInt(character.DexterityPoints),
intelligence_points: parseInt(character.IntelligencePoints),