forked from pool/ttf-converter
Accepting request 818036 from M17N
OBS-URL: https://build.opensuse.org/request/show/818036 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ttf-converter?expand=0&rev=3
This commit is contained in:
commit
6bed30cf80
3
_service
3
_service
@ -2,7 +2,8 @@
|
|||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="url">https://github.com/antlarr-suse/ttf-converter</param>
|
<param name="url">https://github.com/antlarr-suse/ttf-converter</param>
|
||||||
<param name="filename">ttf-converter</param>
|
<param name="filename">ttf-converter</param>
|
||||||
<param name="version">1.0.3</param>
|
<param name="version">1.0.6</param>
|
||||||
|
<param name="revision">1.0.6</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
</service>
|
</service>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/antlarr-suse/ttf-converter</param>
|
<param name="url">https://github.com/antlarr-suse/ttf-converter</param>
|
||||||
<param name="changesrevision">6ec51ca498265a020d1d66f1e7b1ba32b9ee4ea7</param></service></servicedata>
|
<param name="changesrevision">30c9627432c2ded1ab65bc3c4c022476edfabfa7</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c919f1bdaa59041c52a3812a414b71852a299a42b764ab10a4521837815a97dd
|
|
||||||
size 14492
|
|
3
ttf-converter-1.0.6.tar.xz
Normal file
3
ttf-converter-1.0.6.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:bab5573ce7c3b1a597182d548ab8369a70c96b5141ccb938033b4e5503ff0761
|
||||||
|
size 15908
|
@ -1,3 +1,41 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 30 17:35:53 UTC 2020 - alarrosa@suse.com
|
||||||
|
|
||||||
|
- Update to version 1.0.6:
|
||||||
|
* Standarize output when converting vector and bitmap fonts
|
||||||
|
* Add more subfamilies fixes (boo#1169444)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 29 12:09:28 UTC 2020 - Antonio Larrosa <alarrosa@suse.com>
|
||||||
|
|
||||||
|
- Update to version 1.0.5:
|
||||||
|
* Add --family and --subfamily arguments to force values on those
|
||||||
|
fields
|
||||||
|
* Add parameters to fix glyph unicode values
|
||||||
|
--fix-glyph-unicode : Try to fix unicode points and glyph names
|
||||||
|
based on glyph names containing hexadecimal codes (like
|
||||||
|
"$0C00", "char12345" or "uni004F")
|
||||||
|
--replace-unicode-values: When passed 2 comma separated numbers
|
||||||
|
a,b the glyph with an unicode value of a is replaced with the
|
||||||
|
unicode value b. Can be used more than once.
|
||||||
|
--shift-unicode-values: When passed 3 comma separated numbers
|
||||||
|
a,b,c this shifts the unicode values of glyphs between a and b
|
||||||
|
(both included) by adding c. Can be used more than once.
|
||||||
|
* Add --bitmapTransform parameter to transform bitmap glyphs. When
|
||||||
|
used, all glyphs are modified with the transformation function and
|
||||||
|
values passed as parameters. The parameter has three values
|
||||||
|
separated by commas: fliph|flipv|rotate90cw|rotate90ccw|
|
||||||
|
rotate180|skew|transmove,xoff,yoff
|
||||||
|
(boo#1169444)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 25 10:38:37 UTC 2020 - alarrosa@suse.com
|
||||||
|
|
||||||
|
- Update to version 1.0.4:
|
||||||
|
* Add support to convert bitmap fonts (boo#1169444)
|
||||||
|
* Rename MediumItalic subfamily to Medium Italic
|
||||||
|
* Show some more information when removing duplicated glyphs
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 22 09:54:07 UTC 2020 - alarrosa@suse.com
|
Mon Jun 22 09:54:07 UTC 2020 - alarrosa@suse.com
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: ttf-converter
|
Name: ttf-converter
|
||||||
Version: 1.0.3
|
Version: 1.0.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python script that converts fonts to TrueType format
|
Summary: Python script that converts fonts to TrueType format
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
@ -25,6 +25,7 @@ URL: https://github.com/antlarr-suse/ttf-converter
|
|||||||
Source: ttf-converter-%{version}.tar.xz
|
Source: ttf-converter-%{version}.tar.xz
|
||||||
BuildRequires: python3
|
BuildRequires: python3
|
||||||
Requires: fontforge
|
Requires: fontforge
|
||||||
|
Requires: ftdump
|
||||||
Requires: python3-base
|
Requires: python3-base
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user