New Version 1.1.4
This commit is contained in:
@@ -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_"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user