Skip to content

Commit

Permalink
Merge pull request #27 from vozdeckyl/dev-new-release
Browse files Browse the repository at this point in the history
Dev new release
  • Loading branch information
vozdeckyl authored May 12, 2024
2 parents 0d788a5 + 227aba4 commit 4558146
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.16)

# set the project name
project(Snake VERSION 0.4)
project(Snake VERSION 1.0)

#set the DEBUG flag if necessary
if(CMAKE_BUILD_TYPE)
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: shellsnake # you probably want to 'snapcraft register <name>'
base: core20 # the base snap is the execution environment for this snap
version: '0.4' # just for humans, typically '1.2+git' or '1.3.2'
version: '1.0' # just for humans, typically '1.2+git' or '1.3.2'
summary: a simple game # 79 char long summary
description: |
A simple terminal based game for Linux.
Expand Down
2 changes: 2 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ void gameSettings()
settings.addElement(settingsMenu, 5, 20);
settings.enableKillByKeyQ();

settings.addElement(new Label("Press Q to save & quit"), settings.getHeight() - 1, 1);

settings.run();
}

Expand Down

0 comments on commit 4558146

Please sign in to comment.