Skip to content

Commit

Permalink
v1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
devinacker committed Mar 22, 2015
1 parent 01dc131 commit f87d426
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
v1.13 [2015-03-22]
Much faster multithreaded saving
Added loading/saving of individual level files
Increased maximum tile height from 31 to 49 and max level width/length to 100
(so you can waste more tile memory. Note that 2D and 3D map area limits are unchanged)
Some more build/deployment improvements for OS X (thanks ConnorRK)
Settings now saved in system-standard paths (%AppData%, etc.)
Fixed buggy repainting of 2D map when scrolling horizontally
Fixed possible bad graphics pointers when saving European ROMs

v1.12 [2014-06-12]
Fixed the rewritten 2D display exhibiting some visual strangeness when resizing levels

Expand Down
2 changes: 1 addition & 1 deletion COPYING.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013 Devin Acker
Copyright (c) 2013-2015 Devin Acker

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
11 changes: 6 additions & 5 deletions docs/index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<body>

<h1>Kirby's Dream Course Editor</h1>
version 1.12
version 1.13
<p>

<table><tr><td>
Expand Down Expand Up @@ -84,7 +84,7 @@ <h2>Terrain</h2>
If you are editing a range of tiles with multiple terrain types, the dropdown will default to a value of "(multiple)". This option causes each tile's existing terrain value to remain the same.

<h2>Height</h2>
The height slider sets the height of the selected tile or tiles. Possible values range from 0 to 64 - this maximum value is not a limitation of the game, but is imposed by the editor to prevent isometric tilemaps from becoming too large (see the <a href="#properties">properties</a> section for more details).
The height slider sets the height of the selected tile or tiles. Possible values range from 0 to 49 - this maximum value is not a limitation of the game, but is imposed by the editor to prevent isometric tilemaps from becoming too large (see the <a href="#properties">properties</a> section for more details).
<p>
If you are editing tiles which use one of the sloped terrain types, the height value must be at least 1. This is because all of the slope types start at the given height value and slope <em>down</em> to 1 unit lower.
<p>
Expand Down Expand Up @@ -163,7 +163,7 @@ <h2>Level properties</h2>
<p>
The level length and width boxes allow you to resize the level (length = north to south, width = east to west). Due to memory restrictions, the two-dimensional area of a level cannot be greater than 2,048; all of the original levels are much smaller in area than this, so this limitation is not likely to be much of a problem.
<p>
Note that the isometric tilemaps are also limited in size; their size is determined by the length, width, and height of the level, as well as how much (or how little) of the level is empty space. Once again, the limit here is much higher than what any of the original levels reach, so this should only present a problem if you are making unreasonably large levels that come close to the length/width limits. In the event that this actually happens, you will be presented with a warning when saving your ROM, and part of your level will not be visible in game.
Note that the isometric tilemaps are also limited in size; their size is determined by the length, width, and height of the level, as well as how much (or how little) of the level is empty space. Once again, the limit here is much higher than what any of the original levels reach, so this should only present a problem if you are making unusually large levels that come close to the length/width limits. In the event that this actually happens, you will be presented with a warning when saving your ROM, and part of your level will not be visible in game.
<p>
<span class="smallLink">(<a href="#top">top</a>)</span>

Expand All @@ -181,7 +181,8 @@ <h1>Credits</h1>
<li><b>Graham</b> for his <a href="http://oxyron.de/html/opcodes.html" target="_blank">65xx series reference</a></li>
<li><b>Kles</b> for extensive testing, suggestions, and some cool example levels</li>
<li><b>Mark James</b> (<a href="http://www.famfamfam.com/" target="_blank">famfamfam</a>) for the Silk Icons set, used for menu and toolbar graphics</li>
<li><b>Raccoon Sam</b> for build assistance and testing on OS X</li>
<li><b>Raccoon Sam</b> and <b>ConnorRK</b> for build assistance and testing on OS X</li>
<li><b><a href="http://www.reddit.com/r/KDCGameGrumps">/r/KDCGameGrumps</a></b> for much more testing, feedback, and general enjoyment</li>
<li>Everyone else who has downloaded and supported the development of this program in any way</li>
</ul>
<p>
Expand Down Expand Up @@ -232,6 +233,6 @@ <h1>Contact</h1>
<span class="smallLink">(<a href="#top">top</a>)</span>

<p>
copyright 2013-2014 Devin "Revenant" Acker - "life is but a dream"
copyright 2013-2015 Devin "Revenant" Acker - "life is but a dream"
</body>
</html>
6 changes: 3 additions & 3 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

#define INFO_TITLE "Kirby's Dream Course Editor"
#define INFO_MYNAME "Devin Acker (Revenant)\0"
#define INFO_LEGAL "Copyright 2013 by Revenant\0"
#define INFO_LEGAL "Copyright 2013-2015 by Revenant\0"

#define INFO_DESC "Kirby's Dream Course editor\0"
#define INFO_VERS "1.12\0"
#define INFO_VNUM 1, 12, 0, 0
#define INFO_VERS "1.13\0"
#define INFO_VNUM 1, 13, 0, 0
#define INFO_NAME "KDCEditor\0"
#define INFO_FILE "KDCEditor.exe\0"

Expand Down

0 comments on commit f87d426

Please sign in to comment.