mirror of
https://github.com/visioncortex/vtracer.git
synced 2026-09-26 05:51:21 -07:00
0.2.0
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
|||||||
|
Version 0.2.0 (2020-10-31)
|
||||||
|
==========================
|
||||||
|
|
||||||
|
- Use relative & closed paths
|
||||||
|
|
||||||
|
|
||||||
|
Version 0.1.1 (2020-10-31)
|
||||||
|
==========================
|
||||||
|
|
||||||
|
- SVG namespace
|
||||||
|
|
||||||
|
|
||||||
|
Version 0.1.0 (2020-10-31)
|
||||||
|
==========================
|
||||||
|
|
||||||
|
- Initial release
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vtracer"
|
name = "vtracer"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
authors = ["Chris Tsang <tyt2y7@gmail.com>"]
|
authors = ["Chris Tsang <tyt2y7@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "A cmd app to convert images into vector graphics."
|
description = "A cmd app to convert images into vector graphics."
|
||||||
|
|||||||
@@ -100,7 +100,8 @@ fn path_simplify_mode_from_str(s: &str) -> PathSimplifyMode {
|
|||||||
|
|
||||||
impl Config {
|
impl Config {
|
||||||
pub fn from_args() -> Self {
|
pub fn from_args() -> Self {
|
||||||
let app = App::new("visioncortex VTracer").about("A cmd app to convert images into vector graphics.");
|
let app = App::new("visioncortex VTracer ".to_owned() + env!("CARGO_PKG_VERSION"))
|
||||||
|
.about("A cmd app to convert images into vector graphics.");
|
||||||
|
|
||||||
let app = app.arg(Arg::with_name("input")
|
let app = app.arg(Arg::with_name("input")
|
||||||
.long("input")
|
.long("input")
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
Copyright (c) 2020 Tsang Hao Fung
|
||||||
|
|
||||||
|
All Rights Reserved
|
||||||
Reference in New Issue
Block a user