From 07e28e4743ef37a69637f1ed4defdd3a39a34025 Mon Sep 17 00:00:00 2001 From: TimNekk Date: Sat, 29 Apr 2023 11:44:38 +0300 Subject: [PATCH 1/3] chore: add .vscode/ to gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 6c2e3e6..ccc91ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .idea/ +.vscode/ # Byte-compiled / optimized / DLL files __pycache__/ From 45c6392ac63563b7abaad1e71ace5fb5f9ed1499 Mon Sep 17 00:00:00 2001 From: TimNekk Date: Sat, 29 Apr 2023 12:06:56 +0300 Subject: [PATCH 2/3] feat: specify required gigapixel version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb1c083..62ce159 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ ## Requirements -[Topaz Gigapixel AI](https://www.topazlabs.com/gigapixel-ai) **v6** of **newer** required +[Topaz Gigapixel AI](https://www.topazlabs.com/gigapixel-ai) **v6.3.3** or **newer** required ## Installation From 75ab0bfb4ac40428fbfa67346f685af496f3957d Mon Sep 17 00:00:00 2001 From: TimNekk Date: Sat, 29 Apr 2023 12:07:27 +0300 Subject: [PATCH 3/3] feat: add high quality mode --- gigapixel/gigapixel.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gigapixel/gigapixel.py b/gigapixel/gigapixel.py index 2888272..051c051 100644 --- a/gigapixel/gigapixel.py +++ b/gigapixel/gigapixel.py @@ -24,7 +24,8 @@ class Mode(Enum): STANDARD = "Standard" Lines = "Lines" ART_AND_CG = "Art & CG" - LOW_RESOLUTION = "Low Resolution" + HIGH_QUALITY = "HQ" + LOW_RESOLUTION = "Low Res" VERY_COMPRESSED = "Very Compressed"