Skip to content

Commit

Permalink
Bump our version to 1.4; depend on Starling 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tconkling committed Apr 26, 2015
1 parent 1888706 commit 74a9500
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Flump: Changelog
================

version 1.4 - 2015-04-25
------------------------

Runtime:
- License changed to ever-so-slightly more permissive MIT (from BSD)

Exporter:
- added: "Combine" project option. This lets you combine a project's output into a single texture atlas/JSON combo, which is especially useful for mobile games, where avoiding GPU state changes can result in much better performance. (Thanks, Nathan Curtis.)

* added: Mac command line exporting. There's a bash script in the Exporter's rsrc/ directory that launches Flump and exports the given .flump project, so Flump can be part of your automated build process. (Thanks, Nathan Curtis.)

* added: The "additionalScaleFactors" project setting is replaced with "scaleFactors." This allows you to, e.g., just export @2X textures without getting 1X textures as well. (Thanks, Nathan Curtis.)

* updated: Use the MaxRect algorithm for texture packing. This speeds up the export process a bit. (Thanks, matyasatfp.)


version 1.3 - 2014-02-08
------------------------

Expand Down
4 changes: 2 additions & 2 deletions demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<groupId>com.threerings.flump</groupId>
<artifactId>flump-demo</artifactId>
<packaging>swf</packaging>
<version>1.4-SNAPSHOT</version>
<version>1.4</version>
<repositories/>
<dependencies>
<dependency>
<groupId>com.threerings.flump</groupId>
<artifactId>flump-runtime</artifactId>
<version>1.4-SNAPSHOT</version>
<version>1.4</version>
<type>swc</type>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion exporter/etc/airdesc.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://ns.adobe.com/air/application/3.9">
<id>flump</id>
<versionNumber>1.3</versionNumber>
<versionNumber>1.4</versionNumber>
<filename>Flump</filename>
<initialWindow>
<renderMode>direct</renderMode>
Expand Down
4 changes: 2 additions & 2 deletions exporter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.threerings.flump</groupId>
<artifactId>flump-exporter</artifactId>
<packaging>swc</packaging>
<version>1.4-SNAPSHOT</version>
<version>1.4</version>
<repositories>
<repository>
<id>tconkling</id>
Expand All @@ -15,7 +15,7 @@
<dependency>
<groupId>com.threerings.flump</groupId>
<artifactId>flump-runtime</artifactId>
<version>1.4-SNAPSHOT</version>
<version>1.4</version>
<type>swc</type>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.threerings.flump</groupId>
<artifactId>flump-runtime</artifactId>
<packaging>swc</packaging>
<version>1.4-SNAPSHOT</version>
<version>1.4</version>
<repositories>
<repository>
<id>tconkling</id>
Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>com.gamua</groupId>
<artifactId>starling-framework</artifactId>
<version>1.4.1</version>
<version>1.6</version>
<type>swc</type>
</dependency>
<dependency>
Expand Down

0 comments on commit 74a9500

Please sign in to comment.