From a3d9a0c68b54030540489388842871c8fa5075e4 Mon Sep 17 00:00:00 2001 From: ndornseif <5382403+ndornseif@users.noreply.github.com> Date: Fri, 2 Jun 2023 19:31:49 +0200 Subject: [PATCH] Ready for release 1.0.0 --- README.md | 1 - video_crusher.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eb7cf9a..cce68a0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # video-crusher Very lossy video compression. -Version: 0.1.0 ## Description diff --git a/video_crusher.py b/video_crusher.py index 2fbc2c1..1dad086 100644 --- a/video_crusher.py +++ b/video_crusher.py @@ -27,7 +27,7 @@ __author__ = "N. Dornseif" __copyright__ = "Copyright 2023, N. Dornseif" __license__ = "GNU General Public License v3.0" -__version__ = "0.1.0" +__version__ = "1.0.0" class Colorspace(Enum): @@ -58,7 +58,7 @@ def print_progress_bar(iteration: int, total: int, length: int = 100, fill: str print() -def reduce_image_color_depth(input_image: PIL.Image, levels:int) -> PIL.Image: +def reduce_image_color_depth(input_image: PIL.Image, levels: int) -> PIL.Image: """ Combines all color values in a channel into (levels) different values @params: