Skip to content

Commit

Permalink
v2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fan-ziqi committed Nov 13, 2024
1 parent d8aac8a commit 337e6ba
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ STL Compressor is a tool designed to compress STL files efficiently. Users can c

## Usage

* Windows users can download [here](https://github.com/fan-ziqi/stl_compressor/releases)
Install with pip

* Python
```bash
pip install --upgrade stl_compressor -i https://www.pypi.org/simple/
stl_compressor
```

```bash
pip install --upgrade stl_compressor -i https://www.pypi.org/simple/
stl_compressor
```
You can also download the Windows exe file [here](https://github.com/fan-ziqi/stl_compressor/releases)

## Packaging

To package the application as a standalone executable, use PyInstaller:
To package the application as a standalone exe file for windows, use PyInstaller:

```bash
pyinstaller --onefile --windowed stl_compressor/stl_compressor_ui.py
Expand Down
3 changes: 0 additions & 3 deletions requirements.txt

This file was deleted.

6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@

setup(
name="stl_compressor",
version="2.2",
version="2.4",
description="STL Compressor",
long_description=long_description,
long_description_content_type="text/markdown",
author="Ziqi Fan",
author_email="[email protected]",
url="https://github.com/fan-ziqi/stl_compressor",
install_requires=[],
install_requires=[
"open3d",
],
license="Apache License 2.0",
packages=find_packages(),
entry_points={"console_scripts": ["stl_compressor = stl_compressor.stl_compressor_ui:main"]},
Expand Down
Binary file added stl_compressor/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion stl_compressor/stl_compressor_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2")
version_label = tk.Label(bottom_frame, text="STL Compressor v2.4")
version_label.pack(side=tk.LEFT)

licence_label = tk.Label(bottom_frame, text="Developed by github@fan-ziqi")
Expand Down

0 comments on commit 337e6ba

Please sign in to comment.