Skip to content

Commit

Permalink
v0.6.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
OverloadedOrama committed Jan 13, 2020
1 parent 24480ed commit 97dad3e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion Changelog.md
Expand Up @@ -3,13 +3,14 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [v0.6.1] - Unreleased
## [v0.6.1] - 13-01-2020

### Added
- Italian translation - thanks to Gaarco!
- In addition to the middle mouse button, you can now use `Space` to pan around the canvas.
- The ability to choose for which color the color picker does its job, the left or the right. (Issue #115)
- Default image settings are now in the Preferences - thanks to Gaarco!
- Added option to hide tool icons next to the cursor - thanks to haonkrub (Issue #122)

### Changed
- When saving a .pxo file, the file path (along with the file name) gets remembered by the Export PNG file dialog path. (Issue #114)
Expand Down
2 changes: 1 addition & 1 deletion Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml
Expand Up @@ -27,7 +27,7 @@
</screenshots>
<content_rating type="oars-1.1"/>
<releases>
<release version="0.6" date="2020-01-06"/>
<release version="0.6.1" date="2020-01-13"/>
</releases>
<update_contact>hugo.locurcio@hugo.pro</update_contact>
</component>
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -5,7 +5,7 @@

[![Pixelorama's UI](https://static.wixstatic.com/media/cc6108_ccec89c37b3d425da4f03776160c859c~mv2.png)](https://www.youtube.com/watch?v=DULv-jzueRw&list=PLVEP1Zz6BUpBiQC0CB6eNBhhLF4tEwBB-&index=7)

Current features as of version v0.6:
Current features as of version v0.6.1:

- Choosing between 6 tools – pencil, eraser, fill bucket, lighten/darken, color picker and rectangle select – and mapping them to both of your left and right mouse buttons.
- Are you an animator? Then you've come to the right place! Pixelorama has its own animation timeline with Onion Skinning just for you!
Expand All @@ -23,12 +23,12 @@ Current features as of version v0.6:
- Split screen mode to see your masterpiece twice! And a mini canvas preview area to see it thrice!
- Create straight lines for pencil, eraser and the lighten/darken tool by pressing `Shift`. If you also press `Control`, you can constrain angles with a step of 15.
- Generate outlines for your images!
- The middle mouse wheel isn’t forgotten, you can use it to pan around the canvas and by scrolling up and down, you can zoom in and out!
- Υou can zoom in and out with the mouse scroll wheel, and pan by clicking it, or by pressing `Space`!
- Keyboard shortcuts! We're pretty sure this is a lifesaver for most of you.
- Rulers and guides!
- Creating a new canvas with a size of your choosing.
- Scale, crop, flip, color invert and desaturate your images!
- English, Greek, German, French, Polish, Brazilian Portuguese, Russian and Traditional Chinese localization support!
- English, Greek, German, French, Polish, Brazilian Portuguese, Russian, Traditional Chinese and Italian localization support!

Make sure to visit our website for more information! https://www.orama-interactive.com/pixelorama
Join our Discord community server​ where we can discuss about Pixelorama and all our other projects! https://discord.gg/GTMtr8s
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Main.gd
Expand Up @@ -355,7 +355,7 @@ func help_menu_id_pressed(id : int) -> void:
1: # Issue Tracker
OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/issues")
2: # Changelog
OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/master/Changelog.md#v06---06-01-2020")
OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/master/Changelog.md#v061---13-01-2020")
3: # About Pixelorama
$AboutDialog.popup_centered()
Global.can_draw = false
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Palette/Palette.gd
Expand Up @@ -132,4 +132,4 @@ func load_from_file(path : String) -> Palette:

file.close()

return result
return result

0 comments on commit 97dad3e

Please sign in to comment.