Compare commits

...

3 Commits
v1.1.0 ... main

Author SHA1 Message Date
ecc418f196 Update CANGELOG for v1.1.1 2024-09-14 00:40:51 +02:00
cc074b3fd5 Upload v1.1.1 2024-09-14 00:39:54 +02:00
be6456975d Fix select all with partial selection 2024-09-14 00:39:47 +02:00
4 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
## v1.1.1
- Fix partial select all
## v1.1.0 ## v1.1.0
- Auto initialize Scene Workspaces if empty (on load, on scene change) - Auto initialize Scene Workspaces if empty (on load, on scene change)

View File

@ -1,6 +1,6 @@
schema_version = "1.0.0" schema_version = "1.0.0"
id = "scene_workspaces" id = "scene_workspaces"
version = "1.1.0" version = "1.1.1"
name = "Scene Workspaces" name = "Scene Workspaces"
tagline = "Filter and sort your workspaces, scene by scene" tagline = "Filter and sort your workspaces, scene by scene"
maintainer = "Francesco Bellini <doc.open.dev@gmail.com>" maintainer = "Francesco Bellini <doc.open.dev@gmail.com>"

View File

@ -69,7 +69,7 @@ def select_all():
workspaces = templates workspaces = templates
else: else:
for w in bpy.data.workspaces: for w in bpy.data.workspaces:
if w not in workspaces: if w.name not in workspaces:
workspaces.append(w.name) workspaces.append(w.name)
set_scene_workspaces(workspaces) set_scene_workspaces(workspaces)

Binary file not shown.