From 86f3e94c7e2327213d14619eb73d2878338bc662 Mon Sep 17 00:00:00 2001 From: fan-ziqi Date: Wed, 13 Nov 2024 22:22:34 +0800 Subject: [PATCH] v2.5 --- README.md | 2 +- setup.py | 2 +- stl_compressor/stl_compressor_ui.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 525638b..ecde951 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ STL Compressor is a tool designed to compress STL files efficiently. Users can c Install with pip ```bash -pip install --upgrade stl_compressor -i https://www.pypi.org/simple/ +pip install stl_compressor stl_compressor ``` diff --git a/setup.py b/setup.py index 4d4d8fc..19af44e 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="stl_compressor", - version="2.4", + version="2.5", description="STL Compressor", long_description=long_description, long_description_content_type="text/markdown", diff --git a/stl_compressor/stl_compressor_ui.py b/stl_compressor/stl_compressor_ui.py index 239e61a..985dbd0 100644 --- a/stl_compressor/stl_compressor_ui.py +++ b/stl_compressor/stl_compressor_ui.py @@ -151,7 +151,7 @@ def on_compress_finished(): bottom_frame = tk.Frame(window) bottom_frame.pack(side=tk.BOTTOM, fill=tk.X) -version_label = tk.Label(bottom_frame, text="STL Compressor v2.4") +version_label = tk.Label(bottom_frame, text="STL Compressor v2.5") version_label.pack(side=tk.LEFT) licence_label = tk.Label(bottom_frame, text="Developed by github@fan-ziqi")