PaIRS-UniNa 0.2.7__cp312-cp312-macosx_11_0_universal2.whl → 0.2.10__cp312-cp312-macosx_11_0_universal2.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- PaIRS_UniNa/Calibration_Tab.py +16 -0
- PaIRS_UniNa/Changes.txt +39 -0
- PaIRS_UniNa/Explorer.py +311 -75
- PaIRS_UniNa/FolderLoop.py +196 -6
- PaIRS_UniNa/Input_Tab.py +160 -53
- PaIRS_UniNa/Input_Tab_CalVi.py +11 -12
- PaIRS_UniNa/Input_Tab_tools.py +17 -15
- PaIRS_UniNa/Output_Tab.py +1 -3
- PaIRS_UniNa/PaIRS_pypacks.py +63 -65
- PaIRS_UniNa/Process_Tab.py +19 -15
- PaIRS_UniNa/Process_Tab_Disp.py +8 -1
- PaIRS_UniNa/SPIVCalHelp.py +155 -0
- PaIRS_UniNa/Saving_tools.py +2 -0
- PaIRS_UniNa/TabTools.py +165 -6
- PaIRS_UniNa/Vis_Tab.py +50 -22
- PaIRS_UniNa/Vis_Tab_CalVi.py +1 -2
- PaIRS_UniNa/Whatsnew.py +4 -3
- PaIRS_UniNa/_PaIRS_PIV.so +0 -0
- PaIRS_UniNa/__init__.py +3 -3
- PaIRS_UniNa/addwidgets_ps.py +570 -70
- PaIRS_UniNa/gPaIRS.py +118 -17
- PaIRS_UniNa/icons/folder_loop_cleanup.png +0 -0
- PaIRS_UniNa/icons/folder_loop_cleanup_off.png +0 -0
- PaIRS_UniNa/icons/information.png +0 -0
- PaIRS_UniNa/icons/information2.png +0 -0
- PaIRS_UniNa/icons/scan_path_loop.png +0 -0
- PaIRS_UniNa/icons/scan_path_loop_off.png +0 -0
- PaIRS_UniNa/icons/spiv_setup_no.png +0 -0
- PaIRS_UniNa/icons/spiv_setup_ok.png +0 -0
- PaIRS_UniNa/procTools.py +46 -1
- PaIRS_UniNa/rqrdpckgs.txt +7 -7
- PaIRS_UniNa/ui_Calibration_Tab.py +92 -59
- PaIRS_UniNa/ui_gPairs.py +8 -8
- PaIRS_UniNa/whatsnew.txt +2 -3
- {pairs_unina-0.2.7.dist-info → pairs_unina-0.2.10.dist-info}/METADATA +7 -8
- {pairs_unina-0.2.7.dist-info → pairs_unina-0.2.10.dist-info}/RECORD +38 -30
- {pairs_unina-0.2.7.dist-info → pairs_unina-0.2.10.dist-info}/WHEEL +0 -0
- {pairs_unina-0.2.7.dist-info → pairs_unina-0.2.10.dist-info}/top_level.txt +0 -0
|
@@ -2,9 +2,9 @@ from .addwidgets_ps import icons_path
|
|
|
2
2
|
# -*- coding: utf-8 -*-
|
|
3
3
|
|
|
4
4
|
################################################################################
|
|
5
|
-
## Form generated from reading UI file '
|
|
5
|
+
## Form generated from reading UI file 'Calibration_TabkogRuY.ui'
|
|
6
6
|
##
|
|
7
|
-
## Created by: Qt User Interface Compiler version 6.
|
|
7
|
+
## Created by: Qt User Interface Compiler version 6.9.1
|
|
8
8
|
##
|
|
9
9
|
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
10
10
|
################################################################################
|
|
@@ -22,7 +22,7 @@ from PySide6.QtWidgets import (QAbstractSpinBox, QApplication, QFrame, QHBoxLayo
|
|
|
22
22
|
QVBoxLayout, QWidget)
|
|
23
23
|
|
|
24
24
|
from .Input_Tab_tools import CalibrationTree
|
|
25
|
-
from .addwidgets_ps import (ClickableLabel, MyQSpin)
|
|
25
|
+
from .addwidgets_ps import (ClickableLabel, MyQSpin, MyTabLabel)
|
|
26
26
|
|
|
27
27
|
class Ui_CalibrationTab(object):
|
|
28
28
|
def setupUi(self, CalibrationTab):
|
|
@@ -40,7 +40,7 @@ class Ui_CalibrationTab(object):
|
|
|
40
40
|
font.setPointSize(11)
|
|
41
41
|
CalibrationTab.setFont(font)
|
|
42
42
|
icon1 = QIcon()
|
|
43
|
-
icon1.addFile(u""+ icons_path +"calibration_logo.png", QSize(), QIcon.Normal, QIcon.Off)
|
|
43
|
+
icon1.addFile(u""+ icons_path +"calibration_logo.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
44
44
|
CalibrationTab.setWindowIcon(icon1)
|
|
45
45
|
self.verticalLayout_65 = QVBoxLayout(CalibrationTab)
|
|
46
46
|
self.verticalLayout_65.setSpacing(5)
|
|
@@ -65,7 +65,7 @@ class Ui_CalibrationTab(object):
|
|
|
65
65
|
|
|
66
66
|
self.horizontalLayout_2.addWidget(self.icon)
|
|
67
67
|
|
|
68
|
-
self.name_tab =
|
|
68
|
+
self.name_tab = MyTabLabel(self.w_Mode)
|
|
69
69
|
self.name_tab.setObjectName(u"name_tab")
|
|
70
70
|
self.name_tab.setMinimumSize(QSize(100, 35))
|
|
71
71
|
self.name_tab.setMaximumSize(QSize(16777215, 35))
|
|
@@ -97,6 +97,22 @@ class Ui_CalibrationTab(object):
|
|
|
97
97
|
|
|
98
98
|
self.horizontalLayout_2.addWidget(self.w_label_done)
|
|
99
99
|
|
|
100
|
+
self.button_info = QToolButton(self.w_Mode)
|
|
101
|
+
self.button_info.setObjectName(u"button_info")
|
|
102
|
+
self.button_info.setMinimumSize(QSize(30, 33))
|
|
103
|
+
self.button_info.setMaximumSize(QSize(30, 33))
|
|
104
|
+
font2 = QFont()
|
|
105
|
+
font2.setPointSize(16)
|
|
106
|
+
self.button_info.setFont(font2)
|
|
107
|
+
self.button_info.setStyleSheet(u"QToolButton#button_PaIRS_download{border: none}")
|
|
108
|
+
icon2 = QIcon()
|
|
109
|
+
icon2.addFile(u""+ icons_path +"information2.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
110
|
+
self.button_info.setIcon(icon2)
|
|
111
|
+
self.button_info.setIconSize(QSize(24, 24))
|
|
112
|
+
self.button_info.setCheckable(False)
|
|
113
|
+
|
|
114
|
+
self.horizontalLayout_2.addWidget(self.button_info)
|
|
115
|
+
|
|
100
116
|
self.hs1 = QSpacerItem(30, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
|
|
101
117
|
|
|
102
118
|
self.horizontalLayout_2.addItem(self.hs1)
|
|
@@ -105,16 +121,16 @@ class Ui_CalibrationTab(object):
|
|
|
105
121
|
self.button_CalVi.setObjectName(u"button_CalVi")
|
|
106
122
|
self.button_CalVi.setMinimumSize(QSize(99, 33))
|
|
107
123
|
self.button_CalVi.setMaximumSize(QSize(99, 33))
|
|
108
|
-
self.button_CalVi.setCursor(QCursor(Qt.PointingHandCursor))
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
self.button_CalVi.setIcon(
|
|
124
|
+
self.button_CalVi.setCursor(QCursor(Qt.CursorShape.PointingHandCursor))
|
|
125
|
+
icon3 = QIcon()
|
|
126
|
+
icon3.addFile(u""+ icons_path +"logo_CalVi.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
127
|
+
self.button_CalVi.setIcon(icon3)
|
|
112
128
|
self.button_CalVi.setIconSize(QSize(75, 25))
|
|
113
129
|
self.button_CalVi.setCheckable(True)
|
|
114
130
|
|
|
115
131
|
self.horizontalLayout_2.addWidget(self.button_CalVi)
|
|
116
132
|
|
|
117
|
-
self.hs2 = QSpacerItem(
|
|
133
|
+
self.hs2 = QSpacerItem(50, 20, QSizePolicy.Policy.Fixed, QSizePolicy.Policy.Minimum)
|
|
118
134
|
|
|
119
135
|
self.horizontalLayout_2.addItem(self.hs2)
|
|
120
136
|
|
|
@@ -122,9 +138,9 @@ class Ui_CalibrationTab(object):
|
|
|
122
138
|
self.label_number.setObjectName(u"label_number")
|
|
123
139
|
self.label_number.setMinimumSize(QSize(15, 0))
|
|
124
140
|
self.label_number.setMaximumSize(QSize(30, 16777215))
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
self.label_number.setFont(
|
|
141
|
+
font3 = QFont()
|
|
142
|
+
font3.setPointSize(9)
|
|
143
|
+
self.label_number.setFont(font3)
|
|
128
144
|
self.label_number.setAlignment(Qt.AlignmentFlag.AlignRight|Qt.AlignmentFlag.AlignTrailing|Qt.AlignmentFlag.AlignVCenter)
|
|
129
145
|
|
|
130
146
|
self.horizontalLayout_2.addWidget(self.label_number)
|
|
@@ -137,9 +153,9 @@ class Ui_CalibrationTab(object):
|
|
|
137
153
|
self.button_back.setObjectName(u"button_back")
|
|
138
154
|
self.button_back.setMinimumSize(QSize(24, 24))
|
|
139
155
|
self.button_back.setMaximumSize(QSize(24, 24))
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
self.button_back.setIcon(
|
|
156
|
+
icon4 = QIcon()
|
|
157
|
+
icon4.addFile(u""+ icons_path +"undo.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
158
|
+
self.button_back.setIcon(icon4)
|
|
143
159
|
self.button_back.setIconSize(QSize(20, 20))
|
|
144
160
|
|
|
145
161
|
self.horizontalLayout_2.addWidget(self.button_back)
|
|
@@ -148,9 +164,9 @@ class Ui_CalibrationTab(object):
|
|
|
148
164
|
self.button_forward.setObjectName(u"button_forward")
|
|
149
165
|
self.button_forward.setMinimumSize(QSize(24, 24))
|
|
150
166
|
self.button_forward.setMaximumSize(QSize(24, 24))
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
self.button_forward.setIcon(
|
|
167
|
+
icon5 = QIcon()
|
|
168
|
+
icon5.addFile(u""+ icons_path +"redo.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
169
|
+
self.button_forward.setIcon(icon5)
|
|
154
170
|
self.button_forward.setIconSize(QSize(20, 20))
|
|
155
171
|
|
|
156
172
|
self.horizontalLayout_2.addWidget(self.button_forward)
|
|
@@ -171,9 +187,9 @@ class Ui_CalibrationTab(object):
|
|
|
171
187
|
self.button_close_tab.setStyleSheet(u"QToolButton{\n"
|
|
172
188
|
"border-radius: 15px;\n"
|
|
173
189
|
"}")
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
self.button_close_tab.setIcon(
|
|
190
|
+
icon6 = QIcon()
|
|
191
|
+
icon6.addFile(u""+ icons_path +"close.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
192
|
+
self.button_close_tab.setIcon(icon6)
|
|
177
193
|
self.button_close_tab.setIconSize(QSize(15, 15))
|
|
178
194
|
|
|
179
195
|
self.horizontalLayout_20.addWidget(self.button_close_tab)
|
|
@@ -252,7 +268,7 @@ class Ui_CalibrationTab(object):
|
|
|
252
268
|
self.scrollArea.setWidgetResizable(True)
|
|
253
269
|
self.scrollAreaWidgetContents = QWidget()
|
|
254
270
|
self.scrollAreaWidgetContents.setObjectName(u"scrollAreaWidgetContents")
|
|
255
|
-
self.scrollAreaWidgetContents.setGeometry(QRect(0, 0, 480,
|
|
271
|
+
self.scrollAreaWidgetContents.setGeometry(QRect(0, 0, 480, 605))
|
|
256
272
|
sizePolicy.setHeightForWidth(self.scrollAreaWidgetContents.sizePolicy().hasHeightForWidth())
|
|
257
273
|
self.scrollAreaWidgetContents.setSizePolicy(sizePolicy)
|
|
258
274
|
self.scrollAreaWidgetContents.setMinimumSize(QSize(0, 0))
|
|
@@ -276,11 +292,11 @@ class Ui_CalibrationTab(object):
|
|
|
276
292
|
self.label_ncam.setSizePolicy(sizePolicy2)
|
|
277
293
|
self.label_ncam.setMinimumSize(QSize(0, 20))
|
|
278
294
|
self.label_ncam.setMaximumSize(QSize(80, 20))
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
self.label_ncam.setFont(
|
|
295
|
+
font4 = QFont()
|
|
296
|
+
font4.setPointSize(10)
|
|
297
|
+
font4.setBold(False)
|
|
298
|
+
font4.setItalic(True)
|
|
299
|
+
self.label_ncam.setFont(font4)
|
|
284
300
|
self.label_ncam.setAlignment(Qt.AlignmentFlag.AlignLeading|Qt.AlignmentFlag.AlignLeft|Qt.AlignmentFlag.AlignVCenter)
|
|
285
301
|
|
|
286
302
|
self.horizontalLayout_5.addWidget(self.label_ncam)
|
|
@@ -321,7 +337,7 @@ class Ui_CalibrationTab(object):
|
|
|
321
337
|
self.label_list.setSizePolicy(sizePolicy2)
|
|
322
338
|
self.label_list.setMinimumSize(QSize(110, 20))
|
|
323
339
|
self.label_list.setMaximumSize(QSize(1000, 20))
|
|
324
|
-
self.label_list.setFont(
|
|
340
|
+
self.label_list.setFont(font4)
|
|
325
341
|
self.label_list.setAlignment(Qt.AlignmentFlag.AlignLeading|Qt.AlignmentFlag.AlignLeft|Qt.AlignmentFlag.AlignVCenter)
|
|
326
342
|
|
|
327
343
|
self.horizontalLayout_3.addWidget(self.label_list)
|
|
@@ -330,12 +346,10 @@ class Ui_CalibrationTab(object):
|
|
|
330
346
|
self.button_scan_list.setObjectName(u"button_scan_list")
|
|
331
347
|
self.button_scan_list.setMinimumSize(QSize(20, 20))
|
|
332
348
|
self.button_scan_list.setMaximumSize(QSize(20, 20))
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
icon6.addFile(u""+ icons_path +"scan_list.png", QSize(), QIcon.Normal, QIcon.Off)
|
|
338
|
-
self.button_scan_list.setIcon(icon6)
|
|
349
|
+
self.button_scan_list.setFont(font2)
|
|
350
|
+
icon7 = QIcon()
|
|
351
|
+
icon7.addFile(u""+ icons_path +"scan_list.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
352
|
+
self.button_scan_list.setIcon(icon7)
|
|
339
353
|
self.button_scan_list.setIconSize(QSize(18, 18))
|
|
340
354
|
self.button_scan_list.setCheckable(False)
|
|
341
355
|
|
|
@@ -349,10 +363,10 @@ class Ui_CalibrationTab(object):
|
|
|
349
363
|
self.button_import.setObjectName(u"button_import")
|
|
350
364
|
self.button_import.setMinimumSize(QSize(20, 20))
|
|
351
365
|
self.button_import.setMaximumSize(QSize(20, 20))
|
|
352
|
-
self.button_import.setFont(
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
self.button_import.setIcon(
|
|
366
|
+
self.button_import.setFont(font2)
|
|
367
|
+
icon8 = QIcon()
|
|
368
|
+
icon8.addFile(u""+ icons_path +"read.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
369
|
+
self.button_import.setIcon(icon8)
|
|
356
370
|
self.button_import.setIconSize(QSize(18, 18))
|
|
357
371
|
self.button_import.setCheckable(False)
|
|
358
372
|
|
|
@@ -369,10 +383,10 @@ class Ui_CalibrationTab(object):
|
|
|
369
383
|
self.button_copy.setObjectName(u"button_copy")
|
|
370
384
|
self.button_copy.setMinimumSize(QSize(20, 20))
|
|
371
385
|
self.button_copy.setMaximumSize(QSize(20, 20))
|
|
372
|
-
self.button_copy.setFont(
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
self.button_copy.setIcon(
|
|
386
|
+
self.button_copy.setFont(font2)
|
|
387
|
+
icon9 = QIcon()
|
|
388
|
+
icon9.addFile(u""+ icons_path +"copy.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
389
|
+
self.button_copy.setIcon(icon9)
|
|
376
390
|
self.button_copy.setIconSize(QSize(18, 18))
|
|
377
391
|
self.button_copy.setCheckable(False)
|
|
378
392
|
|
|
@@ -382,10 +396,10 @@ class Ui_CalibrationTab(object):
|
|
|
382
396
|
self.button_cut.setObjectName(u"button_cut")
|
|
383
397
|
self.button_cut.setMinimumSize(QSize(20, 20))
|
|
384
398
|
self.button_cut.setMaximumSize(QSize(20, 20))
|
|
385
|
-
self.button_cut.setFont(
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
self.button_cut.setIcon(
|
|
399
|
+
self.button_cut.setFont(font2)
|
|
400
|
+
icon10 = QIcon()
|
|
401
|
+
icon10.addFile(u""+ icons_path +"cut.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
402
|
+
self.button_cut.setIcon(icon10)
|
|
389
403
|
self.button_cut.setIconSize(QSize(18, 18))
|
|
390
404
|
self.button_cut.setCheckable(False)
|
|
391
405
|
|
|
@@ -395,10 +409,10 @@ class Ui_CalibrationTab(object):
|
|
|
395
409
|
self.button_paste_below.setObjectName(u"button_paste_below")
|
|
396
410
|
self.button_paste_below.setMinimumSize(QSize(20, 20))
|
|
397
411
|
self.button_paste_below.setMaximumSize(QSize(20, 20))
|
|
398
|
-
self.button_paste_below.setFont(
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
self.button_paste_below.setIcon(
|
|
412
|
+
self.button_paste_below.setFont(font2)
|
|
413
|
+
icon11 = QIcon()
|
|
414
|
+
icon11.addFile(u""+ icons_path +"paste_below.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
415
|
+
self.button_paste_below.setIcon(icon11)
|
|
402
416
|
self.button_paste_below.setIconSize(QSize(18, 18))
|
|
403
417
|
self.button_paste_below.setCheckable(False)
|
|
404
418
|
|
|
@@ -408,10 +422,10 @@ class Ui_CalibrationTab(object):
|
|
|
408
422
|
self.button_paste_above.setObjectName(u"button_paste_above")
|
|
409
423
|
self.button_paste_above.setMinimumSize(QSize(20, 20))
|
|
410
424
|
self.button_paste_above.setMaximumSize(QSize(20, 20))
|
|
411
|
-
self.button_paste_above.setFont(
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
self.button_paste_above.setIcon(
|
|
425
|
+
self.button_paste_above.setFont(font2)
|
|
426
|
+
icon12 = QIcon()
|
|
427
|
+
icon12.addFile(u""+ icons_path +"paste_above.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
428
|
+
self.button_paste_above.setIcon(icon12)
|
|
415
429
|
self.button_paste_above.setIconSize(QSize(18, 18))
|
|
416
430
|
self.button_paste_above.setCheckable(False)
|
|
417
431
|
|
|
@@ -428,10 +442,10 @@ class Ui_CalibrationTab(object):
|
|
|
428
442
|
self.button_clean.setObjectName(u"button_clean")
|
|
429
443
|
self.button_clean.setMinimumSize(QSize(20, 20))
|
|
430
444
|
self.button_clean.setMaximumSize(QSize(20, 20))
|
|
431
|
-
self.button_clean.setFont(
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
self.button_clean.setIcon(
|
|
445
|
+
self.button_clean.setFont(font2)
|
|
446
|
+
icon13 = QIcon()
|
|
447
|
+
icon13.addFile(u""+ icons_path +"clean.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
448
|
+
self.button_clean.setIcon(icon13)
|
|
435
449
|
self.button_clean.setIconSize(QSize(18, 18))
|
|
436
450
|
self.button_clean.setCheckable(False)
|
|
437
451
|
|
|
@@ -443,6 +457,7 @@ class Ui_CalibrationTab(object):
|
|
|
443
457
|
self.calTree = CalibrationTree(self.scrollAreaWidgetContents)
|
|
444
458
|
self.calTree.setObjectName(u"calTree")
|
|
445
459
|
self.calTree.setUniformRowHeights(True)
|
|
460
|
+
self.calTree.setColumnCount(2)
|
|
446
461
|
self.calTree.header().setVisible(True)
|
|
447
462
|
|
|
448
463
|
self.verticalLayout_10.addWidget(self.calTree)
|
|
@@ -459,6 +474,17 @@ class Ui_CalibrationTab(object):
|
|
|
459
474
|
QWidget.setTabOrder(self.button_back, self.button_forward)
|
|
460
475
|
QWidget.setTabOrder(self.button_forward, self.button_close_tab)
|
|
461
476
|
QWidget.setTabOrder(self.button_close_tab, self.scrollArea)
|
|
477
|
+
QWidget.setTabOrder(self.scrollArea, self.button_info)
|
|
478
|
+
QWidget.setTabOrder(self.button_info, self.button_CalVi)
|
|
479
|
+
QWidget.setTabOrder(self.button_CalVi, self.spin_ncam)
|
|
480
|
+
QWidget.setTabOrder(self.spin_ncam, self.button_scan_list)
|
|
481
|
+
QWidget.setTabOrder(self.button_scan_list, self.button_import)
|
|
482
|
+
QWidget.setTabOrder(self.button_import, self.button_copy)
|
|
483
|
+
QWidget.setTabOrder(self.button_copy, self.button_cut)
|
|
484
|
+
QWidget.setTabOrder(self.button_cut, self.button_paste_below)
|
|
485
|
+
QWidget.setTabOrder(self.button_paste_below, self.button_paste_above)
|
|
486
|
+
QWidget.setTabOrder(self.button_paste_above, self.button_clean)
|
|
487
|
+
QWidget.setTabOrder(self.button_clean, self.calTree)
|
|
462
488
|
|
|
463
489
|
self.retranslateUi(CalibrationTab)
|
|
464
490
|
|
|
@@ -470,6 +496,10 @@ class Ui_CalibrationTab(object):
|
|
|
470
496
|
self.icon.setText("")
|
|
471
497
|
self.name_tab.setText(QCoreApplication.translate("CalibrationTab", u" Calibration", None))
|
|
472
498
|
self.label_done.setText("")
|
|
499
|
+
#if QT_CONFIG(tooltip)
|
|
500
|
+
self.button_info.setToolTip(QCoreApplication.translate("CalibrationTab", u"Download the latest version of PaIRS-UniNa", None))
|
|
501
|
+
#endif // QT_CONFIG(tooltip)
|
|
502
|
+
self.button_info.setText("")
|
|
473
503
|
self.button_CalVi.setText("")
|
|
474
504
|
self.label_number.setText(QCoreApplication.translate("CalibrationTab", u"1", None))
|
|
475
505
|
#if QT_CONFIG(tooltip)
|
|
@@ -541,5 +571,8 @@ class Ui_CalibrationTab(object):
|
|
|
541
571
|
#if QT_CONFIG(shortcut)
|
|
542
572
|
self.button_clean.setShortcut(QCoreApplication.translate("CalibrationTab", u"Ctrl+O", None))
|
|
543
573
|
#endif // QT_CONFIG(shortcut)
|
|
574
|
+
___qtreewidgetitem = self.calTree.headerItem()
|
|
575
|
+
___qtreewidgetitem.setText(1, QCoreApplication.translate("CalibrationTab", u"filename", None));
|
|
576
|
+
___qtreewidgetitem.setText(0, QCoreApplication.translate("CalibrationTab", u"#", None));
|
|
544
577
|
# retranslateUi
|
|
545
578
|
|
PaIRS_UniNa/ui_gPairs.py
CHANGED
|
@@ -2,9 +2,9 @@ from .addwidgets_ps import icons_path
|
|
|
2
2
|
# -*- coding: utf-8 -*-
|
|
3
3
|
|
|
4
4
|
################################################################################
|
|
5
|
-
## Form generated from reading UI file '
|
|
5
|
+
## Form generated from reading UI file 'gPairsiFCFJV.ui'
|
|
6
6
|
##
|
|
7
|
-
## Created by: Qt User Interface Compiler version 6.
|
|
7
|
+
## Created by: Qt User Interface Compiler version 6.9.1
|
|
8
8
|
##
|
|
9
9
|
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
10
10
|
################################################################################
|
|
@@ -166,7 +166,7 @@ class Ui_gPairs(object):
|
|
|
166
166
|
self.w_Buttons_Run.setMinimumSize(QSize(0, 60))
|
|
167
167
|
self.w_Buttons_Run.setMaximumSize(QSize(16777215, 60))
|
|
168
168
|
self.horizontalLayout_10 = QHBoxLayout(self.w_Buttons_Run)
|
|
169
|
-
self.horizontalLayout_10.setSpacing(
|
|
169
|
+
self.horizontalLayout_10.setSpacing(8)
|
|
170
170
|
self.horizontalLayout_10.setObjectName(u"horizontalLayout_10")
|
|
171
171
|
self.horizontalLayout_10.setContentsMargins(0, 0, 0, 0)
|
|
172
172
|
self.logo = QLabel(self.w_Buttons_Run)
|
|
@@ -185,7 +185,7 @@ class Ui_gPairs(object):
|
|
|
185
185
|
font1 = QFont()
|
|
186
186
|
font1.setPointSize(16)
|
|
187
187
|
self.button_PaIRS_download.setFont(font1)
|
|
188
|
-
self.button_PaIRS_download.setStyleSheet(u"QToolButton
|
|
188
|
+
self.button_PaIRS_download.setStyleSheet(u"QToolButton{border: none}")
|
|
189
189
|
self.button_PaIRS_download.setIcon(icon13)
|
|
190
190
|
self.button_PaIRS_download.setIconSize(QSize(24, 24))
|
|
191
191
|
self.button_PaIRS_download.setCheckable(False)
|
|
@@ -390,7 +390,7 @@ class Ui_gPairs(object):
|
|
|
390
390
|
self.spin_nworkers.setFont(font)
|
|
391
391
|
self.spin_nworkers.setStyleSheet(u"padding-bottom: 2px;")
|
|
392
392
|
self.spin_nworkers.setButtonSymbols(QAbstractSpinBox.ButtonSymbols.NoButtons)
|
|
393
|
-
self.spin_nworkers.setProperty("showGroupSeparator", True)
|
|
393
|
+
self.spin_nworkers.setProperty(u"showGroupSeparator", True)
|
|
394
394
|
|
|
395
395
|
self.horizontalLayout_4.addWidget(self.spin_nworkers)
|
|
396
396
|
|
|
@@ -563,7 +563,7 @@ class Ui_gPairs(object):
|
|
|
563
563
|
icon24 = QIcon()
|
|
564
564
|
icon24.addFile(u""+ icons_path +"workspace.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
565
565
|
self.workspace_icon.setIcon(icon24)
|
|
566
|
-
self.workspace_icon.setIconSize(QSize(
|
|
566
|
+
self.workspace_icon.setIconSize(QSize(57, 57))
|
|
567
567
|
|
|
568
568
|
self.horizontalLayout_2.addWidget(self.workspace_icon)
|
|
569
569
|
|
|
@@ -634,7 +634,7 @@ class Ui_gPairs(object):
|
|
|
634
634
|
icon25 = QIcon()
|
|
635
635
|
icon25.addFile(u""+ icons_path +"project.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
|
|
636
636
|
self.title_icon.setIcon(icon25)
|
|
637
|
-
self.title_icon.setIconSize(QSize(
|
|
637
|
+
self.title_icon.setIconSize(QSize(57, 57))
|
|
638
638
|
|
|
639
639
|
self.horizontalLayout_2.addWidget(self.title_icon)
|
|
640
640
|
|
|
@@ -692,7 +692,7 @@ class Ui_gPairs(object):
|
|
|
692
692
|
gPairs.setStatusBar(self.statusbar)
|
|
693
693
|
self.menubar = QMenuBar(gPairs)
|
|
694
694
|
self.menubar.setObjectName(u"menubar")
|
|
695
|
-
self.menubar.setGeometry(QRect(0, 0, 1800,
|
|
695
|
+
self.menubar.setGeometry(QRect(0, 0, 1800, 33))
|
|
696
696
|
self.menubar.setFont(font)
|
|
697
697
|
self.menubar.setNativeMenuBar(False)
|
|
698
698
|
self.menuFile = QMenu(self.menubar)
|
PaIRS_UniNa/whatsnew.txt
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
% Fixed
|
|
2
|
-
*
|
|
3
|
-
§ PaIRS now ships with executables! Download them from the <a href="https://www.pairs.unina.it/#download">PaIRS website</a>.<br>
|
|
1
|
+
% Fixed an issue in the "Edit list" functionality of the image-tree in the Input tab.<br><br>Improved reliability in the assessment of the PIV process stability.<br><br>
|
|
2
|
+
* Minor UI refinements for clearer visual feedback during user interactions.<br><br>Improved visualization of contextual help messages across the interface.<br><br>More robust management and restoration of global settings when loading previously saved workspaces.<br>
|
|
4
3
|
|
|
5
4
|
# !=critical issue, %=bugfix, &=announcement, *=improvement, £=bold font without icon, §=python distribution
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PaIRS_UniNa
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.10
|
|
4
4
|
Summary: PaIRS - Particle Image Reconstruction Software
|
|
5
5
|
Home-page: https://pairs.unina.it/
|
|
6
6
|
Author: Gerardo Paolillo and Tommaso Astarita
|
|
@@ -48,17 +48,16 @@ PaIRS-UniNa is supported by Python 3.10+ and is compatible with all the operatin
|
|
|
48
48
|
|
|
49
49
|
For further information, please visit the [PaIRS website](https://www.pairs.unina.it/).
|
|
50
50
|
|
|
51
|
-
## What's new in PaIRS-UniNa 0.2.
|
|
51
|
+
## What's new in PaIRS-UniNa 0.2.10
|
|
52
52
|
|
|
53
53
|
### Bug fixes:
|
|
54
|
-
- Fixed
|
|
55
|
-
-
|
|
56
|
-
- Image transformations are now preserved even with automatic reshape/resize option enabled in the Output tab.
|
|
54
|
+
- Fixed an issue affecting the *Edit list* functionality of the image-tree in the Input tab.
|
|
55
|
+
- Improved the reliability of the assessment of the PIV process stability.
|
|
57
56
|
|
|
58
57
|
### User-interface enhancements:
|
|
59
|
-
-
|
|
60
|
-
-
|
|
61
|
-
-
|
|
58
|
+
- Applied minor UI refinements to provide clearer visual feedback during user interactions.
|
|
59
|
+
- Improved visualization of contextual help messages across the interface.
|
|
60
|
+
- Enhanced management and restoration of global settings when loading previously saved workspaces.
|
|
62
61
|
|
|
63
62
|
### Distribution:
|
|
64
63
|
- ready-to-use executables of PaIRS are now available!
|
|
@@ -1,33 +1,34 @@
|
|
|
1
|
-
PaIRS_UniNa/Calibration_Tab.py,sha256=
|
|
2
|
-
PaIRS_UniNa/Changes.txt,sha256=
|
|
1
|
+
PaIRS_UniNa/Calibration_Tab.py,sha256=29NVTZ8zCjpa5j8TTUUpFngZC9JQkCtl22BeY61bWo4,13850
|
|
2
|
+
PaIRS_UniNa/Changes.txt,sha256=rTBicRmt7BZu-uwkmhZMNmVrscL6G3lSthy_Wv4L5oc,13492
|
|
3
3
|
PaIRS_UniNa/Custom_Top.py,sha256=lBF8_GmJYauWSuhOUH0R-kllv7_gBLIcVZruarVe6kg,11943
|
|
4
|
-
PaIRS_UniNa/Explorer.py,sha256=
|
|
5
|
-
PaIRS_UniNa/FolderLoop.py,sha256=
|
|
6
|
-
PaIRS_UniNa/Input_Tab.py,sha256=
|
|
7
|
-
PaIRS_UniNa/Input_Tab_CalVi.py,sha256=
|
|
8
|
-
PaIRS_UniNa/Input_Tab_tools.py,sha256=
|
|
4
|
+
PaIRS_UniNa/Explorer.py,sha256=RDZwdDxY34KfloFIjNrE3q7etFjWV8kHCLIMe4P1ipU,147630
|
|
5
|
+
PaIRS_UniNa/FolderLoop.py,sha256=V1OKKf_iscHtNFI3ilOsx7sLZ1oKlKaUa1Lcz-zYk3U,25244
|
|
6
|
+
PaIRS_UniNa/Input_Tab.py,sha256=9-ugZ2ZI1BtFN_HZJvJR_lniBf7CzY8xeaNg1UCjQeE,37850
|
|
7
|
+
PaIRS_UniNa/Input_Tab_CalVi.py,sha256=wZFzdkRjGPsi5Zgky6TQ0KH3W9tjY-tRQN-2ENW9yas,34358
|
|
8
|
+
PaIRS_UniNa/Input_Tab_tools.py,sha256=9GgRiXE1u8QpWEgPuQw8P99VDPMt2HPHP9FzoV76-L4,124014
|
|
9
9
|
PaIRS_UniNa/Log_Tab.py,sha256=beiXlmPlIpt1VMl10ZxFGK6mTpWmm8Jy4d2ckNsQigs,3603
|
|
10
|
-
PaIRS_UniNa/Output_Tab.py,sha256=
|
|
10
|
+
PaIRS_UniNa/Output_Tab.py,sha256=oUwP0WhrOLcV_g3jKgKfGHdqPs5ydtQNknwgbYIZxR0,41024
|
|
11
11
|
PaIRS_UniNa/PaIRS.py,sha256=paXrJMdEqwjH18suV1GREZi5VNo1x--Bam2JT1kpoBs,347
|
|
12
12
|
PaIRS_UniNa/PaIRS_PIV.py,sha256=GpDEj0L7ZSDyjurCBSFMIW1Zs339UxnLeI98cGUlRyI,46204
|
|
13
|
-
PaIRS_UniNa/PaIRS_pypacks.py,sha256=
|
|
14
|
-
PaIRS_UniNa/Process_Tab.py,sha256=
|
|
13
|
+
PaIRS_UniNa/PaIRS_pypacks.py,sha256=VijnrGtZkHpy7qmnso4Xn-tx9sGLSDi0pyotC9EjQhs,58158
|
|
14
|
+
PaIRS_UniNa/Process_Tab.py,sha256=2cq3GyO7Lnn2k8oHByyWKVih2tyGlxFYUoUFkhK4O6I,77336
|
|
15
15
|
PaIRS_UniNa/Process_Tab_CalVi.py,sha256=wpYzuI4a-mb5kowxDywA93k3AJHQAA4wZ6LwZsjArpo,12756
|
|
16
|
-
PaIRS_UniNa/Process_Tab_Disp.py,sha256=
|
|
16
|
+
PaIRS_UniNa/Process_Tab_Disp.py,sha256=JJnhSz55gq2BsIQRJWL7j1HzgSTlow6MqYKjmt0-JmE,6186
|
|
17
17
|
PaIRS_UniNa/Process_Tab_Min.py,sha256=RCP11E7aKoP_wU6yhktUN6N9rD5SwYZhfCGGldq7tYs,4085
|
|
18
18
|
PaIRS_UniNa/ResizePopup.py,sha256=XvS5VFDE_s3sNv6pcWIt4rodSk5I_oFl3S9tRK90evg,1804
|
|
19
|
-
PaIRS_UniNa/
|
|
20
|
-
PaIRS_UniNa/
|
|
21
|
-
PaIRS_UniNa/
|
|
22
|
-
PaIRS_UniNa/
|
|
23
|
-
PaIRS_UniNa/
|
|
24
|
-
PaIRS_UniNa/
|
|
25
|
-
PaIRS_UniNa/
|
|
19
|
+
PaIRS_UniNa/SPIVCalHelp.py,sha256=kQu9xKJAdzDezb2OEWkDfB1ME52xrZONtjDTp8Sjj3A,5796
|
|
20
|
+
PaIRS_UniNa/Saving_tools.py,sha256=HUf9KD-I6HDXS8iuKR13rRhBfEn1oR8bKBOQd0zJ9AU,11256
|
|
21
|
+
PaIRS_UniNa/TabTools.py,sha256=AZ2dreseQulTqgtBhVc_SGg1SGQyJ1EvH-trFD-S6nI,61108
|
|
22
|
+
PaIRS_UniNa/Vis_Tab.py,sha256=9hjlTm4-dH1evej4132N6Z5LvFcQ37SXCnLYv7jm6mo,98179
|
|
23
|
+
PaIRS_UniNa/Vis_Tab_CalVi.py,sha256=6G0Ewbh7spRYSvGyftTgv4r6oYj39w5gBJCqTaXq_Wk,42872
|
|
24
|
+
PaIRS_UniNa/Whatsnew.py,sha256=fqpSBLU0uFap-ZlYQyOtE6kOwWyuXJPJz8LUHA4Zi58,5816
|
|
25
|
+
PaIRS_UniNa/_PaIRS_PIV.so,sha256=3CKDqpKEhKbKFtm0vdEJ7SjZZk6vfS9LeX7Z3fewvvQ,7829920
|
|
26
|
+
PaIRS_UniNa/__init__.py,sha256=WstLimEuja4NHLWpn_sljNaKCN0J1O00HssTpBMV21U,139
|
|
26
27
|
PaIRS_UniNa/__main__.py,sha256=639RU4DJEr8cAWbT8BOikjT_hd6Vxvo5xgWxyo54GAI,1369
|
|
27
|
-
PaIRS_UniNa/addwidgets_ps.py,sha256=
|
|
28
|
+
PaIRS_UniNa/addwidgets_ps.py,sha256=y74S3c9sJNG4wrs4DBnHLE1vopEzUjLs0lKyF3gZ-6o,60492
|
|
28
29
|
PaIRS_UniNa/calib.py,sha256=njCPx4qMcOrpJBLQjQXVKneqo-svl4gjGWoNIAB2jgk,66036
|
|
29
30
|
PaIRS_UniNa/calibView.py,sha256=jzOw-rHko87Cl11GnOH5zZzko3Ri86T9fIwgmU2JZig,34366
|
|
30
|
-
PaIRS_UniNa/gPaIRS.py,sha256=
|
|
31
|
+
PaIRS_UniNa/gPaIRS.py,sha256=COtvYtoweLk_zQMjHm4jjSCWwbZnogxlHaA4ugIzwSQ,187117
|
|
31
32
|
PaIRS_UniNa/gPalette.py,sha256=MdS8CNPL_6i16QxFgsls6QBvHs6mcmZXj4fy4gAKWss,17201
|
|
32
33
|
PaIRS_UniNa/listLib.py,sha256=eyWTLZiIG4B60L87tcTZtRfNwJOMTkd_3_d0gHvU20Q,12135
|
|
33
34
|
PaIRS_UniNa/mtfPIV.py,sha256=z8MrMUIEG934TM7O0MX1IYcT7dnW35NumVkthm7YUlI,8051
|
|
@@ -36,13 +37,13 @@ PaIRS_UniNa/parForWorkers.py,sha256=W_4A5A4GtRQ0GLlPw5nkW5xs3hmgv9FH2LuU6HixhL0,
|
|
|
36
37
|
PaIRS_UniNa/pivParFor.py,sha256=oQX0Pz9EJh2Yf2KKGtM9RQ5wNpM452lWxkrilWJ6v4s,11153
|
|
37
38
|
PaIRS_UniNa/plt_util.py,sha256=CZ1rjiv9lZQQc8k2pSKKdi8Epb93sMbIbd5JapzH2hM,3186
|
|
38
39
|
PaIRS_UniNa/preProcParFor.py,sha256=XqigjWdcTWtYlEcdINx6YY_jE9BE3gw5ET_hITAMxJc,7474
|
|
39
|
-
PaIRS_UniNa/procTools.py,sha256=
|
|
40
|
+
PaIRS_UniNa/procTools.py,sha256=qjamhgHfl8lLbuRAVBJW6zZ_dx8VkmnuzKxmnm5ae1g,67651
|
|
40
41
|
PaIRS_UniNa/readcfg.py,sha256=RBbQNVNfChA8O-ZEWJliuu7T4xOS7PRxFE08TlJKekc,2122
|
|
41
|
-
PaIRS_UniNa/rqrdpckgs.txt,sha256=
|
|
42
|
+
PaIRS_UniNa/rqrdpckgs.txt,sha256=pd9RJPN8C3FWdd3Egr36v_GY14mrpEmYM1UeOA-yVkk,211
|
|
42
43
|
PaIRS_UniNa/stereoPivParFor.py,sha256=_5_9_G2F52FLmYcX_UDLBj_CN-7r17vKUcZavAxB53c,11248
|
|
43
44
|
PaIRS_UniNa/tAVarie.py,sha256=e-WzvImsH86t3B1-b716iJTETHesrNsNEfgwcl4u6Vg,9185
|
|
44
45
|
PaIRS_UniNa/tabSplitter.py,sha256=MHN6QeIKJywmdEY69k5KzvPzFr8B1tS8sgzRjgmCoG8,26597
|
|
45
|
-
PaIRS_UniNa/ui_Calibration_Tab.py,sha256=
|
|
46
|
+
PaIRS_UniNa/ui_Calibration_Tab.py,sha256=vXL5hLgbwjsgAbtuchLlzMVWSxI43m51w4yi_6xMKig,27367
|
|
46
47
|
PaIRS_UniNa/ui_Custom_Top.py,sha256=eyJ39I2mVJCxkYUDZZNoGIzr5Ut19nB72F8ssllh2oo,13972
|
|
47
48
|
PaIRS_UniNa/ui_Input_Tab.py,sha256=wsDgtCsqgYw2gL8JAgiYp7m2i0rMiKRmZzXfSETk5II,54767
|
|
48
49
|
PaIRS_UniNa/ui_Input_Tab_CalVi.py,sha256=0VgKTX0NnFpla0U2TmsCCaZMjVhOHPvqChsshkVyWOI,63458
|
|
@@ -56,9 +57,9 @@ PaIRS_UniNa/ui_ResizePopup.py,sha256=QvHCYUn4gop6ad0FRQwk_Vwic-GDs352zgW4nOEwPOw
|
|
|
56
57
|
PaIRS_UniNa/ui_Vis_Tab.py,sha256=zqMSxbiZZELXaGkCK5f7yz5A6tbygtayNdg9LqdppWI,83577
|
|
57
58
|
PaIRS_UniNa/ui_Vis_Tab_CalVi.py,sha256=-YpyQgycMVP_AzLdreNshprk1n_lNDxCtoeVgwmBEL8,63205
|
|
58
59
|
PaIRS_UniNa/ui_Whatsnew.py,sha256=mQkGMzgHQeQqAftF3icu7GvczazFDLMX8BCTem_27ss,5776
|
|
59
|
-
PaIRS_UniNa/ui_gPairs.py,sha256=
|
|
60
|
+
PaIRS_UniNa/ui_gPairs.py,sha256=bKj2GG0ON5co9M5_R31bCWtfnPH3_lzLqL88nrWFUAM,46005
|
|
60
61
|
PaIRS_UniNa/ui_infoPaIRS.py,sha256=AhJ8YUfH9zj6OEIec351cSAUFhpkHdzLWPOG1V0yj4M,37835
|
|
61
|
-
PaIRS_UniNa/whatsnew.txt,sha256=
|
|
62
|
+
PaIRS_UniNa/whatsnew.txt,sha256=cLd3XWSbMsoDWNl_sGr67KOmXp3Sz5GZNUs9-M0q0qk,549
|
|
62
63
|
PaIRS_UniNa/icons/abort.png,sha256=gdSz0VMk5BgZRPthvUgH_ZE5MmyOdOrE3jf2FG5qe2U,79115
|
|
63
64
|
PaIRS_UniNa/icons/about.png,sha256=svhha0azUto_21uljl1BEdhtSfvm7AyOBcjGMvgms2o,15523
|
|
64
65
|
PaIRS_UniNa/icons/align_all.png,sha256=rAzKfmsg6zI3CGmvAj8A5XhFsltsofdK5zYWLFezkDc,20200
|
|
@@ -125,6 +126,8 @@ PaIRS_UniNa/icons/flaticon_PaIRS_download_warning.png,sha256=NKqoTqENrm07-83eoz-
|
|
|
125
126
|
PaIRS_UniNa/icons/flip_y_off.png,sha256=JLw8pxFv4qrOWaFNG0wO1t8P-tc_hhEqN9ygToWgQNU,8368
|
|
126
127
|
PaIRS_UniNa/icons/flip_y_on.png,sha256=K6_pd63-qN6G_X7hkTg-QM9UV0Y743kbbst8YnK-sEs,9060
|
|
127
128
|
PaIRS_UniNa/icons/focusErrr.png,sha256=8VAc6ZyNE3L76neaDZ3NfFIxmG7yo0lYGT0Zcj1kf74,5471
|
|
129
|
+
PaIRS_UniNa/icons/folder_loop_cleanup.png,sha256=D6ViSfqgj8oDweQa7FyMVH4z3H18SqYGQH4-VF4_NXo,131184
|
|
130
|
+
PaIRS_UniNa/icons/folder_loop_cleanup_off.png,sha256=pPt0RHYLxcOqsg8H-SY8L9CbF2jHsW5s47FayWfcsGE,75870
|
|
128
131
|
PaIRS_UniNa/icons/gear.gif,sha256=m7sIA0rc7gKw9KQiZICbcLHil5O5Ikl5yd6h27k_L-I,397036
|
|
129
132
|
PaIRS_UniNa/icons/gear.png,sha256=NFW8Lh0DFsh0YgfxdSsOzW5eGXaq1TMOAWKK92Cus90,18442
|
|
130
133
|
PaIRS_UniNa/icons/ger.png,sha256=2K4ZK24TAioFC0ZDa2iS1RqSW65DZmW9ytDhKvMPbg0,59314
|
|
@@ -134,7 +137,8 @@ PaIRS_UniNa/icons/icon_CalVi.png,sha256=MBSK_59ezYrh8b_LNa5c-sXMDKr9xf5_DeoQV47o
|
|
|
134
137
|
PaIRS_UniNa/icons/icon_PaIRS.png,sha256=JiBJ-KJT0F-hGReCn_jj7pZWv3QPJxxcBsnmV0dUV4Q,12735
|
|
135
138
|
PaIRS_UniNa/icons/import.png,sha256=I3sf9OCf4809Rus0zazwxkIt_8htd0Rpvo5EaffFIyo,10255
|
|
136
139
|
PaIRS_UniNa/icons/import_set.png,sha256=BuM3V6EDltqvSw34yHvQnO-z5tLQ-X_kmZr9tq-24zI,42674
|
|
137
|
-
PaIRS_UniNa/icons/information.png,sha256=
|
|
140
|
+
PaIRS_UniNa/icons/information.png,sha256=Z9t9O9glTXtyxr6Gx-6eVkTj4jq6KT8yyZPhKpUqHvo,47956
|
|
141
|
+
PaIRS_UniNa/icons/information2.png,sha256=Y8X8sGHpoyNZmz1HREggBcswkhg9zjXb5U5Llt4qKPo,46340
|
|
138
142
|
PaIRS_UniNa/icons/input_logo.png,sha256=Ky84VLrnccPbCmTQnaZjmNmTWiWTq5b9FshMVtt-zME,28341
|
|
139
143
|
PaIRS_UniNa/icons/issue.png,sha256=Tld4fymZj8hnKBj7DPfyutRKYcwihbcmbesL9jsaG9M,20336
|
|
140
144
|
PaIRS_UniNa/icons/laser_NTR.png,sha256=Y2ZjL9jjM7pWnARXGyamgYMLyLAF05QPsVt21SRuot4,95270
|
|
@@ -223,6 +227,8 @@ PaIRS_UniNa/icons/scale_down.png,sha256=-WSKusP3wsPs_sueAn3A4UKmZfgFdeQdr0pbBsiM
|
|
|
223
227
|
PaIRS_UniNa/icons/scale_up.png,sha256=RBhQSNP1ee8rZS7Rec4UpoZeNeHWiXcJcb6_IXyCahI,12425
|
|
224
228
|
PaIRS_UniNa/icons/scan_list.png,sha256=5g4FKfk6krOPSkFpysUd_Ljk73TBTSwlCEJjSO5PqOw,52945
|
|
225
229
|
PaIRS_UniNa/icons/scan_path.png,sha256=ZufiFQuUZjqvc-TkbjARecoE8E6unvgsnqu4gmBWL9Y,16428
|
|
230
|
+
PaIRS_UniNa/icons/scan_path_loop.png,sha256=EaHie73NuPXTIPSIIbcE0R8gUDJteunqAtSJs8OvZss,37143
|
|
231
|
+
PaIRS_UniNa/icons/scan_path_loop_off.png,sha256=Yv8hMQXRbaKns4EEvIHBnTeEIJ6vH-WmN4fn19Qbe30,64894
|
|
226
232
|
PaIRS_UniNa/icons/search.png,sha256=LyiFYEGJe-UpzKKyFF0smqOTMg16PzlB0VEXL-ELZLw,25771
|
|
227
233
|
PaIRS_UniNa/icons/showIW_off.png,sha256=Br3vtrt3I58zpg3iYAR5his5ZckDbDxK-2GWBGU2NnU,6787
|
|
228
234
|
PaIRS_UniNa/icons/showIW_on.png,sha256=lVZVLJbnVlOKTb13P47ES04kZXOCQZ7c6ZAXVZ45HcM,7597
|
|
@@ -231,6 +237,8 @@ PaIRS_UniNa/icons/sort.png,sha256=7Xr-7PewlF3dhhajvg-yRAM1_i5v30Rt0mm4cg_EdX8,95
|
|
|
231
237
|
PaIRS_UniNa/icons/sort_reversed.png,sha256=NMp03EKpB4iPv2GlanqlNe2VvCxVH1QoQ43pdmCBs2Y,9524
|
|
232
238
|
PaIRS_UniNa/icons/spiv_proc.png,sha256=uEIn6J3jdCgmYMjfmp9kNt-RZrpuOHD_E8UVl_HV_Gc,72305
|
|
233
239
|
PaIRS_UniNa/icons/spiv_proc_off.png,sha256=qsmWCSCnox0hhl3ts8KLbDfTHkGp7_08jfc6zbX59Jw,44651
|
|
240
|
+
PaIRS_UniNa/icons/spiv_setup_no.png,sha256=TKYh-SVqGxTbiJcCV9HkZnuB4Z7Gtu9kqeZWs3WNOxY,505785
|
|
241
|
+
PaIRS_UniNa/icons/spiv_setup_ok.png,sha256=tTayaSOKmp2Afkwtf1jCabn7OHbzbDZuMp-MixlEYtg,504226
|
|
234
242
|
PaIRS_UniNa/icons/star.png,sha256=x4MMCbfs6x1SpxxBK2xMlwVvxMnZM79sgEcA2VE3Wgg,18352
|
|
235
243
|
PaIRS_UniNa/icons/step_inheritance.png,sha256=h_ftfhyX9h0wM8Fra-VPvqEyc3cuuIcXBF48U4hXdko,2419
|
|
236
244
|
PaIRS_UniNa/icons/subMIN_off.png,sha256=iaqOcEGzaERoVft5tWOG4UHhVWTyDrf6HNuy6nQKEHI,28055
|
|
@@ -319,7 +327,7 @@ PaIRS_UniNa/icons/colormaps/viridis.png,sha256=AYaCSf5zUaSiyfuC1aGnMxawTUTqVl-81
|
|
|
319
327
|
PaIRS_UniNa/icons/colormaps/whiteVector.png,sha256=-TPqm1S9e4OQ4Ee-9piT3bFfXg6TWEw20lvrmeCrnKY,350
|
|
320
328
|
PaIRS_UniNa/icons/colormaps/winter.png,sha256=ANqoViwtVfvAULokJaAp21xx8sjQJ1jEzYjAVo5WPtM,250
|
|
321
329
|
PaIRS_UniNa/icons/colormaps/yellowVector.png,sha256=RQJhq_Ft9GxpiH5Mac0E0KXJlfGtPdP5M4kn0qsrFz4,353
|
|
322
|
-
pairs_unina-0.2.
|
|
323
|
-
pairs_unina-0.2.
|
|
324
|
-
pairs_unina-0.2.
|
|
325
|
-
pairs_unina-0.2.
|
|
330
|
+
pairs_unina-0.2.10.dist-info/METADATA,sha256=JC0RaJD9hdY_ZeuRu1XqewBo_7z_gZ7np9YBpSgpRRs,8347
|
|
331
|
+
pairs_unina-0.2.10.dist-info/WHEEL,sha256=o0zAoJUNILGJZxEeFPjb7OMHp_94eqIkZBeZ0gvgOpo,114
|
|
332
|
+
pairs_unina-0.2.10.dist-info/top_level.txt,sha256=zxMsZBZRcjIXsv4CLSJ6RV0GhzeX89lx-JMfCCMkkYE,23
|
|
333
|
+
pairs_unina-0.2.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|