diff --git a/.timetracker b/.timetracker index 616278f..02e1977 100644 --- a/.timetracker +++ b/.timetracker @@ -1,5 +1,5 @@ { - "total": 656662, + "total": 658541, "sessions": [ { "begin": "2026-01-09T17:26:02+01:00", @@ -1500,6 +1500,16 @@ "begin": "2026-05-24T08:51:27+02:00", "end": "2026-05-24T10:42:30+02:00", "duration": 6662 + }, + { + "begin": "2026-05-24T10:42:30+02:00", + "end": "2026-05-24T10:45:32+02:00", + "duration": 181 + }, + { + "begin": "2026-05-24T10:45:43+02:00", + "end": "2026-05-24T11:14:02+02:00", + "duration": 1698 } ] } \ No newline at end of file diff --git a/OrekiWoofsBeehives/modinfo.json b/OrekiWoofsBeehives/modinfo.json index bf19156..afebb63 100644 --- a/OrekiWoofsBeehives/modinfo.json +++ b/OrekiWoofsBeehives/modinfo.json @@ -7,7 +7,7 @@ "OrekiWoof" ], "description": "Beehive with 8 slots for honey frames. Boosts your plants.", - "version": "2.0.0-dev.7", + "version": "2.0.0-rc.1", "dependencies": { "game": "1.21.0" } diff --git a/RoamingBees/RoamingBees/modinfo.json b/RoamingBees/RoamingBees/modinfo.json index b2a2538..b037d21 100644 --- a/RoamingBees/RoamingBees/modinfo.json +++ b/RoamingBees/RoamingBees/modinfo.json @@ -7,7 +7,7 @@ "OrekiWoof" ], "description": "Cute immersive roaming bees. Now on vanilla skeps and other mods' hives.", - "version": "2.0.0-dev.7", + "version": "2.0.0-rc.1", "dependencies": { "game": "1.21.0" } diff --git a/build.sh b/build.sh index 58c82b4..e5ee23e 100755 --- a/build.sh +++ b/build.sh @@ -1 +1,2 @@ dotnet run --project ./ZZCakeBuild/OrekiWoofsBeehivesCakeBuild.csproj -- "$@" +dotnet run --project ./RoamingBees/ZZCakeBuild/RoamingBeesCakeBuild.csproj -- "$@" && cp ./RoamingBees/Releases/* ./Releases diff --git a/printLatestCommits.sh b/printLatestCommits.sh new file mode 100755 index 0000000..25a7b61 --- /dev/null +++ b/printLatestCommits.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +script_dir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)" +count="${1:-10}" + +git -C "$script_dir" log -n "$count" --pretty=format:%s | awk '{ lines[NR] = $0 } END { for (i = NR; i >= 1; i--) print lines[i] }'