Skip to content

Commit

Permalink
bump version to 2.0.24 and revert temp fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zeptofine committed Jan 30, 2024
1 parent 60d295e commit 2edd61f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 14 deletions.
2 changes: 1 addition & 1 deletion docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ extra_css:
- stylesheets/extra.css
repo_url: https://github.com/Victor-IX/Blender-Launcher-V2
edit_uri: ""
copyright: Copyright © 2022 Victor Chedeville │ Blender Launcher GPL-3.0 License │ Version 2.0.0
copyright: Copyright © 2022 Victor Chedeville │ Blender Launcher GPL-3.0 License │ Version 2.0.24
4 changes: 2 additions & 2 deletions docs/mkdocs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

![Blender Launcher Logo](imgs/bl_logo.png)

[:fontawesome-brands-windows: Get for Windows](https://github.com/Victor-IX/Blender-Launcher-V2/releases/download/v2.0.0/Blender_Launcher_v2.0.0_Windows_x64.zip){: .md-button .md-button--primary style="display: inline-block; float: left; width: 33%; text-align: center;"}
[:fontawesome-brands-linux: Get for Linux](https://github.com/Victor-IX/Blender-Launcher-V2/releases/download/v2.0.0/Blender_Launcher_v2.0.0_Linux_x64.zip){: .md-button .md-button--primary style="display: inline-block; float: left; margin-left: 0.5%; width: 33%; text-align: center;"}
[:fontawesome-brands-windows: Get for Windows](https://github.com/Victor-IX/Blender-Launcher-V2/releases/download/v2.0.24/Blender_Launcher_v2.0.24_Windows_x64.zip){: .md-button .md-button--primary style="display: inline-block; float: left; width: 33%; text-align: center;"}
[:fontawesome-brands-linux: Get for Linux](https://github.com/Victor-IX/Blender-Launcher-V2/releases/download/v2.0.24/Blender_Launcher_v2.0.24_Linux_x64.zip){: .md-button .md-button--primary style="display: inline-block; float: left; margin-left: 0.5%; width: 33%; text-align: center;"}
[:fontawesome-solid-download: All Releases](https://github.com/Victor-IX/Blender-Launcher-V2/releases){: .md-button .md-button--primary style="display: inline-block; float: right; width: 33%; text-align: center;"}

<br/>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "Blender-Launcher-V2"
version = "2.0.0"
version = "2.0.24"
description = ""
authors = []
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion source/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from windows.main_window import BlenderLauncher
from windows.update_window import BlenderLauncherUpdater

version = "2.0.0"
version = "2.0.24"

# Setup logging config
_format = "[%(asctime)s:%(levelname)s] %(message)s"
Expand Down
7 changes: 0 additions & 7 deletions source/windows/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -838,13 +838,6 @@ def set_version(self, latest_tag):
latest_ver = re.sub(r"\D", "", latest_tag)
current_ver = re.sub(r"\D", "", self.version)

# Adding temp fix to handle version 2 of the launcher
if current_ver == "200":
current_ver = "20000"

if latest_ver == "200":
latest_ver = "20000"

if int(latest_ver) > int(current_ver):
if latest_tag not in self.notification_pool:
self.NewVersionButton.setText(f"Update to version {latest_tag.replace('v', '')}")
Expand Down
4 changes: 2 additions & 2 deletions version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ VSVersionInfo(
u'04090000',
[StringStruct(u'CompanyName', u'Victor Chedeville'),
StringStruct(u'FileDescription', u'Blender Launcher'),
StringStruct(u'FileVersion', u'2.0.0'),
StringStruct(u'FileVersion', u'2.0.24'),
StringStruct(u'LegalCopyright', u'GPLv3 © 2022 Victor Chedeville'),
StringStruct(u'OriginalFilename', u'Blender Launcher.exe'),
StringStruct(u'ProductName', u'Blender Launcher'),
StringStruct(u'ProductVersion', u'2.0.0')])
StringStruct(u'ProductVersion', u'2.0.24')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
]
Expand Down

0 comments on commit 2edd61f

Please sign in to comment.