v1.0.9.3 — Wage Settings Fixes
What’s Fixed
Wage settings now save correctly — changing Cost Mode or Wage Level and then switching tabs no longer resets your choices back to defaults.
Enable Mod toggle works properly — turning the mod off and then back on now actually sticks. Previously the mod would always revert to off once you switched tabs.
Wage Level no longer rapid-cycles — pressing the left/right arrows on Wage Level would previously trigger an unstoppable loop until you interacted with Cost Mode. This is now fixed.
Cost Structure panel is now mode-aware — when you switch to Per Hectare mode, the Cost Structure text on the right side of the Wage Settings tab now shows per-hectare rates and billing notes instead of the hourly version.
Notes
No save game migration needed — existing saves load normally
All settings are saved per save game as before
V1.0.9.2 Fixes
#38 / #34 — Payment interval changed from 5 → 30 real-world minutes; job-completion notification shows total cost charged when a worker is dismissed
#37 — About page: version number now displays correctly; panel height expanded to prevent text cutoff
#36 — Renamed “Worker Breakdown” section to “Labor Cost Breakdown”
#35 — Renamed “Help” tab to “Cost Structure”; fixed toggle row overlap and text overflow in settings
V1.0.9.1
– Fixed: NPC neighbor workers (e.g. from FS25 Working Neighbor On Field) were incorrectly being billed to your farm. Worker cost tracking now checks farm ownership so only your hired workers count.
– New: Full Danish translation added (63 strings). Thanks to DJWestDK!
V1.0.9.0
– Added mission.workerCostsManager cross-mod bridge for FarmTablet
– Fixed aiSystem:getActiveJobs() + dynamic currency symbol
– Fixed MoneyType and active job detection for helper wage suppression
– Fixed Monthly salary dialog, localization, packaging, tab icon
– Fixed Ultrawide layout, balance box anchoring, checkbox crash
– Fixed FS25 textured icon; DXT1 compression
– Bumped version to 1.0.9.0
V1.0.8 What’s fixed
Ultrawide (21:9) balance text mispositioned
The farm balance display in the pause menu tab was appearing in the wrong place at resolutions like 3440×1440. The position was hardcoded from the left edge of a panel that scales wider at ultrawide aspect ratios. It now uses a fixed 1034px coordinate shell so it always sits in the top-right of the header.
Checkbox crash in Wage Settings (FS25 1.17)
The fs25_optionCheckbox GUI profile no longer exists in FS25 1.17.0.0. All three setting toggles were falling back to a base-reference element that lacked the required internal structure, triggering a mouseEvent crash (attempt to index nil with ‘absPosition’) whenever you hovered or clicked them. Replaced with a valid profile based on fs25_subCategorySelector.
Version string corrected
The startup log message was reporting the wrong version.
Files changed
src/main.lua — version string bumped
xml/gui/WCMenuPage.xml — balance box wrapped in fixed-width container
xml/gui/WCWageSettingsFrame.xml — checkbox profile replaced, label positions adjusted
xml/gui/guiProfiles.xml — added WC_CheckSwitcher and WC_MoneyBoxFixedWidth profiles
V1.0.7
Bug fix release.
V1.0.6.0
[Fixed]
* Built-in helper wages (25§/interval) are now correctly suppressed. The hook was intercepting MoneyType.WORKER_WAGES which does not exist in FS25 — the game’s AIJob:updateCost() actually uses MoneyType.AI. Workers were being double-charged as a result.
* Pause menu dashboard and worker list now populate correctly. getActiveWorkers() was using non-existent fields (job.isActive, job.vehicle) and iterating activeJobs with pairs() instead of ipairs(). Rewritten to use the correct FS25 API: job.isRunning, job.vehicleParameter:getVehicle(), and job:getHelperName().
* WorkerCostsEnable now correctly re-installs the suppression hook if it was lost mid-session.
[Added]
* WorkerCostsDebug true|false console command — toggle debug logging to log.txt at runtime.
* WorkerCostsDiagnostic console command — prints a full status report including hook state, MoneyType values, active workers, and GUI state. Useful for troubleshooting.
V1.0.4
Added monthly salary for workers that have worked for you
Complete polish over codebase, wired code together and solved edge cases
Fixed missing l10n string wc_monthly_salary_short thas was missing for the settings page
Bumped version to 1.0.4.0
Thanks to @Mihai457 for commenting this as a suggestion
What’s New in v1.0.3.0
This release focuses on polish, correctness, and a better first impression — both in-game and on the repository.
Bug Fixes
Worker Stats tab — per-hectare cost display was showing the mode name string (“Per Hectare ($/ha)”) as the cost value for each worker. It now correctly shows “-” since per-interval cost can’t be estimated without knowing how much area will be worked.
Worker Stats tab — cost sign was displaying a + prefix on each worker’s wage, implying income. Corrected to -.
Multiplayer spectator safety — the payment system now guards against farmId == 0 (the spectator slot), preventing an attempted charge against an unowned farm.
About tab — hardcoded version fallback was hardcoded to “1.0.2.0”. It now reads live from g_modManager and falls back to “unknown” if the mod manager isn’t available.
Improvements
Tab icon spritesheet — each of the four manager tabs (Dashboard, Wage Settings, Worker Stats, About) now displays its own pictogram from a custom tab_icons.dds spritesheet instead of all showing the same mod icon.
Tab separator lines removed — the horizontal divider lines between tab items in the left panel have been removed for a cleaner look.
Per-page header icons — the green header box next to each page title now shows the correct pictogram for that page.
Console unit display — workerCostsStatus and WorkerCostsShowSettings previously hardcoded /h as the rate unit. Both now correctly show /h or /ha based on your active cost mode.
Logging consistency — bare print() calls in the core loader replaced with Logging.info().
Back button label — the back button on the mod’s pause-menu page was missing its text label; now correctly shows the localised “Back” string.
Repository
Added .gitignore, LICENSE (MIT), and CONTRIBUTING.md
Added GitHub issue templates: Bug Report, Feature Request, Mod Compatibility — with structured YAML forms
Blank issues disabled; general questions directed to Discussions
README fully overhauled: badges, feature table, wage calculation reference, collapsible troubleshooting, accurate changelog
V1.0.1.1
– Added a moneyType == MoneyType.WORKER_WAGES guard*
*The hook now only suppresses the game’s own worker-wage deductions. All other costs pass through normally.
V1.0.1.0
– Added local function getTextSafe back to WorkerSettingsUI.lua (above the class definition), so inject() has its resolver in scope and can complete cleanly
V1.0.0.9
– 10 bugs fixed
– Removed dead code
– Polish for entire codebase
V2.0.1
Critical Bug Fixes
Issue #3: Worker Costs 25% Too High ✅
Problem: Workers were being overcharged by up to 25% due to duplicate skill multiplier application.
Details:
The skill multiplier was being applied twice in the wage calculation pipeline
First in the wage strategy, then again in the wage calculator
Example: A worker with 1.12x skill multiplier was actually charged 1.12² = 1.2544x
Setting $15/hour was actually costing $18.75/hour for skilled workers
Fix:
Removed duplicate skill multiplier from wage strategies
Skill multiplier now applied only once in WageCalculator
$15/hour now actually costs $15/hour as configured
Impact: Worker wages now match your configured settings accurately.
Issue #1: Settings UI Not Appearing ✅
Problem: Users couldn’t access mod settings – the UI didn’t show up in the game menu.
Root Causes:
Missing Logger.lua – Caused mod initialization to fail completely
Missing UIHelper.lua – Prevented UI elements from being created
Missing documentation – Users confused about how to access settings
Fixes:
Created src/utils/Logger.lua – Complete singleton logger implementation
Restored src/utils/UIHelper.lua – Recovered from git history + added v2.0.0 compatibility
Created comprehensive README.md – Clear setup and usage instructions
Impact: Settings UI now appears correctly in the in-game menu.
V1.0.0.6
Real-time worker detection using game’s AI system
Periodic payment processing (every 5 in-game minutes)
Comprehensive debug logging for troubleshooting
Better error handling and validation
Enhanced documentation and installation guide
V1.0.0.5
– Fixed SoilFieldInfo command now properly initializes and returns field data
– Improved daily soil updates with weather/season effects
– Fixed small bug in settings UI
Hi, Ide like to know what do you mean by worker skill?
ne fonctionne pas aucun changement constate ?