Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudhead committed Sep 28, 2019
1 parent 787af7f commit a296ebf
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
0.1.0

Initial release

0.2.0

New features

* UI scaling via `:set scale = <float>`
* GIF export
* New brush mode `multi`, for drawing on all frames at once
* New brush mode `perfect`, for pixel-perfect drawing
* New brush mode `xsym`, for x-axis symmetry drawing
* New brush mode `ysym`, for y-axis symmetry drawing
* New command `:f/remove` to remove frame
* New command `:f/clone [<index>]` to clone frame
* New command `:v/clear [<color>]` to clear a view
* New command `:toggle <setting>` to toggle a setting on and off
* New command `:help`
* New setting `:set animation = on/off` to show/hide animations
* Color under cursor is displayed in status bar
* GLFW backend

* [windows] Windows support

Changes

* Click on view to make it active
* Better support for toggle-like key bindings
* Default palette is included in binary
* Default config is written to disk if not found
* Much lower memory consumption for undo history

* [macOS] Better retina support
* [macOS] Quit with Command + Q
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rx"
version = "0.1.0"
version = "0.2.0"
description = "a modern, extensible pixel editor"
license = "GPL-3.0-only"
repository = "https://github.com/cloudhead/rx"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ use std::path::Path;
use std::time;

/// Program version.
pub const VERSION: &'static str = "0.1.0";
pub const VERSION: &'static str = "0.2.0";

#[global_allocator]
pub static ALLOCATOR: alloc::Allocator = alloc::Allocator::new(System);
Expand Down

0 comments on commit a296ebf

Please sign in to comment.