diff --git a/.timetracker b/.timetracker index 5deb8dc..53f0d5e 100644 --- a/.timetracker +++ b/.timetracker @@ -1,5 +1,5 @@ { - "total": 18477, + "total": 19851, "sessions": [ { "begin": "2026-03-17T23:54:43+01:00", @@ -25,6 +25,11 @@ "begin": "2026-03-18T23:14:52+01:00", "end": "2026-03-19T01:17:26+01:00", "duration": 7354 + }, + { + "begin": "2026-05-31T01:21:35+02:00", + "end": "2026-05-31T01:44:30+02:00", + "duration": 1374 } ] } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f4767cf..16d706a 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,9 +4,9 @@ { "label": "check env", "type": "shell", - "command": "[ -n \"$VINTAGE_STORY\" ] || { echo 'ERROR: VINTAGE_STORY is not set'; exit 1; }; [ -n \"$VINTAGE_STORY_DATA\" ] || { echo 'ERROR: VINTAGE_STORY_DATA is not set'; exit 1; }", + "command": "if [ \"${input:buildConfig}\" = \"Version22\" ]; then [ -n \"$VINTAGE_STORY_22\" ] || { echo 'ERROR: VINTAGE_STORY_22 is not set'; exit 1; }; [ -n \"$VINTAGE_STORY_DATA_22\" ] || { echo 'ERROR: VINTAGE_STORY_DATA_22 is not set'; exit 1; }; else [ -n \"$VINTAGE_STORY_21\" ] || { echo 'ERROR: VINTAGE_STORY_21 is not set'; exit 1; }; [ -n \"$VINTAGE_STORY_DATA_21\" ] || { echo 'ERROR: VINTAGE_STORY_DATA_21 is not set'; exit 1; }; fi", "windows": { - "command": "if (-not $env:VINTAGE_STORY) { Write-Host 'ERROR: VINTAGE_STORY is not set'; exit 1 }; if (-not $env:VINTAGE_STORY_DATA) { Write-Host 'ERROR: VINTAGE_STORY_DATA is not set'; exit 1 }" + "command": "if ('${input:buildConfig}' -eq 'Version22') { if (-not $env:VINTAGE_STORY_22) { Write-Host 'ERROR: VINTAGE_STORY_22 is not set'; exit 1 }; if (-not $env:VINTAGE_STORY_DATA_22) { Write-Host 'ERROR: VINTAGE_STORY_DATA_22 is not set'; exit 1 } } else { if (-not $env:VINTAGE_STORY_21) { Write-Host 'ERROR: VINTAGE_STORY_21 is not set'; exit 1 }; if (-not $env:VINTAGE_STORY_DATA_21) { Write-Host 'ERROR: VINTAGE_STORY_DATA_21 is not set'; exit 1 } }" }, "problemMatcher": [] }, diff --git a/ButterflyPins/ButterflyPins.csproj b/ButterflyPins/ButterflyPins.csproj index 92c3459..fa721eb 100644 --- a/ButterflyPins/ButterflyPins.csproj +++ b/ButterflyPins/ButterflyPins.csproj @@ -6,6 +6,8 @@ bin\$(Configuration)\Mods\mod enable Debug;Release;Version22 + $(VINTAGE_STORY_21) + $(VINTAGE_STORY_DATA_21) $([System.Environment]::GetEnvironmentVariable('VS_CONFIGLIB')) true $(DefineConstants);CONFIGLIB diff --git a/ZZCakeBuild/CakeBuild.csproj b/ZZCakeBuild/CakeBuild.csproj index 208214e..364c056 100644 --- a/ZZCakeBuild/CakeBuild.csproj +++ b/ZZCakeBuild/CakeBuild.csproj @@ -4,11 +4,16 @@ net8.0 $(MSBuildProjectDirectory) Debug;Release;Version22 + $(VINTAGE_STORY_21) $([System.Environment]::GetEnvironmentVariable('VS_CONFIGLIB')) true $(DefineConstants);CONFIGLIB + + $(VINTAGE_STORY_22) + +