Skip to content

Commit 0162f71

Browse files
authored
Merge pull request #255 from nxt-dev/dev
Release editor-v3.13.0
2 parents a168229 + a7b12fa commit 0162f71

4 files changed

Lines changed: 5 additions & 6 deletions

File tree

nxt_editor/integration/blender/nxt_blender.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
bl_info = {
2727
"name": "NXT Blender",
28-
"blender": (3, 0, 0),
28+
"blender": (3, 4, 0),
2929
"version": (0, 3, 0),
3030
"location": "NXT > Open Editor",
3131
"wiki_url": "https://nxt-dev.github.io/",

nxt_editor/stage_model.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,7 @@ def set_attr_display_state(self, node_paths=None, state=0):
207207
if node_paths in (None, [], ()):
208208
node_paths = self.get_selected_nodes()
209209
self._set_attr_display_state(node_paths, state)
210-
# Fixme: Should only redraw the nodes in the selection list
211-
self.comp_layer_changed.emit(self.comp_layer)
210+
self.nodes_changed.emit(node_paths)
212211

213212
def get_attr_display_state(self, node_path):
214213
"""Gets the attribute display state for a given node path if there is

nxt_editor/version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"EDITOR": {
33
"MAJOR": 3,
4-
"MINOR": 12,
5-
"PATCH": 1
4+
"MINOR": 13,
5+
"PATCH": 0
66
}
77
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
long_description_content_type="text/markdown",
2929
url="https://github.com/nxt-dev/nxt_editor",
3030
packages=setuptools.find_packages(),
31-
python_requires='>=2.7, <3.10',
31+
python_requires='>=2.7, <3.11',
3232
install_requires=['nxt-core<1.0,>=0.14',
3333
'qt.py==1.1',
3434
'pyside2>=5.11,<=5.16'

0 commit comments

Comments
 (0)