From 63fb6f7d094a379c292592287ed2fe880c9deca3 Mon Sep 17 00:00:00 2001 From: Colin Basnett Date: Tue, 15 Aug 2023 15:16:07 -0700 Subject: [PATCH 1/2] Fixed a bug where it was not possible to export from markers --- io_scene_psk_psa/psa/export/operators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_scene_psk_psa/psa/export/operators.py b/io_scene_psk_psa/psa/export/operators.py index 5496ffe..13c28da 100644 --- a/io_scene_psk_psa/psa/export/operators.py +++ b/io_scene_psk_psa/psa/export/operators.py @@ -358,7 +358,7 @@ class PSA_OT_export(Operator, ExportHelper): # Ensure that we actually have items that we are going to be exporting. if pg.sequence_source == 'ACTIONS' and len(pg.action_list) == 0: raise RuntimeError('No actions were selected for export') - elif pg.sequence_source == 'TIMELINE_MARKERS' and len(pg.marker_names) == 0: + elif pg.sequence_source == 'TIMELINE_MARKERS' and len(pg.marker_list) == 0: raise RuntimeError('No timeline markers were selected for export') # Populate the export sequence list. From 83e65687ac0215a6bfd692310506f5056426f6fb Mon Sep 17 00:00:00 2001 From: Colin Basnett Date: Fri, 25 Aug 2023 17:40:30 -0700 Subject: [PATCH 2/2] Incremented version to 5.0.4 --- io_scene_psk_psa/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_scene_psk_psa/__init__.py b/io_scene_psk_psa/__init__.py index 1fd436a..9442648 100644 --- a/io_scene_psk_psa/__init__.py +++ b/io_scene_psk_psa/__init__.py @@ -1,7 +1,7 @@ bl_info = { "name": "PSK/PSA Importer/Exporter", "author": "Colin Basnett, Yurii Ti", - "version": (5, 0, 3), + "version": (5, 0, 4), "blender": (3, 4, 0), "description": "PSK/PSA Import/Export (.psk/.psa)", "warning": "",