diff --git a/README.md b/README.md index 13f6e48b..4b20a2b5 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ You require the following Haxe libraries: - heaps: The specific version located [here](https://github.com/RandomityGuy/heaps) - hlsdl (Obtain the haxelib version of hlsdl, then patch it with these files [here](https://github.com/RandomityGuy/hashlink/tree/master/libs/sdl)) (Hashlink/C native target) - stb_ogg_sound (JS/Browser target) +- zip 1.1.0 (JS/Browser target) ## Hashlink/Native The version of hashlink to be compiled is located [here](https://github.com/RandomityGuy/hashlink). diff --git a/src/gui/MainMenuGui.hx b/src/gui/MainMenuGui.hx index 0613f7df..e007cce5 100644 --- a/src/gui/MainMenuGui.hx +++ b/src/gui/MainMenuGui.hx @@ -27,7 +27,7 @@ class MainMenuGui extends GuiImage { versionText.vertSizing = Top; versionText.position = new Vector(289, 457); versionText.extent = new Vector(62, 18); - versionText.text.text = "1.1.1"; + versionText.text.text = "1.1.2"; this.addChild(versionText); var homebase = new GuiImage(ResourceLoader.getResource("data/ui/home/homegui.png", ResourceLoader.getImage, this.imageResources).toTile());