overmindstudios / BlenderUpdater

Small crossplatform Python 3 application to update Blender to the latest buildbot version
https://overmindstudios.github.io/BlenderUpdater/
GNU General Public License v3.0
136 stars 24 forks source link

Blank choice after pressing Version Check on start screen #44

Closed piotrnikov closed 3 years ago

piotrnikov commented 3 years ago

Hello! There seems to be a problem since the last couple of days. I get this (on two of my Win11 gears): Screenshot 2021-11-26 140454 So basically a blank screen. Am I the only one? Thanks! Piotr PS And thanks again for a very super convenient utility!!!

Harvester62 commented 3 years ago

Nope! I have the same problem here on Windows 10 Pro, 64 bit.

EdwHopper commented 3 years ago

Same here, on two different pc's.

tobkum commented 3 years ago

Will check over the weekend, thanks for reporting!

On Fri, Nov 26, 2021 at 3:59 PM EdwHopper @.***> wrote:

Same here, on two different pc's.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/overmindstudios/BlenderUpdater/issues/44#issuecomment-980041306, or unsubscribe https://github.com/notifications/unsubscribe-auth/AEBLP4T4OQJQZJZR4PFMTCTUN6OFLANCNFSM5I2UICEA .

BAndiT1983 commented 3 years ago

Format of data probably changed and name is not included as text part. Quick fix for now ->

Lines 336-343:

parts = element.text.split(" - ")
output = {}
output["date"] = clean(parts[0])
#output["name"] = clean(parts[1])
output["hash"] = clean(parts[1])
output["type"] = clean(parts[2])
output["size"] = clean(parts[3])
return output

Line 370:

info["version"] = name + "_" + description_data["hash"]
tobkum commented 3 years ago

Thanks @BAndiT1983 - incorporated your fix, works again! New build up in a few minutes!

BAndiT1983 commented 3 years ago

No problem, glad that it helped.