New Version 1.1.4

This commit is contained in:
2025-10-30 10:11:53 +01:00
parent f498cafdf3
commit 85876228eb
2 changed files with 7 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
"""
PPTX Grafik-Komprimier-Tool (nur CaesiumCLT, Multi-Thread, Batch, sauberes Cleanup)
Version: 1.1.3
Version: 1.1.4
Highlights:
@@ -12,8 +12,8 @@ Highlights:
- Log: image_name,size_before,size_after,saving,saving_percent
- Summary inkl. Zeit benötigt
Änderungen in 1.1.3:
- Changed all UNICODE Chars to ASCII
Änderungen in 1.1.4:
- Libcaesium 1.1.0 kann nun auch gif verkleinern
"""
import argparse
@@ -31,9 +31,9 @@ from datetime import timedelta
from concurrent.futures import ThreadPoolExecutor, as_completed
from threading import Lock
__version__ = "1.1.3"
__version__ = "1.1.4"
ALLOWED_EXT = {".jpg", ".jpeg", ".png", ".webp", ".gif"} # GIF wird übersprungen
ALLOWED_EXT = {".jpg", ".jpeg", ".png", ".webp", ".gif"}
PROGRESS_BAR_LEN = 40
TEMP_PREFIX = "pptx_compress_"