Skip to content

Commit

Permalink
1.7.2: Fixes a problem with installation in CS6
Browse files Browse the repository at this point in the history
  • Loading branch information
bomberstudios committed Sep 29, 2012
1 parent ecb906a commit 0419bca
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
13 changes: 6 additions & 7 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Orange Commands v1.7.1 for Adobe Fireworks
# Orange Commands v1.7.2 for Adobe Fireworks

Orange Commands is a collection of scripts for Adobe Fireworks that make the life of a web designer easier (or at least allow him/her to work faster :)


## Installation

1. Download:
- [Orange Commands 1.7.1 for Fireworks CS3](http://orangecommands.com/dl/OrangeCommands_1.7.1_CS3.zip)
- [Orange Commands 1.7.1 for Fireworks CS4](http://orangecommands.com/dl/OrangeCommands_1.7.1_CS4.zip)
- [Orange Commands 1.7.1 for Fireworks CS5](http://orangecommands.com/dl/OrangeCommands_1.7.1_CS5.zip)
- [Orange Commands 1.7.1 for Fireworks CS6](http://orangecommands.com/dl/OrangeCommands_1.7.1_CS6.zip)
- [Orange Commands 1.7.2 for Fireworks CS3](http://orangecommands.com/dl/OrangeCommands_1.7.2_CS3.zip)
- [Orange Commands 1.7.2 for Fireworks CS4](http://orangecommands.com/dl/OrangeCommands_1.7.2_CS4.zip)
- [Orange Commands 1.7.2 for Fireworks CS5](http://orangecommands.com/dl/OrangeCommands_1.7.2_CS5.zip)
- [Orange Commands 1.7.2 for Fireworks CS6](http://orangecommands.com/dl/OrangeCommands_1.7.2_CS6.zip)

2. Expand the ZIP.
3. Double click the MXP file to install the commands.
Expand Down Expand Up @@ -260,8 +260,7 @@ I.e: if your file is called CoolDesign.png, and the current page is called 'Home

- **Slices as CSS Sprite** (No shortcut)

Exports the slices in the current document as a .css file.
This way, you can use your PNG file as a sprite.
Exports the slices in the current document as a .css file. This way, you can use your PNG file as a sprite. This mostly useless in CS6, as the feature is included in this version, but it's nice for earlier versions.

### Export Settings

Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ require 'colored'
require 'lib/library'
require 'lib/fireworks'

ORANGE_COMMANDS_VERSION = "1.7.1"
ORANGE_COMMANDS_VERSION = "1.7.2"
DOWNLOAD_SERVER = "http://orangecommands.com/dl/"
@fw_versions = ["CS3","CS4","CS5", "CS6"]
@fw_versions = ["CS3","CS4","CS5","CS6"]
@orangecommands = FW::Library.new 'Commands'
@pro = false

Expand Down
2 changes: 1 addition & 1 deletion tpl/OrangeCommands.rmxi
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
]]>
</ui-access>
<files>
<% @files.each do |filename| %> <file source="<%= filename %>" destination="$fireworks/Configuration/<%= filename %>" />
<% @files.each do |filename| %> <file source="<%= filename %>" destination="$fireworks/Configuration/<%= File.dirname(filename) %>" />
<% end %>
</files>
</macromedia-extension>

0 comments on commit 0419bca

Please sign in to comment.