Skip to content

Commit 8e09011

Browse files
committed
0.9.3 - Add more theme colors
1 parent 4971f3f commit 8e09011

File tree

6 files changed

+27
-28
lines changed

6 files changed

+27
-28
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
7979
- run: |
8080
mk python-release owner=libre-embedded \
81-
repo=svgen version=0.9.2
81+
repo=svgen version=0.9.3
8282
if: |
8383
matrix.python-version == '3.12'
8484
&& matrix.system == 'ubuntu-latest'

README.md

Lines changed: 19 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
=====================================
33
generator=datazen
44
version=3.2.3
5-
hash=56b4444dd82cff5acb9d4d73444a6159
5+
hash=71c49ab5444bcbc7603082d7b95a1bed
66
=====================================
77
-->
88

9-
# svgen ([0.9.2](https://pypi.org/project/svgen/))
9+
# svgen ([0.9.3](https://pypi.org/project/svgen/))
1010

1111
[![python](https://img.shields.io/pypi/pyversions/svgen.svg)](https://pypi.org/project/svgen/)
1212
![Build Status](https://github.com/libre-embedded/svgen/workflows/Python%20Package/badge.svg)
@@ -42,7 +42,7 @@ This utility provides a means to work on graphics with a programmatic workflow.
4242
# Command-line Options
4343

4444
```
45-
$ ./venv3.12/bin/svgen -h
45+
$ ./venv3.13/bin/svgen -h
4646
4747
usage: svgen [-h] [--version] [-v] [-q] [--curses] [--no-uvloop] [-C DIR]
4848
[-c CONFIG] [--height HEIGHT] [--width WIDTH] [--images]
@@ -52,27 +52,24 @@ usage: svgen [-h] [--version] [-v] [-q] [--curses] [--no-uvloop] [-C DIR]
5252
A tool for working with scalable vector graphics.
5353
5454
positional arguments:
55-
scripts scripts to run for composing the SVG document (in
56-
order)
55+
scripts scripts to run for composing the SVG document (in
56+
order)
5757
5858
options:
59-
-h, --help show this help message and exit
60-
--version show program's version number and exit
61-
-v, --verbose set to increase logging verbosity
62-
-q, --quiet set to reduce output
63-
--curses whether or not to use curses.wrapper when starting
64-
--no-uvloop whether or not to disable uvloop as event loop driver
65-
-C DIR, --dir DIR execute from a specific directory
66-
-c CONFIG, --config CONFIG
67-
top-level configuration to load (default:
68-
'svgen.json')
69-
--height HEIGHT height of the document, if not specified by
70-
configuration (default: 100)
71-
--width WIDTH width of the document, if not specified by
72-
configuration (default: 100)
73-
--images generate output images
74-
-o OUTPUT, --output OUTPUT
75-
file to write SVG output (default: 'svgen.svg')
59+
-h, --help show this help message and exit
60+
--version show program's version number and exit
61+
-v, --verbose set to increase logging verbosity
62+
-q, --quiet set to reduce output
63+
--curses whether or not to use curses.wrapper when starting
64+
--no-uvloop whether or not to disable uvloop as event loop driver
65+
-C, --dir DIR execute from a specific directory
66+
-c, --config CONFIG top-level configuration to load (default: 'svgen.json')
67+
--height HEIGHT height of the document, if not specified by
68+
configuration (default: 100)
69+
--width WIDTH width of the document, if not specified by
70+
configuration (default: 100)
71+
--images generate output images
72+
-o, --output OUTPUT file to write SVG output (default: 'svgen.svg')
7673
7774
```
7875

local/variables/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
major: 0
33
minor: 9
4-
patch: 2
4+
patch: 3
55
entry: svgen

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"
44

55
[project]
66
name = "svgen"
7-
version = "0.9.2"
7+
version = "0.9.3"
88
description = "A tool for working with scalable vector graphics."
99
readme = "README.md"
1010
requires-python = ">=3.12"

svgen/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# =====================================
22
# generator=datazen
33
# version=3.2.3
4-
# hash=8965117fa454f319ec9304fee33bce06
4+
# hash=17fb0f06faf3c809dd419e0473ffe7f5
55
# =====================================
66

77
"""
@@ -10,4 +10,4 @@
1010

1111
DESCRIPTION = "A tool for working with scalable vector graphics."
1212
PKG_NAME = "svgen"
13-
VERSION = "0.9.2"
13+
VERSION = "0.9.3"

svgen/data/themes/guild.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
---
22
logo:
33
yellow: "#ffff00" # css 'yellow'
4-
purple: "#7f00ff"
4+
purple: "#7f00ff" # ^ -150 hue angle
5+
red: "#ff0000" # cs 'red'
6+
blue: "#0080ff" # ^ -150 hue angle

0 commit comments

Comments
 (0)