From f87d426b8d2d21a107327ff3056f66204cdb0c12 Mon Sep 17 00:00:00 2001 From: devinacker Date: Sun, 22 Mar 2015 18:30:50 -0400 Subject: [PATCH] v1.13 --- CHANGES.txt | 10 ++++++++++ COPYING.txt | 2 +- docs/index.htm | 11 ++++++----- src/version.h | 6 +++--- 4 files changed, 20 insertions(+), 9 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index fed25f1..0a58584 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/COPYING.txt b/COPYING.txt index 1146740..c3e38a1 100644 --- a/COPYING.txt +++ b/COPYING.txt @@ -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 diff --git a/docs/index.htm b/docs/index.htm index efe3df6..780cbc3 100644 --- a/docs/index.htm +++ b/docs/index.htm @@ -10,7 +10,7 @@

Kirby's Dream Course Editor

-version 1.12 +version 1.13

@@ -84,7 +84,7 @@

Terrain

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.

Height

-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 properties 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 properties section for more details).

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 down to 1 unit lower.

@@ -163,7 +163,7 @@

Level properties

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.

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

(top) @@ -181,7 +181,8 @@

Credits

  • Graham for his 65xx series reference
  • Kles for extensive testing, suggestions, and some cool example levels
  • Mark James (famfamfam) for the Silk Icons set, used for menu and toolbar graphics
  • -
  • Raccoon Sam for build assistance and testing on OS X
  • +
  • Raccoon Sam and ConnorRK for build assistance and testing on OS X
  • +
  • /r/KDCGameGrumps for much more testing, feedback, and general enjoyment
  • Everyone else who has downloaded and supported the development of this program in any way
  • @@ -232,6 +233,6 @@

    Contact

    (top)

    -copyright 2013-2014 Devin "Revenant" Acker - "life is but a dream" +copyright 2013-2015 Devin "Revenant" Acker - "life is but a dream" \ No newline at end of file diff --git a/src/version.h b/src/version.h index a187f88..b41f37a 100644 --- a/src/version.h +++ b/src/version.h @@ -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"