[tiled] r672 - in trunk: . src/tiled/mapeditor/dialogs
svn@biggeruniverse.com
svn at biggeruniverse.com
Thu Jun 22 18:05:44 PDT 2006
Author: bjorn
Date: 2006-06-22 20:05:43 -0500 (Thu, 22 Jun 2006)
New Revision: 672
Added:
trunk/TODO
Modified:
trunk/CHANGES
trunk/build.xml
trunk/src/tiled/mapeditor/dialogs/BrushDialog.java
Log:
Preparing for the 0.6.0 final release. Custom tab in Brush dialog disabled.
Modified: trunk/CHANGES
===================================================================
--- trunk/CHANGES 2006-06-23 00:09:36 UTC (rev 671)
+++ trunk/CHANGES 2006-06-23 01:05:43 UTC (rev 672)
@@ -1,19 +1,5 @@
-UNDONE
-+ Fixed memory problems when loading several maps with many tilesets in a row
-+ Added ability to select multiple layers from layer table
-+ Added preview of new tileset when creating a tileset
-+ Added the Shifted view, which emulates several tiling configurations
-+ Added "stamp" tool
-+ Added a navigation minimap
-+ Added full support for animated tiles
-+ Added palette brush
-+ Added support for animated tiles
-+ Added additional "tile cutters"
-+ Rewrote main mapeditor code
-+ Moved actions out of MapEditor, and created a package for them
+0.6.0 - June 23rd, 2006
-0.6.0 - June X, 2006
-
* Added internationalization, with translations to Dutch, German, Italian,
French and Spanish.
* Added stamp function for pencil: right-click, drag now creates a stamp
@@ -30,17 +16,18 @@
to something other than the tile height used by the map
* Fixed a bug when exporting a tileset with an external image
* Fixed two cases of hanging when using the fill tool
-* Fixed tile palette bug of not accounting for gaps in tile ids (old bug)
+* Fixed tile palette bug of not accounting for gaps in tile ids
* Fixed tile palette bug of displaying multiple tilesets over eachother
* Fixed bug of adding a new tile even if cancelling out of new tile dialog
* Fixed NullPointerException when saving a map with no extension
* Fixed the zooming so that it keeps the center in place
* Fixed exiting even when a request to save the changes failed
* Fixed layer merging so that undo/redo of operation is functional
-* Fixed resetting of selected tileset in tile palette on layer changes
+* Fixed resetting of selected tileset in tile palette on layer rearrangements
* Fixed saving of tile properties when using a tileset image
* Fixed loading of invisible layers
* Fixed saving of tile spacing property for tileset images
+* Fixed configuring, saving and loading of maps using embedded images
* Rewrote configuration based on the Preferences class, no more tiled.conf
* Cleaned up TileSet (removed checksumming and rotation/orientation code)
* Removed experimental hexagonal mapview from new map dialog
Added: trunk/TODO
===================================================================
--- trunk/TODO 2006-06-23 00:09:36 UTC (rev 671)
+++ trunk/TODO 2006-06-23 01:05:43 UTC (rev 672)
@@ -0,0 +1,50 @@
+ROADMAP TO FUTURE RELEASES
+
+0.7.0
+* Remove copy constructors in favour of clone method
+* Add import/export of options
+* Allow embedding of tile palette beneath the map view
+* Replace tile button with a brush preview beneath the layer table
+* Allow creation of stamp brush from the tile palette
+* Add support for tile instance properties (see Christian's patch)
+
+0.8.0
+* Set up a layer->map->mapview changes event trail to automatically handle
+ repainting changes in all views on the map.
+* Add minimap above layer table
+* Pretty brush preview
+
+0.9.0
+* Introduce concept of a project
+* Add concept of 'textures' and automatic texture transitions using smart brush
+* Store stamp brushes and texture transition definitions to project
+
+1.0.0
+* Add support for arbitrary objects and zones placement
+
+GENERAL TODO ITEMS
+
+* Fix memory problems when loading several maps with many tilesets in a row
+* Add ability to select multiple layers from layer table
+* Add preview of new tileset when creating a tileset
+* Add the Shifted view, which emulates several tiling configurations
+* Add "stamp" tool
+* Add a navigation minimap
+* Add full support for animated tiles
+* Add palette brush
+* Add support for animated tiles
+* Add additional "tile cutters"
+* Rewrite main mapeditor code
+* Move actions out of MapEditor, and created a package for them
+* Reintroduce usage counts in tileset manager without performance issues
+* Add convenient map resizing preview widget
+* Turning on/off layer visibility shouldn't select them
+* Think more about panel docking station
+* Allow mapviews to have parameters
+* Start open image in new tileset dialog at map location when possible.
+* Add offset settings to New Tileset dialog and tileset xml tag
+* Look into making selections more efficient by not using a tile layer
+* See about using real numbers for tile positioning with isometric
+* Look into color button on New Tileset dialog
+* Try to generalize color button for setting grid and background color
+ settings. Change Grid to Display tab with Grid and Colors groups.
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2006-06-23 00:09:36 UTC (rev 671)
+++ trunk/build.xml 2006-06-23 01:05:43 UTC (rev 672)
@@ -21,7 +21,7 @@
<mkdir dir="releases"/>
<zip destfile="releases/tiled-${version}-bin.zip">
<zipfileset prefix="tiled-${version}" dir="."
- includes="README COPYING INSTALL CHANGES"/>
+ includes="README COPYING INSTALL CHANGES TODO"/>
<zipfileset fullpath="tiled-${version}/tiled.jar" dir="dist"
includes="tiled.jar"/>
<zipfileset prefix="tiled-${version}/plugins" dir="dist/plugins"/>
@@ -35,7 +35,7 @@
<zipfileset prefix="tiled-${version}/src" dir="src"/>
<zipfileset prefix="tiled-${version}/plugins" dir="plugins"/>
<zipfileset prefix="tiled-${version}" dir="."
- includes="README COPYING CHANGES build.xml MANIFEST.MF"/>
+ includes="README COPYING CHANGES TODO build.xml MANIFEST.MF"/>
<zipfileset prefix="tiled-${version}/examples" dir="examples"/>
</zip>
</target>
Modified: trunk/src/tiled/mapeditor/dialogs/BrushDialog.java
===================================================================
--- trunk/src/tiled/mapeditor/dialogs/BrushDialog.java 2006-06-23 00:09:36 UTC (rev 671)
+++ trunk/src/tiled/mapeditor/dialogs/BrushDialog.java 2006-06-23 01:05:43 UTC (rev 672)
@@ -201,6 +201,7 @@
JTabbedPane tabs = new JTabbedPane(JTabbedPane.TOP);
tabs.addTab(SHAPE_TAB, createShapePanel());
tabs.addTab(CUSTOM_TAB, createCustomPanel());
+ tabs.setEnabledAt(1, false);
okButton = new JButton(OK_BUTTON);
bApply = new JButton(APPLY_BUTTON);
More information about the tiled-commit
mailing list