Skip to content

Commit 94d7fe8

Browse files
committed
Version 2.0.0
1 parent b6942dc commit 94d7fe8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ A tilemap editor for Game Boy, Color, and Advance projects. Specifically meant t
44

55
Inspired by tools like [Tilemap Creator](https://github.com/erandis-vol/Tilemap-Creator), [NTME](https://www.pokecommunity.com/showthread.php?t=149454), [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 multi-platform tilemaps as well as Pokémon-specific formats.
66

7-
Latest release: [**1.1.1**](https://github.com/Rangi42/tilemap-studio/releases/tag/v1.1.1)
7+
Latest release: [**2.0.0**](https://github.com/Rangi42/tilemap-studio/releases/tag/v2.0.0)
88

99
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.
1010

11-
The [example/](example/) directory contains different kinds of tilemaps and tileset graphics. **pokered/town_map.rle** is an RBY Town Map; **pokecrystal/\*.bin** are GSC Town Maps; **polishedcrystal/\*.bin** are PC Town Maps; **pokecrystal/\*.tilemap.rle** are Pokégear cards; **polishedcrystal/sgb_border.map** is tiles + attributes; and **prism/*.bin** are plain tiles.
11+
The [example/](example/) directory contains different formats of tilemaps and tileset graphics. In particular, [pokecrystal/town_map_pokegear.png](example/pokecrystal/town_map_pokegear.png) is a colored-in combination of tileset graphics from [pokecrystal](https://github.com/pret/pokecrystal), useful for viewing any Town Map in a project based on it.
1212

1313
More information is at the [Skeetendo Forums](https://hax.iimarckus.org/topic/7691/). If you have questions or comments, please go there.
1414

screenshot.png

-62 Bytes
Loading

src/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#ifndef VERSION_H
22
#define VERSION_H
33

4-
#define PROGRAM_VERSION 1,1,1
4+
#define PROGRAM_VERSION 2,0,0
55
#ifdef _DEBUG
6-
#define PROGRAM_VERSION_STRING "1.1.1 [DEBUG]"
6+
#define PROGRAM_VERSION_STRING "2.0.0 [DEBUG]"
77
#else
8-
#define PROGRAM_VERSION_STRING "1.1.1"
8+
#define PROGRAM_VERSION_STRING "2.0.0"
99
#endif
1010

1111
#ifdef _WIN32

0 commit comments

Comments
 (0)