Skip to content
Closed
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 modDesc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<en>Helper Payroll Alpha</en>
</title>
<description>
<en>0.4.2.0 Alpha 1: Extends HelperPayroll identity, role assignment, worker overrides and job-slot detection from A-J to A-T for the twenty-helper HelperProfiles roster. Existing A-J save mappings remain compatible.</en>
<en>0.4.2.0 Alpha 2: Extends HelperPayroll identity, role assignment, worker overrides and job-slot detection from A-J to A-T for the twenty-helper HelperProfiles roster. Existing A-J save mappings remain compatible. Alpha 2 records the completed A-T integration tests and retains job-start snapshots when roles or appearance bindings change during active work.</en>
</description>
<iconFilename>HelperPayroll_icon.dds</iconFilename>
<multiplayer supported="false" />
Expand Down
4 changes: 2 additions & 2 deletions scripts/HelperPayroll.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- Helper Payroll
-- Version: 0.4.2.0-alpha1
-- Version: 0.4.2.0-alpha2
-- Purpose:
-- 1. Suppress vanilla AI worker payments.
-- 2. Track active AI jobs.
Expand All @@ -15,7 +15,7 @@ local hpGetTimeMs
HelperPayroll = {}
HelperPayroll.MOD_NAME = g_currentModName or "FS25_HelperPayroll"
HelperPayroll.VERSION = "0.4.2.0"
HelperPayroll.RELEASE_CHANNEL = "alpha1"
HelperPayroll.RELEASE_CHANNEL = "alpha2"
HelperPayroll.TARGET_HELPER_SLOTS = 20
HelperPayroll.MOD_DIRECTORY = g_currentModDirectory or ""
HelperPayroll.BUNDLED_CONFIG_FILE = HelperPayroll.MOD_DIRECTORY .. "config/defaultPayrollConfig.xml"
Expand Down