We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ff5d0f commit 4b83a38Copy full SHA for 4b83a38
.github/workflows/python-package.yml
@@ -78,7 +78,7 @@ jobs:
78
79
- run: |
80
mk python-release owner=libre-embedded \
81
- repo=svgen version=0.8.4
+ repo=svgen version=0.8.5
82
if: |
83
matrix.python-version == '3.12'
84
&& matrix.system == 'ubuntu-latest'
README.md
@@ -2,11 +2,11 @@
2
=====================================
3
generator=datazen
4
version=3.2.3
5
- hash=47b0ba47abe45fee76dfce1ccbc69962
+ hash=37cac336d870d00e6126298498627a6b
6
7
-->
8
9
-# svgen ([0.8.4](https://pypi.org/project/svgen/))
+# svgen ([0.8.5](https://pypi.org/project/svgen/))
10
11
[](https://pypi.org/project/svgen/)
12

local/variables/package.yaml
@@ -1,5 +1,5 @@
1
---
major: 0
minor: 8
-patch: 4
+patch: 5
entry: svgen
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "svgen"
-version = "0.8.4"
+version = "0.8.5"
description = "A tool for working with scalable vector graphics."
readme = "README.md"
requires-python = ">=3.12"
svgen/__init__.py
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.2.3
-# hash=2e95f377d9b2cfbe0203afb6208e7cb6
+# hash=99465086ecdb2806a6bdded44c42e80b
"""
@@ -10,4 +10,4 @@
DESCRIPTION = "A tool for working with scalable vector graphics."
PKG_NAME = "svgen"
13
-VERSION = "0.8.4"
+VERSION = "0.8.5"
svgen/display.py
@@ -95,10 +95,19 @@ def args(self) -> list[str]:
95
AspectRatio(1366, 768, True),
96
AspectRatio(1920, 1080, True),
97
AspectRatio(2560, 1440, True),
98
+ AspectRatio(3840, 2160, True),
99
],
100
"17:9": [AspectRatio(4096, 2160, True)],
- "21:9": [AspectRatio(2560, 1080, True), AspectRatio(3440, 1440, True)],
101
- "32:9": [AspectRatio(3840, 1080, True), AspectRatio(5120, 1440, True)],
+ "21:9": [
102
+ AspectRatio(2560, 1080, True),
103
+ AspectRatio(3440, 1440, True),
104
+ AspectRatio(5120, 2160, True),
105
+ ],
106
+ "32:9": [
107
+ AspectRatio(3840, 1080, True),
108
+ AspectRatio(5120, 1440, True),
109
+ AspectRatio(7680, 2160, True),
110
111
"1:1": [
112
AspectRatio(400, 400, True),
113
AspectRatio(512, 512, True),
0 commit comments