From 0ffe6e1e616b8fc61258215046acb0a2f1799f14 Mon Sep 17 00:00:00 2001 From: Rangi Date: Sun, 8 Sep 2019 16:39:09 -0400 Subject: [PATCH] Version 1.1.1 --- README.md | 2 +- src/version.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7a39792..04fa1fa 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A tilemap editor for [pokecrystal](https://github.com/pret/pokecrystal), [pokere Inspired by [GSC Town Map Editor](https://hax.iimarckus.org/topic/97/) and [Karteneditor](https://i.imgur.com/70jDfdM.png), but implemented with C++ and [FLTK](http://www.fltk.org/), and with support for tilemaps beyond the Town Map. -Latest release: [**1.1.0**](https://github.com/Rangi42/tilemap-studio/releases/tag/v1.1.0) +Latest release: [**1.1.1**](https://github.com/Rangi42/tilemap-studio/releases/tag/v1.1.1) Follow the steps in [INSTALL.md](INSTALL.md) to install the release copy of Tilemap Studio, or the longer instructions to build it yourself from source. diff --git a/src/version.h b/src/version.h index 27a6661..93cc12f 100644 --- a/src/version.h +++ b/src/version.h @@ -1,11 +1,11 @@ #ifndef VERSION_H #define VERSION_H -#define PROGRAM_VERSION 1,1,0 +#define PROGRAM_VERSION 1,1,1 #ifdef _DEBUG -#define PROGRAM_VERSION_STRING "1.1.0 [DEBUG]" +#define PROGRAM_VERSION_STRING "1.1.1 [DEBUG]" #else -#define PROGRAM_VERSION_STRING "1.1.0" +#define PROGRAM_VERSION_STRING "1.1.1" #endif #ifdef _WIN32