Skip to content

Commit

Permalink
Release 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GreffMASTER committed Nov 8, 2022
1 parent a508ab5 commit 3143c21
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ To start a new game, press the `Game` button in the top-left corner of the windo
To reset the current game, press the button with the face on it in the middle of the window.
To see the highscore table, press the `Scores` button next to the `Game` button.

## How to install
Go to the [latest release](https://github.com/GreffMASTER/GMSweeper/releases/latest) and download the version for your platform.
Alternatively you can download the .love file and run it in the Löve2d executable.
To do that, you need to download the [Löve2d framework](https://love2d.org/) and install it on your system.
After installing it, just drag the .love file onto the executable.

## Command line parameters
You can run the game directly in the custom difficulty by specifying the width, height and mine count in the command line parameters.
If only parameter is provided, the width and height of the grid will equal to that parameter.
Expand Down
2 changes: 1 addition & 1 deletion main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ local sweepstyle = gmui.Style:new({ -- custom style for the grid buttons

local perf_win = nil
-- Global variables
_Version = "RC 1"
_Version = "1.0"
_GridW = 10
_GridH = 10
_Mines = 10
Expand Down

0 comments on commit 3143c21

Please sign in to comment.