setiastrosuitepro 1.7.3__py3-none-any.whl → 1.7.4__py3-none-any.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.
Potentially problematic release.
This version of setiastrosuitepro might be problematic. Click here for more details.
- setiastro/saspro/__init__.py +15 -4
- setiastro/saspro/__main__.py +23 -5
- setiastro/saspro/_generated/build_info.py +2 -2
- setiastro/saspro/abe.py +4 -4
- setiastro/saspro/autostretch.py +29 -18
- setiastro/saspro/gui/main_window.py +5 -5
- setiastro/saspro/gui/mixins/toolbar_mixin.py +2 -2
- setiastro/saspro/legacy/numba_utils.py +301 -119
- setiastro/saspro/numba_utils.py +998 -270
- setiastro/saspro/ops/settings.py +6 -6
- setiastro/saspro/pixelmath.py +1 -1
- setiastro/saspro/planetprojection.py +310 -105
- setiastro/saspro/sfcc.py +14 -8
- setiastro/saspro/stacking_suite.py +292 -111
- setiastro/saspro/subwindow.py +28 -35
- setiastro/saspro/translations/all_source_strings.json +2 -2
- setiastro/saspro/translations/ar_translations.py +3 -3
- setiastro/saspro/translations/de_translations.py +2 -2
- setiastro/saspro/translations/es_translations.py +2 -2
- setiastro/saspro/translations/fr_translations.py +2 -2
- setiastro/saspro/translations/hi_translations.py +2 -2
- setiastro/saspro/translations/it_translations.py +2 -2
- setiastro/saspro/translations/ja_translations.py +2 -2
- setiastro/saspro/translations/pt_translations.py +2 -2
- setiastro/saspro/translations/ru_translations.py +2 -2
- setiastro/saspro/translations/saspro_ar.ts +2 -2
- setiastro/saspro/translations/saspro_de.ts +4 -4
- setiastro/saspro/translations/saspro_es.ts +2 -2
- setiastro/saspro/translations/saspro_fr.ts +2 -2
- setiastro/saspro/translations/saspro_hi.ts +2 -2
- setiastro/saspro/translations/saspro_it.ts +4 -4
- setiastro/saspro/translations/saspro_ja.ts +2 -2
- setiastro/saspro/translations/saspro_pt.ts +2 -2
- setiastro/saspro/translations/saspro_ru.ts +2 -2
- setiastro/saspro/translations/saspro_sw.ts +2 -2
- setiastro/saspro/translations/saspro_uk.ts +2 -2
- setiastro/saspro/translations/saspro_zh.ts +2 -2
- setiastro/saspro/translations/sw_translations.py +2 -2
- setiastro/saspro/translations/uk_translations.py +2 -2
- setiastro/saspro/translations/zh_translations.py +2 -2
- setiastro/saspro/window_shelf.py +62 -1
- {setiastrosuitepro-1.7.3.dist-info → setiastrosuitepro-1.7.4.dist-info}/METADATA +1 -1
- {setiastrosuitepro-1.7.3.dist-info → setiastrosuitepro-1.7.4.dist-info}/RECORD +47 -47
- {setiastrosuitepro-1.7.3.dist-info → setiastrosuitepro-1.7.4.dist-info}/entry_points.txt +1 -1
- {setiastrosuitepro-1.7.3.dist-info → setiastrosuitepro-1.7.4.dist-info}/WHEEL +0 -0
- {setiastrosuitepro-1.7.3.dist-info → setiastrosuitepro-1.7.4.dist-info}/licenses/LICENSE +0 -0
- {setiastrosuitepro-1.7.3.dist-info → setiastrosuitepro-1.7.4.dist-info}/licenses/license.txt +0 -0
setiastro/saspro/window_shelf.py
CHANGED
|
@@ -133,6 +133,10 @@ class WindowShelf(QDockWidget):
|
|
|
133
133
|
QTimer.singleShot(30, apply_rect)
|
|
134
134
|
QTimer.singleShot(120, apply_rect)
|
|
135
135
|
|
|
136
|
+
mdi = sub.mdiArea()
|
|
137
|
+
if mdi is not None:
|
|
138
|
+
mdi.setActiveSubWindow(sub)
|
|
139
|
+
|
|
136
140
|
sub.raise_()
|
|
137
141
|
sub.activateWindow()
|
|
138
142
|
finally:
|
|
@@ -163,6 +167,8 @@ class WindowShelf(QDockWidget):
|
|
|
163
167
|
self._saved_state.clear()
|
|
164
168
|
self.hide()
|
|
165
169
|
|
|
170
|
+
from PyQt6.QtWidgets import QMdiArea
|
|
171
|
+
|
|
166
172
|
class MinimizeInterceptor(QObject):
|
|
167
173
|
"""Redirect native minimize → shelf entry, capturing geometry BEFORE hiding."""
|
|
168
174
|
def __init__(self, shelf: WindowShelf, parent: QWidget | None = None):
|
|
@@ -172,7 +178,6 @@ class MinimizeInterceptor(QObject):
|
|
|
172
178
|
def eventFilter(self, obj, ev):
|
|
173
179
|
if isinstance(obj, QMdiSubWindow) and ev.type() == QEvent.Type.WindowStateChange:
|
|
174
180
|
if obj.windowState() & Qt.WindowState.WindowMinimized:
|
|
175
|
-
# Capture state FIRST, then cancel minimize and hide.
|
|
176
181
|
self.shelf.pre_capture_state(obj)
|
|
177
182
|
QTimer.singleShot(0, lambda o=obj: self._redirect(o))
|
|
178
183
|
return True
|
|
@@ -183,3 +188,59 @@ class MinimizeInterceptor(QObject):
|
|
|
183
188
|
sub.setWindowState(sub.windowState() & ~Qt.WindowState.WindowMinimized)
|
|
184
189
|
sub.hide()
|
|
185
190
|
self.shelf.add_entry(sub)
|
|
191
|
+
|
|
192
|
+
# NEW: pick a new active subwindow (so the hidden one isn't "active")
|
|
193
|
+
QTimer.singleShot(0, lambda s=sub: self._activate_next_visible(s))
|
|
194
|
+
|
|
195
|
+
def _activate_next_visible(self, hidden_sub: QMdiSubWindow):
|
|
196
|
+
mdi = hidden_sub.mdiArea()
|
|
197
|
+
if mdi is None:
|
|
198
|
+
return
|
|
199
|
+
|
|
200
|
+
# Prefer an order that feels stable to users
|
|
201
|
+
try:
|
|
202
|
+
subs = mdi.subWindowList(QMdiArea.WindowOrder.CreationOrder)
|
|
203
|
+
except Exception:
|
|
204
|
+
subs = mdi.subWindowList()
|
|
205
|
+
|
|
206
|
+
# Only candidates that can actually be "active"
|
|
207
|
+
cand = []
|
|
208
|
+
for sw in subs:
|
|
209
|
+
if sw is None or sw is hidden_sub:
|
|
210
|
+
continue
|
|
211
|
+
# hidden subwindows won't accept activation
|
|
212
|
+
if not sw.isVisible():
|
|
213
|
+
continue
|
|
214
|
+
# sanity: ignore minimized (shouldn't happen since you intercept)
|
|
215
|
+
if sw.windowState() & Qt.WindowState.WindowMinimized:
|
|
216
|
+
continue
|
|
217
|
+
cand.append(sw)
|
|
218
|
+
|
|
219
|
+
if not cand:
|
|
220
|
+
# Nothing else to activate
|
|
221
|
+
try:
|
|
222
|
+
mdi.setActiveSubWindow(None) # may be ignored on some platforms
|
|
223
|
+
except Exception:
|
|
224
|
+
pass
|
|
225
|
+
return
|
|
226
|
+
|
|
227
|
+
# Pick "next" relative to where the hidden window was in the list
|
|
228
|
+
try:
|
|
229
|
+
idx = subs.index(hidden_sub)
|
|
230
|
+
except Exception:
|
|
231
|
+
idx = -1
|
|
232
|
+
|
|
233
|
+
# Rotate forward to the next candidate
|
|
234
|
+
picked = None
|
|
235
|
+
if idx >= 0:
|
|
236
|
+
for off in range(1, len(subs) + 1):
|
|
237
|
+
sw = subs[(idx + off) % len(subs)]
|
|
238
|
+
if sw in cand:
|
|
239
|
+
picked = sw
|
|
240
|
+
break
|
|
241
|
+
if picked is None:
|
|
242
|
+
picked = cand[0]
|
|
243
|
+
|
|
244
|
+
mdi.setActiveSubWindow(picked)
|
|
245
|
+
picked.raise_()
|
|
246
|
+
picked.widget().setFocus(Qt.FocusReason.OtherFocusReason)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: setiastrosuitepro
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.4
|
|
4
4
|
Summary: Seti Astro Suite Pro - Advanced astrophotography toolkit for image calibration, stacking, registration, photometry, and visualization
|
|
5
5
|
License: GPL-3.0
|
|
6
6
|
License-File: LICENSE
|
|
@@ -179,11 +179,11 @@ setiastro/images/wims.png,sha256=EFFaRRUPMMPInRXSr_thUGQAxZTXgDVkjHeiaJiZmgk,117
|
|
|
179
179
|
setiastro/images/wrench_icon.png,sha256=4-DFNkXZUBkfK4WCFLdcr1-b3MsrYcE3DGrp4tL6AVI,72352
|
|
180
180
|
setiastro/images/xisfliberator.png,sha256=sPC7mPHX_ToyBh9nSLn9B5fVRaM89QvqzW30ohbW8VE,1551111
|
|
181
181
|
setiastro/qml/ResourceMonitor.qml,sha256=k9_qXKAZLi8vj-5BffJTJu_UkRnxunZKn53HthdySKE,3948
|
|
182
|
-
setiastro/saspro/__init__.py,sha256=
|
|
183
|
-
setiastro/saspro/__main__.py,sha256=
|
|
182
|
+
setiastro/saspro/__init__.py,sha256=6o8orhytzBWyJWBdG37xPcT6IVPZOG8d22FBVzn0Kac,902
|
|
183
|
+
setiastro/saspro/__main__.py,sha256=_zAHsw4SNWYzMXlswBuiMGgTUGYrU5p5-dsxhQ3_GWk,40789
|
|
184
184
|
setiastro/saspro/_generated/__init__.py,sha256=HbruQfKNbbVL4kh_t4oVG3UeUieaW8MUaqIcDCmnTvA,197
|
|
185
|
-
setiastro/saspro/_generated/build_info.py,sha256=
|
|
186
|
-
setiastro/saspro/abe.py,sha256=
|
|
185
|
+
setiastro/saspro/_generated/build_info.py,sha256=VxZWJy-KPNuwmcIbdSYbrwcuCOt5PSUVAua4TWpAV9k,111
|
|
186
|
+
setiastro/saspro/abe.py,sha256=l6o0klT-TqJppzEjCBb9isyIvtuf_UsuMZV8JvqbgPI,59779
|
|
187
187
|
setiastro/saspro/abe_preset.py,sha256=u9t16yTb9v98tLjhvh496Fsp3Z-dNiBSs5itnAaJwh8,7750
|
|
188
188
|
setiastro/saspro/aberration_ai.py,sha256=8LtDu_KuqvL-W0MTUIJq9KguMjJPiUEQjMUibY16H-4,41673
|
|
189
189
|
setiastro/saspro/aberration_ai_preset.py,sha256=nxtjo0qQYEML_8AzemMXtLNSdWf2FhMzPO9xELjlZ0U,9747
|
|
@@ -194,7 +194,7 @@ setiastro/saspro/add_stars.py,sha256=7rYunF4Khj67zDP2dcCmcNdNx0lYtWCFace9q5gz2_g
|
|
|
194
194
|
setiastro/saspro/astrobin_exporter.py,sha256=-MZFoUVVZ3FItTbwoqoLzuOsrR3R5RQ7zf4CGC9GTr8,47455
|
|
195
195
|
setiastro/saspro/astrospike.py,sha256=Or-14MS3iZrn3q1teNf-BkjVdMCsZYaON7T95dm96oI,5930
|
|
196
196
|
setiastro/saspro/astrospike_python.py,sha256=Ytl9EWsRDQBXZtwMqtCBjVdiEEr9isUeLnGmcuEw1fQ,74932
|
|
197
|
-
setiastro/saspro/autostretch.py,sha256=
|
|
197
|
+
setiastro/saspro/autostretch.py,sha256=mSDXjbKjip7BrB19QZhniBxlsf8C_X49IVlc8-0bN68,8298
|
|
198
198
|
setiastro/saspro/backgroundneutral.py,sha256=MFlBEwR65ASNXIY0S-0ZUaS89FCmNV_qafPs-OxUlO4,26383
|
|
199
199
|
setiastro/saspro/batch_convert.py,sha256=O46KyB-DBZiTHokaWt_op1GDRr3juSaDSeFzP3pv1Zs,12377
|
|
200
200
|
setiastro/saspro/batch_renamer.py,sha256=PZe2MEwjg0n055UETIbwnwdfAux4heTVx5gr3qnNW5g,21900
|
|
@@ -236,7 +236,7 @@ setiastro/saspro/ghs_preset.py,sha256=Zw3MJH5rEz7nqLdlmRBm3vYXgyopoupyDGAhM-PRXq
|
|
|
236
236
|
setiastro/saspro/graxpert.py,sha256=XSLeBhlAY2DkYUw93j2OEOuPLOPfzWYcT5Dz3JhhpW8,22579
|
|
237
237
|
setiastro/saspro/graxpert_preset.py,sha256=ESds2NPMPfsBHWNBfyYZ1rFpQxZ9gPOtxwz8enHfFfc,10719
|
|
238
238
|
setiastro/saspro/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
239
|
-
setiastro/saspro/gui/main_window.py,sha256=
|
|
239
|
+
setiastro/saspro/gui/main_window.py,sha256=cR7KPPqLE7FmO55Y0_VO-fhvS-gitFW-x65jfeAckDs,374942
|
|
240
240
|
setiastro/saspro/gui/mixins/__init__.py,sha256=ubdTIri0xoRs6MwDnEaVsAHbMxuPqz0CZcYcue3Mkcc,836
|
|
241
241
|
setiastro/saspro/gui/mixins/dock_mixin.py,sha256=C6IWKM-uP2ekqO7ozVQQcTnEgAkUL_OaRZbncIdrh8g,23893
|
|
242
242
|
setiastro/saspro/gui/mixins/file_mixin.py,sha256=p6gKJrDTKovK4YzowDQy1Z5nNsspQe7B9ICRXvCUvxc,17893
|
|
@@ -245,7 +245,7 @@ setiastro/saspro/gui/mixins/header_mixin.py,sha256=kfZUJviB61c8NBXFB3MVBEcRPX_36
|
|
|
245
245
|
setiastro/saspro/gui/mixins/mask_mixin.py,sha256=hrC5jLWxUZgQiYUXp7nvECo2uiarK7_HKgawG4HGB9w,15711
|
|
246
246
|
setiastro/saspro/gui/mixins/menu_mixin.py,sha256=eoXZPjMysBXcC2DllHmXwSFv2BnFO-GDUgm-9XpJU0c,16750
|
|
247
247
|
setiastro/saspro/gui/mixins/theme_mixin.py,sha256=td6hYnZn17lXlFxQOXgK7-qfKo6CIJACF8_zrULlEkc,20740
|
|
248
|
-
setiastro/saspro/gui/mixins/toolbar_mixin.py,sha256=
|
|
248
|
+
setiastro/saspro/gui/mixins/toolbar_mixin.py,sha256=ci15G3SNmysrkvFpx7bGxCK29uzdqLB6bYJYSKsne6s,92922
|
|
249
249
|
setiastro/saspro/gui/mixins/update_mixin.py,sha256=rq7J0Pcn_gO8UehCGVtcSvf-MDbmeGf796h0JBGr0sM,16545
|
|
250
250
|
setiastro/saspro/gui/mixins/view_mixin.py,sha256=EacXxtoAvkectGgLiahf3rHv2AaqKDQUteocVV_P834,17850
|
|
251
251
|
setiastro/saspro/gui/statistics_dialog.py,sha256=celhcsHcp3lNpox_X0ByAiYE80qFaF-dYyP8StzgrcU,1955
|
|
@@ -270,7 +270,7 @@ setiastro/saspro/layers_dock.py,sha256=1vdxAPmdQ1_8ZqA4IySspqvcydB_alSj3AARoWbb2
|
|
|
270
270
|
setiastro/saspro/lazy_imports.py,sha256=0M-4zklRGlqt5tvV6XZEFm958cRrOkxrjvSp_Ib1_zA,6564
|
|
271
271
|
setiastro/saspro/legacy/__init__.py,sha256=NjuxU-id3METsQ6tNd53YVqDTZK6mEz7uYjLzguCdNQ,121
|
|
272
272
|
setiastro/saspro/legacy/image_manager.py,sha256=qH0NHRjJu6vDWTEYivTNifH9ytVRN1f5XMhm7pBCDVE,101597
|
|
273
|
-
setiastro/saspro/legacy/numba_utils.py,sha256=
|
|
273
|
+
setiastro/saspro/legacy/numba_utils.py,sha256=i6s7gNHRWXYlXYSsHZuKJeYRfmyGUHrtxBggO0Drego,141689
|
|
274
274
|
setiastro/saspro/legacy/xisf.py,sha256=Ah1CXDAohN__ej1Lq7LPU8vGLnDz8fluLQTGE71aUoc,52669
|
|
275
275
|
setiastro/saspro/linear_fit.py,sha256=s17ZExDxToqBuqv14-o6OFQpXYTyW2TUj_EunohxvAk,20918
|
|
276
276
|
setiastro/saspro/live_stacking.py,sha256=txqnqzPCJa4Ub-XQmfHRy8xuqY-5L129ryuY2LhA_e0,81253
|
|
@@ -292,7 +292,7 @@ setiastro/saspro/morphology.py,sha256=WdxA3yLdMCLsAQoRY6qmP3LB5jjZNzliFBhuNkGN_o
|
|
|
292
292
|
setiastro/saspro/multiscale_decomp.py,sha256=GQ6iTFcTDxj0WvnO0bQjTz8G4Wli9Dl9bQNeEcBpxBw,66724
|
|
293
293
|
setiastro/saspro/narrowband_normalization.py,sha256=mVzf8JJVZREbsai63GspR41iH3WnwGrYu0pywczfIi0,64036
|
|
294
294
|
setiastro/saspro/nbtorgb_stars.py,sha256=uteG7X0g2nC9bIJwb_1TfdQP1xUY_jCI_hbiAygMRJg,23329
|
|
295
|
-
setiastro/saspro/numba_utils.py,sha256=
|
|
295
|
+
setiastro/saspro/numba_utils.py,sha256=0umQ5y5wPNXLLA_wzrFdHKNe9G2XIfpTVlUKJqJb2Ng,142240
|
|
296
296
|
setiastro/saspro/numba_warmup.py,sha256=6ZbZ2Ss4VrioLnMUcyRQyY2KR1fmRBqzyoUwxuvIyh4,5268
|
|
297
297
|
setiastro/saspro/ops/__init__.py,sha256=-GivNKsFxX46qeVUWnFVmzcCpQffT9RuWHmyUjfqvDQ,268
|
|
298
298
|
setiastro/saspro/ops/command_help_dialog.py,sha256=p4E9r0aMplQTTq7tZLScksAIPxmMWUmmnTQ0O_CY9aE,23061
|
|
@@ -300,13 +300,13 @@ setiastro/saspro/ops/command_runner.py,sha256=teyrnOVJcd2IVxIPhh-ud4Q8MrBMxzSNR3
|
|
|
300
300
|
setiastro/saspro/ops/commands.py,sha256=RoB99R3wN9j-K25QoJf5ir-CU35lL_d2veLFmfIXRMQ,54246
|
|
301
301
|
setiastro/saspro/ops/script_editor.py,sha256=ygWNzPJ3LxsQyTMgfvAHC9MuGnE8IXsRNKu19mLPYKY,40986
|
|
302
302
|
setiastro/saspro/ops/scripts.py,sha256=5BOnirSUia0NDg-keBy0HgfrElqcRIUNV-89FfYks8o,55817
|
|
303
|
-
setiastro/saspro/ops/settings.py,sha256=
|
|
303
|
+
setiastro/saspro/ops/settings.py,sha256=PchWiMEIZcKiZWo-aaE4FcFyHEoftieDOL1yRmVMPQg,29799
|
|
304
304
|
setiastro/saspro/parallel_utils.py,sha256=GoPhypMsp3k8dffv4129CjLU-xDqpu9wnhHI463RR6U,15931
|
|
305
305
|
setiastro/saspro/pedestal.py,sha256=WkwNaY0Qp1XP6KFtb6tnnKMhg71R5WEhVOdwWwJFmJ8,4014
|
|
306
306
|
setiastro/saspro/perfect_palette_picker.py,sha256=wJSTQQZgFm-baEBRopfF4Aw6vtvTmfL4_FZcd1q31vs,46937
|
|
307
307
|
setiastro/saspro/pipeline.py,sha256=QO8tttr050dbJkpkShO4g7gUEESAcRhhn7LLp0IwKyw,3774
|
|
308
|
-
setiastro/saspro/pixelmath.py,sha256
|
|
309
|
-
setiastro/saspro/planetprojection.py,sha256=
|
|
308
|
+
setiastro/saspro/pixelmath.py,sha256=-9q67VpQv3QTzKCKpyBbZVuIBUs9CiHTYJ9OezvFWeA,72203
|
|
309
|
+
setiastro/saspro/planetprojection.py,sha256=AWEpu0-EDWkBQCLl5Z-_A3y9IKmX9gQOUYJ3ek1MoqQ,152615
|
|
310
310
|
setiastro/saspro/plate_solver.py,sha256=QREhP8OKEm4jy2VGFEINW1q3-B4-lGnpIKdNiOwgxuc,96342
|
|
311
311
|
setiastro/saspro/project_io.py,sha256=usCbXxgB6bKj4L_71eTQIIzOzYAWxaNUoY4duB6oC5g,30357
|
|
312
312
|
setiastro/saspro/psf_utils.py,sha256=K3R4BjUzsopLRuLTbPlm8lBw3-x9twNWG4bK-4phDM4,4555
|
|
@@ -328,10 +328,10 @@ setiastro/saspro/ser_stacker.py,sha256=HLJgX-Dc8hIajNupoK6U-APbr1vsHOycerL5KeYDI
|
|
|
328
328
|
setiastro/saspro/ser_stacker_dialog.py,sha256=TfQBwbEF7722jJAb4nML-eQPe247usbeaby98sz_Hho,69471
|
|
329
329
|
setiastro/saspro/ser_tracking.py,sha256=HU5F2ZAekjBsKu-nYQVqbx3FukUqGYTkTK6J9n0tUgg,8077
|
|
330
330
|
setiastro/saspro/serviewer.py,sha256=QvPtJky2IzrywXaOYjeSZSNY0I64TSrzfgH7vRgGk7M,68763
|
|
331
|
-
setiastro/saspro/sfcc.py,sha256=
|
|
331
|
+
setiastro/saspro/sfcc.py,sha256=4wgXqH-E0OoSl_Ox4tMoExUHSnjosx2EnjjKeOXyZgo,89133
|
|
332
332
|
setiastro/saspro/shortcuts.py,sha256=QvFBXN_S8jqEwaP9m4pJMLVqzBmxo5HrjWhVCV9etQg,138256
|
|
333
333
|
setiastro/saspro/signature_insert.py,sha256=pWDxUO1Rxm27_fHSo2Y99bdOD2iG9q4AUjGR20x6TiA,70401
|
|
334
|
-
setiastro/saspro/stacking_suite.py,sha256=
|
|
334
|
+
setiastro/saspro/stacking_suite.py,sha256=5Ut4ImE8Ey4IAK52Bhwmwq8NvB5M3Cjm3b9156uYh0k,878510
|
|
335
335
|
setiastro/saspro/star_alignment.py,sha256=lRpDFvDKsMluu2P_kotQ9OumlnGtEWwGE7Gm-ZYccm8,326894
|
|
336
336
|
setiastro/saspro/star_alignment_preset.py,sha256=1QLRRUsVGr3-iX4kKvV9s-NuDRJVnRQat8qdTIs1nao,13164
|
|
337
337
|
setiastro/saspro/star_metrics.py,sha256=LRfBdqjwJJ9iz_paY-CkhPIqt2MxoXARLUy73ZKTA_0,1503
|
|
@@ -339,50 +339,50 @@ setiastro/saspro/star_spikes.py,sha256=PKI9C8SYmyi9St-IMtyJn75858kfi0NIJ26uDEjlS
|
|
|
339
339
|
setiastro/saspro/star_stretch.py,sha256=Sb4ZD3nTVS7zVIWPDtgjgwwhDnuOqM-cW6DBVLlqM1c,21308
|
|
340
340
|
setiastro/saspro/stat_stretch.py,sha256=DQjLzhsvcqhJrBmR_ZuSoGHEo5D1R7SHg_pfRnEZQ58,50934
|
|
341
341
|
setiastro/saspro/status_log_dock.py,sha256=SEZiijVLmtWbGxxjvf3XWUuMUhoVw50nwVfj7NhAl8s,2922
|
|
342
|
-
setiastro/saspro/subwindow.py,sha256=
|
|
342
|
+
setiastro/saspro/subwindow.py,sha256=5Df5-jFAHwDmEEL5_IswFQxmL7fZx0C5v1ya0b8etPk,143457
|
|
343
343
|
setiastro/saspro/supernovaasteroidhunter.py,sha256=PgCq3IR2pzsNBx6IxdhqfZlKPMZFhWI6cMJi600He78,66781
|
|
344
344
|
setiastro/saspro/swap_manager.py,sha256=7hJvQsnm1LSqLmXrj5uQkTSqNJq1SvrtrkCQPJdNego,4643
|
|
345
345
|
setiastro/saspro/texture_clarity.py,sha256=1snw-j91j5C--qi27VtQfZ_pIcRDLNH0K63tkFGvqe4,22918
|
|
346
346
|
setiastro/saspro/torch_backend.py,sha256=e8ZNIeSP33NjNRH4yNhrhZRo5k7tNEpJ6FNlOQ-kp8I,2473
|
|
347
347
|
setiastro/saspro/torch_rejection.py,sha256=p5xpslY4iBvqGZdlq-QObOssVx3maAG4CQHQxXETq64,19426
|
|
348
|
-
setiastro/saspro/translations/all_source_strings.json,sha256=
|
|
349
|
-
setiastro/saspro/translations/ar_translations.py,sha256=
|
|
350
|
-
setiastro/saspro/translations/de_translations.py,sha256
|
|
351
|
-
setiastro/saspro/translations/es_translations.py,sha256=
|
|
352
|
-
setiastro/saspro/translations/fr_translations.py,sha256=
|
|
353
|
-
setiastro/saspro/translations/hi_translations.py,sha256=
|
|
348
|
+
setiastro/saspro/translations/all_source_strings.json,sha256=bIcZr4TnYpPi4wJGG0eU0VLCMBiS4ZRzTIHLOULqtRY,136852
|
|
349
|
+
setiastro/saspro/translations/ar_translations.py,sha256=gjsHCj_dcw6suhTDWzq0G_I2Gp8jgNrjYejysO3fIqc,294881
|
|
350
|
+
setiastro/saspro/translations/de_translations.py,sha256=-ewyI-wo-IjaLtQujsJmTkB9qgE_UnAyuWVCjGSMhus,241427
|
|
351
|
+
setiastro/saspro/translations/es_translations.py,sha256=LSyy_glNvIVlvlQ2rw8y7hZLoaudjZB3QY04yKOit7g,257181
|
|
352
|
+
setiastro/saspro/translations/fr_translations.py,sha256=UnMsg-82GqgcgyvqllCLR3EC6-xQRoEpaxekkoE60to,252535
|
|
353
|
+
setiastro/saspro/translations/hi_translations.py,sha256=czdRfeWhtGAbCUSlDRok1yf6qpvFjDYtrfW1zsipILk,371878
|
|
354
354
|
setiastro/saspro/translations/integrate_translations.py,sha256=Usa2SqnReTrlJBF6885loI7FCWXRZ66joqc2Gp_SoJM,9126
|
|
355
|
-
setiastro/saspro/translations/it_translations.py,sha256=
|
|
356
|
-
setiastro/saspro/translations/ja_translations.py,sha256=
|
|
357
|
-
setiastro/saspro/translations/pt_translations.py,sha256=
|
|
358
|
-
setiastro/saspro/translations/ru_translations.py,sha256=
|
|
355
|
+
setiastro/saspro/translations/it_translations.py,sha256=bYY2-4jKVY_gdEj0HrWD8uHuH3VUPRMq9tD8hDUY-Mc,279173
|
|
356
|
+
setiastro/saspro/translations/ja_translations.py,sha256=C55Osu-MCcloR3BA1DGf9alm0Gt3ew_8v2q9TmPHhNc,278429
|
|
357
|
+
setiastro/saspro/translations/pt_translations.py,sha256=Xk-uR-hMxfQKc9XX2Bge_l6NZohhP6MWnMSbhJEteCA,251533
|
|
358
|
+
setiastro/saspro/translations/ru_translations.py,sha256=36tjGYS6WZmawAJ5la3dyPUFdcC_4CGwWRWUq5gPUHw,192557
|
|
359
359
|
setiastro/saspro/translations/saspro_ar.qm,sha256=JcA-Ix9RTH292iV_c24f2xcFDRgRKp_MHivfJ3kMHpc,425728
|
|
360
|
-
setiastro/saspro/translations/saspro_ar.ts,sha256=
|
|
360
|
+
setiastro/saspro/translations/saspro_ar.ts,sha256=1s4gk1cX563bvEuUBdh68289ylaQlLZus_nMrUg1o50,583432
|
|
361
361
|
setiastro/saspro/translations/saspro_de.qm,sha256=kquR3lBIef7PUZ03jzOtvmrvoe-xfDLxN37N_NqtQxo,426410
|
|
362
|
-
setiastro/saspro/translations/saspro_de.ts,sha256=
|
|
362
|
+
setiastro/saspro/translations/saspro_de.ts,sha256=eY6UHNleH0I8PxVmkBEFCW9Y8DE_pbZQyy4_zROE7jM,502475
|
|
363
363
|
setiastro/saspro/translations/saspro_es.qm,sha256=lqlrq6_eJCH1BwfgXbfZDZsPdZA8s_zvcOsvWhQZ3z0,456352
|
|
364
|
-
setiastro/saspro/translations/saspro_es.ts,sha256=
|
|
364
|
+
setiastro/saspro/translations/saspro_es.ts,sha256=cGegCyhIZSroBwAHwwuoQ7Ynn2LHf3GP7eHRMBfSG_g,548068
|
|
365
365
|
setiastro/saspro/translations/saspro_fr.qm,sha256=rwCER51ZF2FbTKt9meGaOwyKpXwwYtmy9-12uzTSA4U,445409
|
|
366
|
-
setiastro/saspro/translations/saspro_fr.ts,sha256=
|
|
366
|
+
setiastro/saspro/translations/saspro_fr.ts,sha256=VVERD7rZBm9lEPhLvlEa7uYIm3KkAbbiTARctyTJ5jQ,537307
|
|
367
367
|
setiastro/saspro/translations/saspro_hi.qm,sha256=zUgwvAOnqjL7CNCY0HQnbd3btON2Hs2y-e21v0TO2eg,430214
|
|
368
|
-
setiastro/saspro/translations/saspro_hi.ts,sha256=
|
|
368
|
+
setiastro/saspro/translations/saspro_hi.ts,sha256=MGFW0M6teKeLYihW33_7wt35eQABV-gtUw83-q5OD8c,638702
|
|
369
369
|
setiastro/saspro/translations/saspro_it.qm,sha256=j-4chutsREYKRtfdtdtW_O8CVyutm3JARXVt9cGfHo4,515214
|
|
370
|
-
setiastro/saspro/translations/saspro_it.ts,sha256=
|
|
370
|
+
setiastro/saspro/translations/saspro_it.ts,sha256=ceHlfQhA1Rq3sJwTIX5qu3AW-wbBBdQRbvdJTYGPSmw,630059
|
|
371
371
|
setiastro/saspro/translations/saspro_ja.qm,sha256=fXVmmWE3x444775wA-aZA82ZcZtl1JXNGB4SkGSgMOQ,352051
|
|
372
|
-
setiastro/saspro/translations/saspro_ja.ts,sha256=
|
|
372
|
+
setiastro/saspro/translations/saspro_ja.ts,sha256=4K4wgJlmYclevO0s4mT3BDR-y1HMOHpuxv_XefHUF3Q,547439
|
|
373
373
|
setiastro/saspro/translations/saspro_pt.qm,sha256=VD_5wyXss_Asz9ojKzRgaRMZCbGWSc1f4m0odo_xRWQ,442295
|
|
374
|
-
setiastro/saspro/translations/saspro_pt.ts,sha256=
|
|
374
|
+
setiastro/saspro/translations/saspro_pt.ts,sha256=gcRjYXAjJ4feZ7ki-T43gY_GQtLYMIYRJat0RgaetG4,521213
|
|
375
375
|
setiastro/saspro/translations/saspro_ru.qm,sha256=40t0Rd3o2hhT2bHBL6fGtH_arkYZXrc3J9klFwjmAOM,281766
|
|
376
|
-
setiastro/saspro/translations/saspro_ru.ts,sha256=
|
|
376
|
+
setiastro/saspro/translations/saspro_ru.ts,sha256=IMX8PSnw9Ey5X-8VapssttFyENenv6yYKPwfjjDJQVM,404865
|
|
377
377
|
setiastro/saspro/translations/saspro_sw.qm,sha256=YI_5vA3YABWuMOYEz1OwPPbg82L36OTJs8RtCNcvozk,445673
|
|
378
|
-
setiastro/saspro/translations/saspro_sw.ts,sha256=
|
|
378
|
+
setiastro/saspro/translations/saspro_sw.ts,sha256=CNXIdWsieL5uHaMkN0s2a5h9zNrCeEMrKCIN2wt2MUA,524110
|
|
379
379
|
setiastro/saspro/translations/saspro_uk.qm,sha256=SKsFUL-FJB8blkB948YRRuklPvtvkMIF1LuHhm0lBq4,410917
|
|
380
|
-
setiastro/saspro/translations/saspro_uk.ts,sha256=
|
|
380
|
+
setiastro/saspro/translations/saspro_uk.ts,sha256=3JcRkw3fzk4mmPau-k-JNVD1_sJeaFTyLdLX5etzK9c,566013
|
|
381
381
|
setiastro/saspro/translations/saspro_zh.qm,sha256=tz02pXysgc6VWislzVpUlcY54wIvIhvGdSbYEC53s8o,325597
|
|
382
|
-
setiastro/saspro/translations/saspro_zh.ts,sha256=
|
|
383
|
-
setiastro/saspro/translations/sw_translations.py,sha256=
|
|
384
|
-
setiastro/saspro/translations/uk_translations.py,sha256=
|
|
385
|
-
setiastro/saspro/translations/zh_translations.py,sha256=
|
|
382
|
+
setiastro/saspro/translations/saspro_zh.ts,sha256=TvB7nU6HSq6t8eTbcmfXeXQY3pu5N1EzXnMCCiu7ACI,509774
|
|
383
|
+
setiastro/saspro/translations/sw_translations.py,sha256=mnsN6y6KwbGlbzzmeRnMaCIeLfZ-R0YshGgkiYjypZc,250280
|
|
384
|
+
setiastro/saspro/translations/uk_translations.py,sha256=R4910b-TTq8KAkWhJhJfcE3yubShYSBfESTHVrY7VSA,292543
|
|
385
|
+
setiastro/saspro/translations/zh_translations.py,sha256=Ku27hyCMkPGhXKzWSl313fE3-UCW12LtWsVoIjgl6mM,234979
|
|
386
386
|
setiastro/saspro/versioning.py,sha256=BvNudxPSX8NBNTPutla1hqFb7LRX_iogPDiPLN0ocAk,2302
|
|
387
387
|
setiastro/saspro/view_bundle.py,sha256=AXU41CyzES_GqjSnO_yBcvasZo3pMd3XgbFjbjkcXNw,60643
|
|
388
388
|
setiastro/saspro/wavescale_hdr.py,sha256=ifvn6nSxoFaEo9rLscG66gFrPFpm3sH2o50MyEfUn6g,27709
|
|
@@ -405,11 +405,11 @@ setiastro/saspro/widgets/themed_buttons.py,sha256=m6f_AYCx-tUmKf3U1CBuBbUsXOLW3c
|
|
|
405
405
|
setiastro/saspro/widgets/wavelet_utils.py,sha256=RNat7N2mtkK74jAIwmdcxYghrdCe39DjFZ-iCvC5cuQ,11985
|
|
406
406
|
setiastro/saspro/wimi.py,sha256=CNo833Pur9P-A1DUSntlAaQWekf6gzWIvetOMvLDrOw,314678
|
|
407
407
|
setiastro/saspro/wims.py,sha256=HDfVI3Ckf5OJEJLH8NI36pFc2USZnETpb4UDIvweNX4,27450
|
|
408
|
-
setiastro/saspro/window_shelf.py,sha256=
|
|
408
|
+
setiastro/saspro/window_shelf.py,sha256=hpId8uRPq7-UZ3dWW5YzH_v4TchQokGFoPGM8dyaIZA,9448
|
|
409
409
|
setiastro/saspro/xisf.py,sha256=Ah1CXDAohN__ej1Lq7LPU8vGLnDz8fluLQTGE71aUoc,52669
|
|
410
|
-
setiastrosuitepro-1.7.
|
|
411
|
-
setiastrosuitepro-1.7.
|
|
412
|
-
setiastrosuitepro-1.7.
|
|
413
|
-
setiastrosuitepro-1.7.
|
|
414
|
-
setiastrosuitepro-1.7.
|
|
415
|
-
setiastrosuitepro-1.7.
|
|
410
|
+
setiastrosuitepro-1.7.4.dist-info/entry_points.txt,sha256=g7cHWhUSiIP7mkyByG9JXGWWlHKeVC2vL7zvB9U-vEU,236
|
|
411
|
+
setiastrosuitepro-1.7.4.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
412
|
+
setiastrosuitepro-1.7.4.dist-info/licenses/license.txt,sha256=KCwYZ9VpVwmzjelDq1BzzWqpBvt9nbbapa-woz47hfQ,123930
|
|
413
|
+
setiastrosuitepro-1.7.4.dist-info/METADATA,sha256=zXX5RdlvdSRINeX6HMnOxEsUicH2kT781yVQM4hnuww,9919
|
|
414
|
+
setiastrosuitepro-1.7.4.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
415
|
+
setiastrosuitepro-1.7.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{setiastrosuitepro-1.7.3.dist-info → setiastrosuitepro-1.7.4.dist-info}/licenses/license.txt
RENAMED
|
File without changes
|