Skip to content

Commit fde3019

Browse files
committed
prepare for release
1 parent a086798 commit fde3019

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+139
-109
lines changed

AnotherHungerMod/AnotherHungerMod.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\SpaceShared\SpaceShared.projitems" Label="Shared" />
44

55
<PropertyGroup>
6-
<Version>1.2.2</Version>
6+
<Version>1.3.0</Version>
77
<TargetFramework>net452</TargetFramework>
88
</PropertyGroup>
99

AnotherHungerMod/docs/release-notes.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[← back to readme](README.md)
22

33
# Release notes
4-
## Upcoming release
4+
## 1.3.0
5+
Released 04 September 2021 for SMAPI 3.12.6 or later. Updated by Pathoschild.
6+
57
* The hunger drain and starvation damage are now configurable per-minute instead of per-10-minutes.
68
* Added compatibility with Casual Life and other mods which change the clock at non-10-minute intervals.
79

@@ -10,22 +12,22 @@ If you edited the hunger drain and starvation damage in `config.json`, you'll ne
1012
with the new per-minute fields.
1113

1214
## 1.2.2
13-
Released 12 July 2021 for Stardew Valley 1.5. Updated by Pathoschild.
15+
Released 12 July 2021 for SMAPI 3.9.5 or later. Updated by Pathoschild.
1416

1517
* Fixed fullness starting at zero in new saves.
1618

1719
## 1.2.1
18-
Released 11 July 2021 for Stardew Valley 1.5. Updated by Pathoschild.
20+
Released 11 July 2021 for SMAPI 3.9.5 or later. Updated by Pathoschild.
1921

2022
* Fixed fullness over 100% allowed in 1.2.0.
2123

2224
## 1.2.0
23-
Released 10 July 2021 for Stardew Valley 1.5. Updated by Pathoschild.
25+
Released 10 July 2021 for SMAPI 3.9.5 or later. Updated by Pathoschild.
2426

2527
* Reworked how player data is stored to simplify multiplayer sync and reduce edge cases.
2628

2729
## 1.1.1
28-
Released 19 June 2021 for Stardew Valley 1.5. Updated by Pathoschild.
30+
Released 19 June 2021 for SMAPI 3.9.5 or later. Updated by Pathoschild.
2931

