File tree Expand file tree Collapse file tree 4 files changed +38
-3
lines changed Expand file tree Collapse file tree 4 files changed +38
-3
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rx"
3
- version = " 0.1 .0"
3
+ version = " 0.2 .0"
4
4
description = " a modern, extensible pixel editor"
5
5
license = " GPL-3.0-only"
6
6
repository = " https://github.com/cloudhead/rx"
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ use std::path::Path;
54
54
use std:: time;
55
55
56
56
/// Program version.
57
- pub const VERSION : & ' static str = "0.1 .0" ;
57
+ pub const VERSION : & ' static str = "0.2 .0" ;
58
58
59
59
#[ global_allocator]
60
60
pub static ALLOCATOR : alloc:: Allocator = alloc:: Allocator :: new ( System ) ;
You can’t perform that action at this time.
0 commit comments