diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json new file mode 100644 index 0000000..7352bab --- /dev/null +++ b/.config/dotnet-tools.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "gamebundle": { + "version": "1.3.1", + "commands": [ + "gamebundle" + ] + } + } +} \ No newline at end of file diff --git a/GreatSpringGameJam/GameImpl.cs b/GreatSpringGameJam/GameImpl.cs index a2d423c..e078337 100644 --- a/GreatSpringGameJam/GameImpl.cs +++ b/GreatSpringGameJam/GameImpl.cs @@ -95,7 +95,9 @@ namespace GreatSpringGameJam { } }); buttons.AddChild(new VerticalSpace(10)); - buttons.AddChild(new Button(Anchor.AutoLeft, new Vector2(245, 50), "View on itch")); + buttons.AddChild(new Button(Anchor.AutoLeft, new Vector2(245, 50), "View on itch") { + OnPressed = e => Process.Start(new ProcessStartInfo("https://ellpeck.itch.io/a-breath-of-spring-air") {UseShellExecute = true}) + }); buttons.AddChild(new Button(Anchor.AutoInlineIgnoreOverflow, new Vector2(245, 50), "View source") { PositionOffset = new Vector2(10, 0), OnPressed = e => Process.Start(new ProcessStartInfo("https://git.ellpeck.de/Ellpeck/GreatSpringGameJam") {UseShellExecute = true}) diff --git a/GreatSpringGameJam/GreatSpringGameJam.csproj b/GreatSpringGameJam/GreatSpringGameJam.csproj index 0975540..ce2dcb9 100644 --- a/GreatSpringGameJam/GreatSpringGameJam.csproj +++ b/GreatSpringGameJam/GreatSpringGameJam.csproj @@ -1,7 +1,7 @@  - Exe + WinExe net5.0 false false diff --git a/Media/Banner.png b/Media/Banner.png new file mode 100644 index 0000000..ea10812 Binary files /dev/null and b/Media/Banner.png differ diff --git a/Media/Cover.png b/Media/Cover.png new file mode 100644 index 0000000..857c3e1 Binary files /dev/null and b/Media/Cover.png differ diff --git a/Media/Overworld.png b/Media/Overworld.png new file mode 100644 index 0000000..a0fec3c Binary files /dev/null and b/Media/Overworld.png differ diff --git a/Media/SnowBlower.png b/Media/SnowBlower.png new file mode 100644 index 0000000..46dc163 Binary files /dev/null and b/Media/SnowBlower.png differ diff --git a/Media/Title.png b/Media/Title.png new file mode 100644 index 0000000..b7a371a Binary files /dev/null and b/Media/Title.png differ diff --git a/Media/WateringCan.png b/Media/WateringCan.png new file mode 100644 index 0000000..8bcc96e Binary files /dev/null and b/Media/WateringCan.png differ diff --git a/Publish.bat b/Publish.bat new file mode 100644 index 0000000..0494a0a --- /dev/null +++ b/Publish.bat @@ -0,0 +1,6 @@ +cd GreatSpringGameJam +dotnet gamebundle -wlm + +butler push bin/Bundled/win ellpeck/a-breath-of-spring-air:win --fix-permissions +butler push bin/Bundled/linux ellpeck/a-breath-of-spring-air:linux --fix-permissions +butler push bin/Bundled/mac ellpeck/a-breath-of-spring-air:mac --fix-permissions \ No newline at end of file