3032
* Fixed compatibility with [unofficial 64-bit mode](https://stardewvalleywiki.com/Modding:Migrate_to_64-bit_on_Windows).
3133
* Moved assets into the conventional `assets` folder.

AnotherHungerMod/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"Name": "Another Hunger Mod",
33
"Author": "spacechase0",
4-
"Version": "1.2.2",
5-
"MinimumApiVersion": "3.9.5",
4+
"Version": "1.3.0",
5+
"MinimumApiVersion": "3.12.6",
66
"Description": "Adds a hunger system to the game.",
77
"UniqueID": "spacechase0.AnotherHungerMod",
88
"EntryDll": "AnotherHungerMod.dll",

BugNet/BugNet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\SpaceShared\SpaceShared.projitems" Label="Shared" />
44

55
<PropertyGroup>
6-
<Version>1.3.1</Version>
6+
<Version>1.4.0</Version>
77
<TargetFramework>net452</TargetFramework>
88
</PropertyGroup>
99

BugNet/docs/release-notes.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
[← back to readme](README.md)
22

33
# Release notes
4-
## Upcoming release
4+
## 1.4.0
5+
Released 04 September 2021 for SMAPI 3.12.6 or later. Updated by Pathoschild.
6+
57
* Added [a mod-provided API to let other mods register critter instances](README.md#for-mod-authors).
68
* Fixed error items when not playing in English.
79
* Fixed error items when catching an unsupported critter. (Unsupported critters will be ignored instead.)
810
* Internal refactoring.
911
* Improved translations. Thanks to Evelyon (added Spanish) and mcBegins2Snow (added Chinese)!
1012

1113
## 1.3.1
12-
Released 10 July 2021 for Stardew Valley 1.5. Updated by Pathoschild.
14+
Released 10 July 2021 for SMAPI 3.9.5 or later. Updated by Pathoschild.
1315

1416
* Updated for Json Assets 1.7.8.
1517
* Updated translations. Thanks to martin66789 (updated Hungarian)!
1618

1719
## 1.3.0
18-
Released 19 June 2021 for Stardew Valley 1.5. Updated by Pathoschild.
20+
Released 19 June 2021 for SMAPI 3.9.5 or later. Updated by Pathoschild.
1921

2022
* No longer requires PyTK.¹
2123
* Fixed compatibility with [unofficial 64-bit mode](https://stardewvalleywiki.com/Modding:Migrate_to_64-bit_on_Windows).

BugNet/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"Name": "Bug Net",
33
"Author": "spacechase0, ParadigmNomad, Keychain",
4-
"Version": "1.3.1",
5-
"MinimumApiVersion": "3.9.5",
4+
"Version": "1.4.0",
5+
"MinimumApiVersion": "3.12.6",
66
"Description": "Catch bugs and stuff.",
77
"UniqueID": "spacechase0.BugNet",
88
"EntryDll": "BugNet.dll",

CapstoneProfessions/CapstoneProfessions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Import Project="..\SpaceSharedPatching\SpaceSharedPatching.projitems" Label="Shared" />
55

66
<PropertyGroup>
7-
<Version>1.0.4</Version>
7+
<Version>1.0.5</Version>
88
<TargetFramework>net452</TargetFramework>
99

1010
<EnableHarmony>true</EnableHarmony>

CapstoneProfessions/docs/release-notes.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
[← back to readme](README.md)
22

33
# Release notes
4-
## Upcoming release
4+
## 1.0.5
5+
Released 04 September 2021 for SMAPI 3.12.6 or later. Updated by Pathoschild.
6+
57
* Improved translations. Thanks to Evelyon (added Spanish) and mcBegins2Snow (added Chinese)!
68

79
## 1.0.4
8-
Released 01 August 2021 for SMAPI 3.12.0. Updated by Pathoschild.
10+
Released 01 August 2021 for SMAPI 3.12.0 or later. Updated by Pathoschild.
911

1012
* Updated for Harmony upgrade in SMAPI 3.12.0.
1113

1214
## 1.0.3
13-
Released 10 July 2021 for Stardew Valley 1.5. Updated by Pathoschild.
15+
Released 10 July 2021 for SMAPI 3.9.5 or later. Updated by Pathoschild.
1416

1517
* Updated translations. Thanks to martin66789 (added Hungarian)!
1618

1719
## 1.0.2
18-
Released 19 June 2021 for Stardew Valley 1.5. Updated by Pathoschild.
20+
Released 19 June 2021 for SMAPI 3.9.5 or later. Updated by Pathoschild.
1921

2022
* Fixed compatibility with [unofficial 64-bit mode](https://stardewvalleywiki.com/Modding:Migrate_to_64-bit_on_Windows).
2123
* Fixed manifest description and update keys (thanks to rikai!).

CapstoneProfessions/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"Name": "Capstone Professions",
33
"Author": "spacechase0",
4-
"Version": "1.0.4",
5-
"MinimumApiVersion": "3.12.0",
4+
"Version": "1.0.5",
5+
"MinimumApiVersion": "3.12.6",
66
"Description": "Once you max out all your skills, a new profession choice arrives...",
77
"UniqueID": "spacechase0.CapstoneProfessions",
88
"EntryDll": "CapstoneProfessions.dll",

CarryChest/CarryChest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Import Project="..\SpaceSharedPatching\SpaceSharedPatching.projitems" Label="Shared" />
55

66
<PropertyGroup>
7-
<Version>1.3.4</Version>
7+
<Version>1.3.5</Version>
88
<TargetFramework>net452</TargetFramework>
99

1010
<EnableHarmony>true</EnableHarmony>

0 commit comments

Comments
 (0)