Skip to content

Commit

Permalink
Release 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rsxrwscjpzdzwpxaujrr committed Jun 14, 2023
1 parent a7fd9f6 commit 6cf6195
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Simple 3D OpenGL first-person maze game.
You can download precompiled binaries:

##### Windows:
* [Mazemaze_0.2.2_Windows_64bit.zip](https://github.com/rsxrwscjpzdzwpxaujrr/mazemaze/releases/download/v0.2.2/Mazemaze_0.2.2_Windows_64bit.zip)
* [Mazemaze_0.2.2_Windows_32bit.zip](https://github.com/rsxrwscjpzdzwpxaujrr/mazemaze/releases/download/v0.2.2/Mazemaze_0.2.2_Windows_32bit.zip)
* [Mazemaze_0.2.2_Windows_64bit.zip](https://github.com/rsxrwscjpzdzwpxaujrr/mazemaze/releases/download/v0.2.3/Mazemaze_0.2.3_Windows_64bit.zip)
* [Mazemaze_0.2.2_Windows_32bit.zip](https://github.com/rsxrwscjpzdzwpxaujrr/mazemaze/releases/download/v0.2.3/Mazemaze_0.2.3_Windows_32bit.zip)

##### Ubuntu, Debian, etc:
* [mazemaze_0.2.2_amd64.deb](https://github.com/rsxrwscjpzdzwpxaujrr/mazemaze/releases/download/v0.2.2/mazemaze_0.2.2_amd64.deb)
* [mazemaze_0.2.2_amd64.deb](https://github.com/rsxrwscjpzdzwpxaujrr/mazemaze/releases/download/v0.2.3/mazemaze_0.2.3_amd64.deb)

##### Other GNU/Linux:
* [Mazemaze_0.2.2_Linux_64bit.tar.gz](https://github.com/rsxrwscjpzdzwpxaujrr/mazemaze/releases/download/v0.2.2/Mazemaze_0.2.2_Linux_64bit.tar.gz)
* [Mazemaze_0.2.2_Linux_64bit.tar.gz](https://github.com/rsxrwscjpzdzwpxaujrr/mazemaze/releases/download/v0.2.3/Mazemaze_0.2.3_Linux_64bit.tar.gz)
* Note that in this case, you need to install the dependencies for distribution by yourself (JsonCpp and SFML 2.5 and later)

You can check checksums of binary packages in [Travis CI logs](https://travis-ci.org/rsxrwscjpzdzwpxaujrr/mazemaze/builds).
Expand Down
2 changes: 1 addition & 1 deletion scripts/before_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -xeE
trap 'sleep 1' ERR

export VERSION=0.2.2
export VERSION=0.2.3

if [[ $ARCH = "x86_64" ]]
then
Expand Down
4 changes: 2 additions & 2 deletions src/GraphicEngine.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2020, Мира Странная <rsxrwscjpzdzwpxaujrr@yahoo.com>
* Copyright (c) 2018-2023, Мира Странная <rsxrwscjpzdzwpxaujrr@yahoo.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -65,7 +65,7 @@ GraphicEngine::openWindow() {

void
GraphicEngine::openWindow(sf::VideoMode videoMode, bool fullscreen) {
const sf::String windowName = L"Mazemaze 0.2.2";
const sf::String windowName = L"Mazemaze 0.2.3";
sf::Uint32 style;

if (fullscreen)
Expand Down

0 comments on commit 6cf6195

Please sign in to comment.