Skip to content

Commit

Permalink
Version 3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rangi42 committed Dec 5, 2018
1 parent 118a653 commit ddb6ade
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A map and tileset editor for [pokecrystal](https://github.com/pret/pokecrystal),

Inspired by [crowdmap](https://github.com/yenatch/crowdmap), but implemented with C++ and [FLTK](http://www.fltk.org/), and focused on graphics instead of script editing.

Latest release: [**3.5.0**](https://github.com/Rangi42/polished-map/releases/tag/v3.5.0)
Latest release: [**3.5.1**](https://github.com/Rangi42/polished-map/releases/tag/v3.5.1)

Follow the steps in [INSTALL.md](INSTALL.md) to install the release copy of Polished Map, or the longer instructions to build it yourself from source.

Expand Down
2 changes: 1 addition & 1 deletion res/help.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h1>Polished Map</h1>
<li>Hold Ctrl and left-click to place four tiles at once: a contiguous 2x2 group, with the selected tile as the top-left.</li>
<li>Hold Ctrl+Shift and left-click to place sixteen tiles at once: a contiguous 4x4 group, with the selected tile as the top-left.</li>
</ul>
<p>For pokecrystal-based projects, you can also edit the collision values of the block's four quadrants. Old versions of pokecrystal that still use binary collision data are not supported, so you'll have to <a href="https://github.com/pret/pokecrystal/wiki/Convert-old-collision.bin-to-new-collision.asm-files">convert them</a>.</p>
<p>For pokecrystal-based projects, you can also edit the collision values of the block's four quadrants. Old-style collision.bin files and up-to-date collision.asm files are both supported.</p>
<hr>
<p>The tileset editor window has more mouse controls, similar to the map editor:</p>
<ul>
Expand Down
6 changes: 3 additions & 3 deletions src/version.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#ifndef VERSION_H
#define VERSION_H

#define PROGRAM_VERSION 3,5,0
#define PROGRAM_VERSION 3,5,1
#ifdef _DEBUG
#define PROGRAM_VERSION_STRING "3.5.0 [DEBUG]"
#define PROGRAM_VERSION_STRING "3.5.1 [DEBUG]"
#else
#define PROGRAM_VERSION_STRING "3.5.0"
#define PROGRAM_VERSION_STRING "3.5.1"
#endif

#define PROGRAM_NAME "Polished Map"
Expand Down

0 comments on commit ddb6ade

Please sign in to comment.