Skip to content

Commit a296ebf

Browse files
committed
Release v0.2.0
1 parent 787af7f commit a296ebf

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

CHANGELOG

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
0.1.0
2+
3+
Initial release
4+
5+
0.2.0
6+
7+
New features
8+
9+
* UI scaling via `:set scale = <float>`
10+
* GIF export
11+
* New brush mode `multi`, for drawing on all frames at once
12+
* New brush mode `perfect`, for pixel-perfect drawing
13+
* New brush mode `xsym`, for x-axis symmetry drawing
14+
* New brush mode `ysym`, for y-axis symmetry drawing
15+
* New command `:f/remove` to remove frame
16+
* New command `:f/clone [<index>]` to clone frame
17+
* New command `:v/clear [<color>]` to clear a view
18+
* New command `:toggle <setting>` to toggle a setting on and off
19+
* New command `:help`
20+
* New setting `:set animation = on/off` to show/hide animations
21+
* Color under cursor is displayed in status bar
22+
* GLFW backend
23+
24+
* [windows] Windows support
25+
26+
Changes
27+
28+
* Click on view to make it active
29+
* Better support for toggle-like key bindings
30+
* Default palette is included in binary
31+
* Default config is written to disk if not found
32+
* Much lower memory consumption for undo history
33+
34+
* [macOS] Better retina support
35+
* [macOS] Quit with Command + Q

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rx"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "a modern, extensible pixel editor"
55
license = "GPL-3.0-only"
66
repository = "https://github.com/cloudhead/rx"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ use std::path::Path;
5454
use std::time;
5555

5656
/// Program version.
57-
pub const VERSION: &'static str = "0.1.0";
57+
pub const VERSION: &'static str = "0.2.0";
5858

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

0 commit comments

Comments
 (0)