From ba85dee65f2a0db9b5df046da29c215638906775 Mon Sep 17 00:00:00 2001 From: Ken Date: Sun, 14 Jun 2026 23:35:58 -0700 Subject: [PATCH 1/3] GURPS 2.26.0 Fix turning radius update target icon Set Max ER value to 0 Updated wound modifier notes --- GURPS/gurps.css | 30 +- GURPS/gurps.html | 715 +++++++++++++++++++++++++---------------- GURPS/translation.json | 12 +- 3 files changed, 469 insertions(+), 288 deletions(-) diff --git a/GURPS/gurps.css b/GURPS/gurps.css index 7f7db425e2..2a15e6c7f8 100644 --- a/GURPS/gurps.css +++ b/GURPS/gurps.css @@ -2210,8 +2210,9 @@ input.sheet-toggle-unspoint-points[value="0"] ~ .sheet-row-total { .sheet-movement-feats .sheet-colToggle { position: relative;} .sheet-movement-feats .sheet-col0 { width: 100px; } +.sheet-movement-feats .sheet-colDropDown { width: 70px; } .sheet-movement-feats .sheet-col1 { width: calc((100% - 100px) * 0.4); } -.sheet-movement-feats .sheet-colAll { width: calc((100% - 100px) * 0.166); } +.sheet-movement-feats .sheet-colAll { width: calc((100% - 191px) * 0.166); } .sheet-movement-feats .sheet-col2 { width: calc((100% - 100px) * 0.3); } .sheet-movement-feats .sheet-col3 { width: calc((100% - 100px) * 0.3); } .sheet-movement-feats .sheet-row-load { @@ -2222,6 +2223,16 @@ input.sheet-toggle-unspoint-points[value="0"] ~ .sheet-row-total { .sheet-movement-feats .sheet-row-load .sheet-cell { margin-top: 11px; } .sheet-movement-feats .sheet-row-load input { font-size: 18px; font-weight: bold; } +.sheet-final-velocity-warning { + display: none; +} + +input[name="attr_show_final_velocity_warning"][value="1"] ~ .sheet-final-velocity-warning { + display: block; + color: red; + margin-top: 5px; +} + .sheet-container-feats { float: left; width: 100%; @@ -6126,14 +6137,25 @@ input[name="attr_armor_show_back"][value="on"] ~ .repcontainer .repitem .sheet-h } .sheet-custom-checkbox .sheet-switch .sheet-icon.sheet-target:before { - font-family: "Pictos Custom"; - content: "["; + content: "◎"; font-size: 24px; color: lightgray; } .sheet-custom-checkbox .sheet-switch input:checked ~ .sheet-icon.sheet-target:before { - color: green; + color: red; +} + +.sheet-target-token-help { + display: none; +} + +input[name="attr_target_token"][value="on"] ~ .sheet-target-token-help { + display: block; + font-size: 11px; + color: var(--highlight-text); + padding: 0 0 3px 0; + line-height: 1.2em; } /*******************************/ diff --git a/GURPS/gurps.html b/GURPS/gurps.html index 9a32a073b2..51aa66b1d8 100644 --- a/GURPS/gurps.html +++ b/GURPS/gurps.html @@ -4377,10 +4377,26 @@ - + @@ -6187,7 +6203,7 @@ See Powers, pg119 – More detailed
- +
@@ -6691,7 +6707,7 @@ every second that your encumbrance is over 10xBL
-
+
@@ -6701,7 +6717,23 @@ every second that your encumbrance is over 10xBL
+ + Enter the base move of the character. Normally this matches the character's Move attribute but can be changed for specific situations. + +
+
+ + + Enter the top move of the character. Normally this matches the character's Move attribute but can be changed for specific situations. + +
+
+ Enter velocity (yards/second) for current turn.
Important: Be sure to check your max allowed velocity based on movement type.
@@ -6717,7 +6749,7 @@ every second that your encumbrance is over 10xBL
Final velocity. Current Velocity - Deceleration.
The final velocity is how you start the turn and is used to
calculate the deceleration penalty, turn radius, and tight turn penalty.
@@ -6725,7 +6757,7 @@ every second that your encumbrance is over 10xBL
@@ -6748,7 +6780,7 @@ see B395.
@@ -6775,14 +6807,20 @@ See B395.
-
+
+
+ +
+
+ +
@@ -6802,6 +6840,11 @@ See B395.
+ + +
+ Warning! The final velocity exceeds the top move! +
@@ -13169,22 +13212,6 @@ visualize what it will look like in chat.
-
- -
-
- - - Click the button to turn on select a token before the skill roll.
The token name will appear in the results.
-
-
+ +
+ + You will prompted to select a target token. + +
@@ -13989,22 +14022,6 @@ visualize what it will look like in chat.
-
- -
-
- - - Click the button to turn on select a token before the skill roll.
The token name will appear in the results.
-
-
+ +
+ + If Target is selected, the macro will prompt you to select a target before rolling. The target's name will be included in the roll results and can be used in conditional statements for rolls that depend on the target. If Target is not selected, the roll will proceed as normal without prompting to select a target. + +
@@ -15509,12 +15532,13 @@ visualize what it will look like in chat.
- +
- + - +
@@ -28109,44 +28115,38 @@ For more information, see B409.

Pull Request:

-
    -
  • - Turning and Velocity Modifiers -
      -
    • FIX: Fixed turning radius and deceleration calculation bugs.
    • -
    • NEW: Added a field for base move and top speed, handy if using a jet pack or similar device.
    • -
    -
  • -
  • - REVISED: Updated the icon for Target button on the Melee and Range tables and added additional help text. - Removed the Select button since it only works with custom script developed with the Roll20 API. -
  • -
  • REVISED: Set the default value for Max ER to 0, helps prevent possible macro errors if you never set this value.
  • -
  • - REVISED: Updated the Wound Modifier Notes and added additional formatting. -
      -
    • ACTION: To get the latest notes, please go to the Gear Icon > Rules Tab and under the section titled Wound Modifier Notes click the Reset button.
    • -
    -
  • -
+
+ FIX: Turning and Velocity Modifiers: Fixed turning radius and deceleration calculation bugs.
+ NEW: Turning and Velocity Modifiers: Added a field for base move and top speed, handy if using a jet pack or similar device.
+ REVISED: Updated the icon for Target button on the Melee and Range tables and added additional help text. + Removed the Select button since it only works with custom script developed with the Roll20 API.
+ REVISED: Set the default value for Max ER to 0, helps prevent possible macro errors if you never set this value.
+ REVISED: Updated the Wound Modifier Notes and added additional formatting.
+ ACTION REQUIRED: To get the latest notes for these Wound Modifier Notes, please go to the Gear Icon > Rules Tab + and under the section titled Wound Modifier Notes click the Reset button. +

Version: 2.25.0

+

Pull Request: 6/6/2026

  • NEW: Added new GCA5 Field value imports for Home World, Gravity, Birth Date, Birth Place, Gender, Handedness, Build, Hair Color, Eye Color, and Family.
  • REVISED: Updated GCS documentation for Roll20.json file and updated links for the GCS Template Exporter.md file.

Version: 2.24.3

+

Pull Request: 5/20/2026

  • FIXED: Update tooltips for Range Calculator Tool. Improve syncing between Ranged Calculator Tool and Ranged Roll Modifiers Toolbox.

Version: 2.24.2

+

Pull Request: 4/22/2026

  • BUGFIX: Fix B269 dice/add conversion logic. Reported by Captain Joy.

Version: 2.24.1

+

Pull Request: 2/20/2026

  • COPYRIGHT: Added Game Aid and trademark copyright text that matches Steve Games Online Policy.
  • FIXED: Vehicle Sheet, ranged table. Fixed bug where the [Enabled] malfunction status was not displaying correctly.
  • @@ -28156,7 +28156,7 @@ For more information, see B409.

Version: 2.24.0

-

Pull Request: 2/20/2026

+

Pull Request: 2/15/2026

  • BUGFIX: A couple of translation updates and fixing a page reference for Aim. Suggested by Spriteanon and Uncle Mojo.
  • BUGFIX: When adding a brand new spell, not all of the modifiers were correctly added. This has now been fixed.
  • diff --git a/GURPS/translation.json b/GURPS/translation.json index d33ca2bb0a..ab80f2c604 100644 --- a/GURPS/translation.json +++ b/GURPS/translation.json @@ -39,6 +39,8 @@ "sheet-show-raw-defense-notes-desc": "If checked, show Rules as Written (RAW) for Active Defense success/fail notes.", "sheet-style-option": "Sheet Style", "sheet-style-desc": "Select a visual style for the character sheet.", + "new-features-bugfixes-label": "New Features & bugfixes:", + "keep-me-posted-text": "To be kept posted on things happening with this character sheet, DM me, and I will send you an invite to our Discord server dedicated to this GURPS 4th Edition character sheet in Roll20.
    Mike.", "roll-modifiers-heading": "Roll Modifiers Toolbox", "total-roll-modifier-label": "Total Modifier", "shock-label": "Shock",