Skip to content

Commit 82284ab

Browse files
committed
0.5.0
1 parent ead104f commit 82284ab

File tree

4 files changed

+54
-3
lines changed

4 files changed

+54
-3
lines changed

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/).
7+
8+
## 0.5.0 - 2022-10-09
9+
10+
* Handle transparent png images (cli) (#23)
11+
12+
## 0.4.0 - 2021-07-23
13+
14+
* SVG path string numeric precision
15+
16+
## 0.3.0 - 2021-01-24
17+
18+
* Added cutout mode
19+
20+
## 0.2.0 - 2020-11-15
21+
22+
* Use relative & closed paths
23+
24+
## 0.1.0 - 2020-10-31
25+
26+
* Initial release

LICENSE

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Copyright (c) 2022 Tsang Hao Fung
2+
3+
Permission is hereby granted, free of charge, to any
4+
person obtaining a copy of this software and associated
5+
documentation files (the "Software"), to deal in the
6+
Software without restriction, including without
7+
limitation the rights to use, copy, modify, merge,
8+
publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software
10+
is furnished to do so, subject to the following
11+
conditions:
12+
13+
The above copyright notice and this permission notice
14+
shall be included in all copies or substantial portions
15+
of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
18+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
19+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
20+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
21+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
24+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25+
DEALINGS IN THE SOFTWARE.

cmdapp/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vtracer"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Chris Tsang <[email protected]>"]
55
edition = "2018"
66
description = "A cmd app to convert images into vector graphics."
@@ -13,5 +13,5 @@ keywords = ["svg", "computer-graphics"]
1313
[dependencies]
1414
clap = "2.33.3"
1515
image = "0.23.10"
16-
visioncortex = { version = "0.7.0", git = "https://github.com/visioncortex/visioncortex" }
16+
visioncortex = { version = "0.8.0" }
1717
fastrand = "1.8"

cmdapp/LICENSE-MIT

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020 Tsang Hao Fung
1+
Copyright (c) 2022 Tsang Hao Fung
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

0 commit comments

Comments
 (0)