Skip to content

Commit

Permalink
Prep for v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Jan 26, 2021
1 parent ce8fc64 commit a3dde92
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
11 changes: 11 additions & 0 deletions src/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
0.5.0
-----

* Significant code refactor and fixes by @Ali1234
* Metadata dump fixed to support RL images
* Bugfix to incorrect transparent colour being selected
* Configurable empty_tile for .tmx maps - specifies a tile ID for unset/empty tiles to be remapped to
* Optional struct output type for .tmx maps with width, height layer count and empty_tile
* .tmx map layers are now sorted
* Should not break compatibility, but use 0.4.x if you don't need the new features

0.4.0
-----

Expand Down
11 changes: 11 additions & 0 deletions src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,17 @@ Supported formats:

# Changelog

0.5.0
-----

* Significant code refactor and fixes by @Ali1234
* Metadata dump fixed to support RL images
* Bugfix to incorrect transparent colour being selected
* Configurable empty_tile for .tmx maps - specifies a tile ID for unset/empty tiles to be remapped to
* Optional struct output type for .tmx maps with width, height layer count and empty_tile
* .tmx map layers are now sorted
* Should not break compatibility, but use 0.4.x if you don't need the new features

0.4.0
-----

Expand Down
2 changes: 1 addition & 1 deletion src/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
[metadata]
name = 32blit
version = 0.4.0
version = 0.5.0
author = Philip Howard
author_email = [email protected]
description = 32Blit asset preparation and upload tools
Expand Down
2 changes: 1 addition & 1 deletion src/ttblit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

__version__ = '0.4.0'
__version__ = '0.5.0'

import argparse
import logging
Expand Down

0 comments on commit a3dde92

Please sign in to comment.