File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ## 0.6.5 - 2024-08-29
6
+
7
+ * Improve UI
8
+ * Fix the update in Lizmap configuration file
9
+
5
10
## 0.6.4 - 2024-08-28
6
11
7
12
* Fix some Python errors
Original file line number Diff line number Diff line change 16
16
)
17
17
18
18
from dynamic_layers .core .dynamic_layers_engine import DynamicLayersEngine
19
- from dynamic_layers .definitions import PLUGIN_SCOPE , PluginProjectProperty
20
19
from dynamic_layers .tools import (
21
20
log_message ,
22
21
side_car_files ,
@@ -48,7 +47,8 @@ def __init__(
48
47
49
48
def process (self ) -> bool :
50
49
""" Generate all projects needed according to the coverage layer. """
51
- self .feedback .setProgress (0 )
50
+ if self .feedback :
51
+ self .feedback .setProgress (0 )
52
52
engine = DynamicLayersEngine (self .feedback )
53
53
engine .discover_dynamic_layers_from_project (self .project )
54
54
You can’t perform that action at this time.
0 commit comments