Skip to content

Commit 4b83a38

Browse files
committed
0.8.5 - a few more aspect ratios
1 parent 5ff5d0f commit 4b83a38

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
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.8.4
81+
repo=svgen version=0.8.5
8282
if: |
8383
matrix.python-version == '3.12'
8484
&& matrix.system == 'ubuntu-latest'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
=====================================
33
generator=datazen
44
version=3.2.3
5-
hash=47b0ba47abe45fee76dfce1ccbc69962
5+
hash=37cac336d870d00e6126298498627a6b
66
=====================================
77
-->
88

9-
# svgen ([0.8.4](https://pypi.org/project/svgen/))
9+
# svgen ([0.8.5](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)

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: 8
4-
patch: 4
4+
patch: 5
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.8.4"
7+
version = "0.8.5"
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=2e95f377d9b2cfbe0203afb6208e7cb6
4+
# hash=99465086ecdb2806a6bdded44c42e80b
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.8.4"
13+
VERSION = "0.8.5"

svgen/display.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,19 @@ def args(self) -> list[str]:
9595
AspectRatio(1366, 768, True),
9696
AspectRatio(1920, 1080, True),
9797
AspectRatio(2560, 1440, True),
98+
AspectRatio(3840, 2160, True),
9899
],
99100
"17:9": [AspectRatio(4096, 2160, True)],
100-
"21:9": [AspectRatio(2560, 1080, True), AspectRatio(3440, 1440, True)],
101-
"32:9": [AspectRatio(3840, 1080, True), AspectRatio(5120, 1440, True)],
101+
"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+
],
102111
"1:1": [
103112
AspectRatio(400, 400, True),
104113
AspectRatio(512, 512, True),

0 commit comments

Comments
 (0)