-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Some manifest changes - Stardew Notification bump to 1.8.9 (see CHANGELOG) - Stardew Notification now includes German Translation
- Loading branch information
Showing
12 changed files
with
203 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
StardewNotification/Integrations/GenericModConfigMenuAPI.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using Microsoft.Xna.Framework; | ||
using Microsoft.Xna.Framework.Graphics; | ||
using StardewModdingAPI; | ||
using System; | ||
|
||
namespace StardewNotification.Integrations | ||
{ | ||
public interface GenericModConfigMenuAPI | ||
{ | ||
void RegisterModConfig(IManifest mod, Action revertToDefault, Action saveToFile); | ||
|
||
void RegisterSimpleOption(IManifest mod, string optionName, string optionDesc, Func<bool> optionGet, Action<bool> optionSet); | ||
void RegisterSimpleOption(IManifest mod, string optionName, string optionDesc, Func<int> optionGet, Action<int> optionSet); | ||
void RegisterSimpleOption(IManifest mod, string optionName, string optionDesc, Func<float> optionGet, Action<float> optionSet); | ||
void RegisterSimpleOption(IManifest mod, string optionName, string optionDesc, Func<string> optionGet, Action<string> optionSet); | ||
void RegisterSimpleOption(IManifest mod, string optionName, string optionDesc, Func<SButton> optionGet, Action<SButton> optionSet); | ||
|
||
void RegisterClampedOption(IManifest mod, string optionName, string optionDesc, Func<int> optionGet, Action<int> optionSet, int min, int max); | ||
void RegisterClampedOption(IManifest mod, string optionName, string optionDesc, Func<float> optionGet, Action<float> optionSet, float min, float max); | ||
|
||
void RegisterChoiceOption(IManifest mod, string optionName, string optionDesc, Func<string> optionGet, Action<string> optionSet, string[] choices); | ||
|
||
void RegisterComplexOption(IManifest mod, string optionName, string optionDesc, | ||
Func<Vector2, object, object> widgetUpdate, | ||
Func<SpriteBatch, Vector2, object, object> widgetDraw, | ||
Action<object> onSave); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
// Notification messages | ||
"travelingMerchant": "Der reisende Händler ist heute da ", | ||
"queenSauce": "Heute kommt 'Die Königin der Soßen'", | ||
"checkLiving": "Heute kommt 'Leben vom Land'!", | ||
"luckyDay": "Glückstag!", | ||
"unluckyDay": "Unglückstag!", | ||
|
||
// Festivals | ||
"fMsg": "Heute: {{fest}}!", | ||
"festival": "Fest", | ||
"EggFestival": "Eierfest", | ||
"FlowerDance": "Blumentanz", | ||
"Luau": "Luau", | ||
"MoonlightJellies": "Tanz der Mondlichtquallen", | ||
"ValleyFair": "Sternentautaler Volksfest", | ||
"SpiritsEve": "Geisternacht", | ||
"IceFestival": "Fest des Eises", | ||
"WinterStar": "Fest des Wintersterns", | ||
"NightMarket": "Nachtmarkt", | ||
"SecretSantaReminder": "{{charName}} ist dein geheimer Freund", | ||
|
||
"Salmonberry": "Lachsbeeren-Saison", | ||
"Seashells": "Muscheln am Strand", | ||
"Blackberry": "Brombeer-Saison", | ||
|
||
// Weathers | ||
"weather-rain": "Regen", | ||
"weather-sunny": "Sonne", | ||
"weather-tstorm": "Gewitter", | ||
"weather-snow": "Schnee", | ||
"weather-wind": "Wind", | ||
"weather-festival": "ein Fest", | ||
"weather-wedding": "eine Hochzeit", | ||
|
||
// Locations | ||
"CaveMushroom": "Höhlenpilze zur Erne bereit", | ||
"CaveFruit": "Höhlenfrüchte zur Erne bereit", | ||
|
||
"birthday": "{{charName}}s Geburtstag!", | ||
"weather": "Morgen gibt es {{weather}}.", | ||
"birthdayReminder": "Vergiss nicht {{charName}} ein Geburtstagsgeschenk zu geben!", | ||
"toolPickup": "{{toolName}} zur Abholung bereit", | ||
"springOnion": "{{count}} Frühlingszwiebeln wachsen im Wald", | ||
"readyHarvest": "{{cropName}} zur Ernte bereit", | ||
"greenhouse_crops": "Ernte im Gewächshaus bereit", | ||
"autoGrabber": "Automatischer Greifer bereit zur Abholung", | ||
"hayMessage": "Die Silos melden {{hayAmt}} Heu", | ||
"noHayMessage": "Kein Heu in den Silos!", | ||
"FishPond": "Fischteiche zur Ernte bereit" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"Name": "Stardew Notification", | ||
"Author": "monopandora, maintained by Sakorona", | ||
"Version": "1.8.8", | ||
"Version": "1.8.9", | ||
"Description": "Daily Notification mod for Stardew Valley", | ||
"UniqueID": "mondopandora.stardewnotification", | ||
"EntryDll": "StardewNotification.dll", | ||
"MinimumApiVersion": "3.0", | ||
"MinimumApiVersion": "3.13", | ||
"UpdateKeys": [ "Nexus:4713", "ModDrop:664154" ] | ||
} |
Binary file not shown.
Binary file not shown.