Skip to content

Commit

Permalink
FIX: no ORT update when old ver exists
Browse files Browse the repository at this point in the history
Issue #187
  • Loading branch information
Gourieff committed Nov 15, 2023
1 parent 4139d16 commit fda2ae3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ __pycache__/
.vscode/

example
toDo.txt
last_device.txt
*.txt
!requirements.txt
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<img src="https://github.com/Gourieff/Assets/raw/main/sd-webui-reactor/ReActor_logo_red.png?raw=true" alt="logo" width="180px"/>

![Version](https://img.shields.io/badge/version-0.5.0_beta1-green?style=for-the-badge&labelColor=darkgreen)
![Version](https://img.shields.io/badge/version-0.5.0_beta2-green?style=for-the-badge&labelColor=darkgreen)

<a href='https://ko-fi.com/gourieff' target='_blank'><img height='33' src='https://storage.ko-fi.com/cdn/kofi3.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>

Expand Down
2 changes: 1 addition & 1 deletion README_RU.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<img src="https://github.com/Gourieff/Assets/raw/main/sd-webui-reactor/ReActor_logo_red.png?raw=true" alt="logo" width="180px"/>

![Version](https://img.shields.io/badge/версия-0.5.0_beta1-green?style=for-the-badge&labelColor=darkgreen)
![Version](https://img.shields.io/badge/версия-0.5.0_beta2-green?style=for-the-badge&labelColor=darkgreen)

<a href='https://ko-fi.com/gourieff' target='_blank'><img height='33' src='https://storage.ko-fi.com/cdn/kofi3.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>

Expand Down
2 changes: 1 addition & 1 deletion install.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def download(url, path):
txt.write(last_device)
if not is_installed(ort,"1.16.1",False):
install_count += 1
pip_install(ort)
pip_install(ort, "-U")
except Exception as e:
print(e)
print(f"\nERROR: Failed to install {ort} - ReActor won't start")
Expand Down
2 changes: 1 addition & 1 deletion scripts/reactor_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
app_title = "ReActor"
version_flag = "v0.5.0-b1"
version_flag = "v0.5.0-b2"

from scripts.reactor_logger import logger, get_Run, set_Run

Expand Down

0 comments on commit fda2ae3

Please sign in to comment.