Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thespbgamer committed Aug 3, 2024
1 parent ba01461 commit bfe87ae
Show file tree
Hide file tree
Showing 11 changed files with 671 additions and 655 deletions.
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "C#: ZoomLevel Debug",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/ZoomLevel/ZoomLevel.csproj"
}
]
}
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Full Changelog

## [3.2.1] - 2024-08-03

### Changes

- Updated requirements

## [3.2.0] - 2024-03-25

### Changes

- Added Portuguese translations (thanks to [Maatsuki](https://www.nexusmods.com/stardewvalley/users/59340891))


## [3.1.0] - 2024-03-24

### Changes
Expand All @@ -20,15 +25,13 @@
- Compatible with 1.6.0
- Updated requirements


## [2.3.1] - 2023-11-12

### Improvements

- Code optimizations
- Updated requirements


## [2.3.0] - 2023-09-02

### Improvements
Expand Down Expand Up @@ -259,7 +262,8 @@

- Initial release

[Unreleased]: https://github.com/thespbgamer/ZoomLevel/compare/3.2.0...HEAD
[Unreleased]: https://github.com/thespbgamer/ZoomLevel/compare/3.2.1...HEAD
[3.2.1]: https://github.com/thespbgamer/ZoomLevel/releases/tag/3.2.1
[3.2.0]: https://github.com/thespbgamer/ZoomLevel/releases/tag/3.2.0
[3.1.0]: https://github.com/thespbgamer/ZoomLevel/releases/tag/3.1.0
[3.0.0]: https://github.com/thespbgamer/ZoomLevel/releases/tag/3.0.0
Expand Down
2 changes: 1 addition & 1 deletion ZoomLevel/CommonHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ internal static void RemoveObsoleteFiles(IMod mod, params string[] relativePaths
}
}
}
}
}
340 changes: 169 additions & 171 deletions ZoomLevel/GenericModConfigMenu.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ZoomLevel/ModConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ public sealed class ModConfig
public bool PresetOnLoadSaveFile { get; set; } = false;
public bool ZoomAndUIControlEverywhere { get; set; } = false;
}
}
}
4 changes: 2 additions & 2 deletions ZoomLevel/ModEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private void Events_GameLoop_GameLaunched(object? sender, GameLaunchedEventArgs

private void MakeMenusInGenericModMenu()
{
var genericModConfigMenuAPI = Helper.ModRegistry.GetApi<IGenericModConfigMenuAPI>("spacechase0.GenericModConfigMenu");
var genericModConfigMenuAPI = Helper.ModRegistry.GetApi<IGenericModConfigMenuApi>("spacechase0.GenericModConfigMenu");

if (genericModConfigMenuAPI != null)

Expand Down Expand Up @@ -510,4 +510,4 @@ private void ConsoleFunctionsList(string command, string[] args)
}
}
}
}
}
228 changes: 114 additions & 114 deletions ZoomLevel/i18n/default.json

Large diffs are not rendered by default.

228 changes: 114 additions & 114 deletions ZoomLevel/i18n/en.json

Large diffs are not rendered by default.

228 changes: 114 additions & 114 deletions ZoomLevel/i18n/pt.json

Large diffs are not rendered by default.

236 changes: 118 additions & 118 deletions ZoomLevel/i18n/zh.json

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions ZoomLevel/manifest.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"Name": "Zoom Level",
"Author": "thespbgamer",
"Version": "3.2.0",
"Description": "Change the Zoom and UI levels with a simple keybind. Now with camera position change!",
"UniqueID": "thespbgamer.ZoomLevel",
"EntryDll": "ZoomLevel.dll",
"MinimumApiVersion": "4.0.0",
"UpdateKeys": [ "GitHub:thespbgamer/ZoomLevel", "Nexus:7363", "CurseForge:714275" ],
"Dependencies": [
{
"UniqueID": "spacechase0.GenericModConfigMenu",
"MinimumVersion": "1.11.2",
"IsRequired": false
}
]
}
"Name": "Zoom Level",
"Author": "thespbgamer",
"Version": "3.2.1",
"Description": "Change the Zoom and UI levels with a simple keybind. Now with camera position change!",
"UniqueID": "thespbgamer.ZoomLevel",
"EntryDll": "ZoomLevel.dll",
"MinimumApiVersion": "4.0.8",
"UpdateKeys": ["GitHub:thespbgamer/ZoomLevel", "Nexus:7363", "CurseForge:714275"],
"Dependencies": [
{
"UniqueID": "spacechase0.GenericModConfigMenu",
"MinimumVersion": "1.12.0",
"IsRequired": false
}
]
}

0 comments on commit bfe87ae

Please sign in to comment.