diff --git a/Changelog.md b/Changelog.md index ba2e6aa63..759bff4e7 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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) diff --git a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml index 30894c341..9264e97ea 100644 --- a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml +++ b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml @@ -27,7 +27,7 @@ - + hugo.locurcio@hugo.pro diff --git a/README.md b/README.md index ca49235dc..eef831dd9 100644 --- a/README.md +++ b/README.md @@ -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! @@ -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 diff --git a/Scripts/Main.gd b/Scripts/Main.gd index eaae74d25..2146a600f 100644 --- a/Scripts/Main.gd +++ b/Scripts/Main.gd @@ -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 diff --git a/Scripts/Palette/Palette.gd b/Scripts/Palette/Palette.gd index 859463c66..f8ece9add 100644 --- a/Scripts/Palette/Palette.gd +++ b/Scripts/Palette/Palette.gd @@ -132,4 +132,4 @@ func load_from_file(path : String) -> Palette: file.close() - return result \ No newline at end of file + return result