Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/buildFile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<VASSAL.build.GameModule ModuleOther1="" ModuleOther2="" VassalVersion="3.7.20" description="VASL" name="VASL" nextPieceSlotId="15649" version="6.7.3-beta1">
<VASSAL.build.GameModule ModuleOther1="" ModuleOther2="" VassalVersion="3.7.20" description="VASL" name="VASL" nextPieceSlotId="15649" version="6.7.3-beta2">
<VASSAL.build.module.properties.GlobalProperties>
<VASSAL.build.module.properties.GlobalProperty description="TurnMarker1" initialValue="Spy (white)" isNumeric="false" max="null" min="null" name="TurnMarker1" wrap="false"/>
<VASSAL.build.module.properties.GlobalProperty description="TurnMarkerLayerLevel1" initialValue="33" isNumeric="true" max="100" min="0" name="TurnMarkerLayerLevel1" wrap="false"/>
Expand Down
12 changes: 7 additions & 5 deletions dist/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Release Notes: Version 6.7.3-beta1
**Release Date:** April 29, 2026
# Release Notes: Version 6.7.3-beta2
**Release Date:** April 30, 2026



---
Expand All @@ -11,14 +12,15 @@
---

## 🛠 Bug Fixes
- Fix 1: Counter Linking bug fixed
- Fix 2: Cows/Dead Cows now work with LOS Checking (you've been waiting for it, you know you have)
- Fix 1: Counter Linking bug fixed.
- Fix 2: Cows/Dead Cows now work with LOS Checking (you've been waiting for it, you know you have).
- Fix 3: LOS works when using NUL and/or NULV boards.
---

## 📈 Improvements
- Improvement 1: Enabled beach slope options for BE, OC, and EF overlays.
- Improvement 2: Enable Grain to Light Grain transformation for Slaughter at Ponyri (map-specific transformation) and "Light Grain" under "Other transformations" for Geoboards.
- Improvement 3: Counter Search Updated
- Improvement 3: Counter Search updated.
- Improvement 4:
- Improvement 5:
- Improvement 6:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.vasl</groupId>
<artifactId>vasl</artifactId>
<version>6.7.3-beta1</version>
<version>6.7.3-beta2</version>
<packaging>jar</packaging>

<properties>
Expand Down
7 changes: 6 additions & 1 deletion src/VASL/build/module/map/PieceLinker.java
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,12 @@ public void draw(Graphics g, Map map1) {
if (sourceonmap && targetonmap) {
VASL.LOS.Map.Hex sourceHex = map.getVASLMap().gridToHex((int) (fromPiece.getPosition().getX() - map.getEdgeBuffer().getWidth()), (int) (fromPiece.getPosition().getY() - map.getEdgeBuffer().getHeight()));
VASL.LOS.Map.Hex targetHex = map.getVASLMap().gridToHex((int) (toPiece.getPosition().getX() - map.getEdgeBuffer().getWidth()), (int) (toPiece.getPosition().getY() - map.getEdgeBuffer().getHeight()));
linkrange = map.getVASLMap().range(sourceHex, targetHex, map.getVASLMap().getMapConfiguration());
if (sourceHex == null || targetHex == null){
linkrange = 0;
}
else {
linkrange = map.getVASLMap().range(sourceHex, targetHex, map.getVASLMap().getMapConfiguration());
}
}
else {
linkrange =0;
Expand Down
Loading