Skip to content

Commit

Permalink
0.7.2 - Add 3k output for some laptops
Browse files Browse the repository at this point in the history
  • Loading branch information
vkottler committed Oct 30, 2024
1 parent 3a764f3 commit 50312db
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- run: |
mk python-release owner=vkottler \
repo=svgen version=0.7.1
repo=svgen version=0.7.2
if: |
matrix.python-version == '3.12'
&& matrix.system == 'ubuntu-latest'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
=====================================
generator=datazen
version=3.1.4
hash=e3a74ecb605bcef75afc16acb2c5ee83
hash=e3b8e71cf8f2ff14724ec99f593e1171
=====================================
-->

# svgen ([0.7.1](https://pypi.org/project/svgen/))
# svgen ([0.7.2](https://pypi.org/project/svgen/))

[![python](https://img.shields.io/pypi/pyversions/svgen.svg)](https://pypi.org/project/svgen/)
![Build Status](https://github.com/vkottler/svgen/workflows/Python%20Package/badge.svg)
Expand Down
2 changes: 1 addition & 1 deletion config
2 changes: 1 addition & 1 deletion local/variables/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
major: 0
minor: 7
patch: 1
patch: 2
entry: svgen
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"

[project]
name = "svgen"
version = "0.7.1"
version = "0.7.2"
description = "A tool for working with scalable vector graphics."
readme = "README.md"
requires-python = ">=3.11"
Expand Down
4 changes: 2 additions & 2 deletions svgen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.4
# hash=629149aa3a06240af098abf13f051e1b
# hash=9f3cbbe5ddb5066e39497cc0121eade3
# =====================================

"""
Expand All @@ -10,4 +10,4 @@

DESCRIPTION = "A tool for working with scalable vector graphics."
PKG_NAME = "svgen"
VERSION = "0.7.1"
VERSION = "0.7.2"
6 changes: 5 additions & 1 deletion svgen/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ def args(self) -> List[str]:
"4:3": [AspectRatio(1024, 768, True), AspectRatio(1600, 1200, True)],
"5:4": [AspectRatio(1280, 1024, True)],
"3:2": [AspectRatio(2160, 1440, True), AspectRatio(2560, 1700, True)],
"16:10": [AspectRatio(1280, 800, True), AspectRatio(1920, 1200, True)],
"16:10": [
AspectRatio(1280, 800, True),
AspectRatio(1920, 1200, True),
AspectRatio(2880, 1800, True),
],
"16:9": [
AspectRatio(1366, 768, True),
AspectRatio(1920, 1080, True),
Expand Down

0 comments on commit 50312db

Please sign in to comment.