-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
ChangeLog
5956 lines (5753 loc) · 547 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
KStars Revision History
To produce log below, use:
$ git log --date=short --pretty=format:"%h %ad %<(20)%an %<(150,trunc)%s"
3.7.3 (MULTI2):
09a12d8f4 2024-09-29 Wolfgang Reissenberger Bug multi camera support | fix for camera cooler control
33de71f26 2024-09-27 Wolfgang Reissenberger Refactor tabs closing + disabling tabs closing in focus module
b80949023 2024-09-27 Wolfgang Reissenberger Selecting temperature source for focuser fixed
691572033 2024-09-25 Jasem Mutlaq Update snapcraft recipe. Not tested yet
67bff0a7d 2024-09-22 John Evans Focus Filter Offsets Bug
8c9db1e49 2024-09-20 Jasem Mutlaq Fix crash with using Qt Concurrent with FITSView upload
12c54c629 2024-09-20 Jasem Mutlaq Sure vertical bin to same as horizontal in dark library
aec028926 2024-09-19 Jasem Mutlaq Fix issue with dark library was not enforcing Dark type correctly
10a7ad967 2024-09-19 Jasem Mutlaq Make sure mount control panel can stay up at all times as it was before
d205112f8 2024-09-16 Jasem Mutlaq KStars v3.7.2 in AppData update
cd6be6040 2024-09-16 Hy Murveit Fix crash on ekos reconnect
3a037b4d1 2024-09-14 Hy Murveit Add altitude graphs to scheduler
d3f3b9d25 2024-09-12 Hy Murveit Bugfix for scheduler endtime display
3297784d4 2024-09-12 Jasem Mutlaq Guide settle when in-sequence-focus is used during guiding
137ae4e49 2024-09-12 Gus Robinson The Camera module starts capturing too soon after a dither. After a dither PHD2 sends a "guiding" state to the Guiding module which then immediatly ..
b1cb77c34 2024-09-10 Konstantin Baranov Allow Flat re-calibration on the fly
0aac0c1b2 2024-09-11 Wolfgang Reissenberger Ignore device events if preparation has been completed
95a90eb21 2024-09-09 Hy Murveit Protect again possible crash
31bb04542 2024-09-09 Wolfgang Reissenberger Avoid repeated logging of unchanged position and state
3035ef35a 2024-09-09 Ed Lee Changed example min KStars version to 3.7.3 to avoid confusion
37c956e64 2024-09-08 Hy Murveit ImageOverlays was not using modified profiles.
a4674a56a 2024-09-08 Jasem Mutlaq Store formatting texts in job and add ability to update jobs remotely via INVOKABLE
7c96b2dea 2024-09-07 Wolfgang Reissenberger Improve logging for checking alignment after flip
962b04ab9 2024-09-06 John Evans Focus fixes for multicam
7c3682ab3 2024-09-03 Wolfgang Reissenberger Multiple cameras | step 14 | Meridian flip
53065ce12 2024-09-01 Wolfgang Reissenberger Multiple cameras | step 13 | Robustness
d18798d0a 2024-09-01 Wolfgang Reissenberger Use binning values for correct frame with calculation
a642c75cd 2024-08-31 Wolfgang Reissenberger Multiple cameras | step 12 | alignment and guiding sync
e0688469e 2024-08-31 Jasem Mutlaq Only change time if ekos profile is not running
c9efbaea2 2024-08-29 Jasem Mutlaq UUID must always point to imageData
f178273fa 2024-08-29 Jasem Mutlaq Manage OPTION_SET from cloud
e7e5592cc 2024-08-28 Jasem Mutlaq Fix crash in processing focus module
84db00873 2024-08-27 Wolfgang Reissenberger Bug fix keeping train sequence when adding new tab
fea50dbc7 2024-08-27 Wolfgang Reissenberger Multiple cameras | step 11 | dither sync
6dd7a8d66 2024-08-26 Jasem Mutlaq Add more invokable methods. Probably need to add to DBus interface
ee929c33e 2024-08-25 Wolfgang Reissenberger Add new tab selects unused optical train
1795feaa7 2024-08-25 Wolfgang Reissenberger Bug fix in scheduler for interface changes of focus events
604e72e3d 2024-08-24 Wolfgang Reissenberger Lost connection command readded
6b9b09ec8 2024-08-24 Wolfgang Reissenberger Support for adhoc focus with multi camera setups
284078e7b 2024-08-21 Jasem Mutlaq Fix crash due to FITSView getting terminated in another thread and causing the QBasicTimer::stop crash
92c5bb179 2024-08-22 Ed Lee Add extra DBus functions for Siril_EAA extension
74beff422 2024-08-22 Jasem Mutlaq Fix missing tag
2b3d32b94 2024-08-22 Yuri Chornoivan Fix XML
8db413303 2024-08-22 Yuri Chornoivan Fix minor typos
250448042 2024-08-22 Yuri Chornoivan Fix minor typos and formatting
e6734ccef 2024-08-21 Ed Lee Create extensions interface
6215551cb 2024-08-20 Wolfgang Reissenberger Bug fix for scheduler using train names as identifier
b6a03fb1c 2024-08-19 Wolfgang Reissenberger Use train name as indentifier instead of camera device name
9e3997b78 2024-08-18 Wolfgang Reissenberger Capture relevant type definitions consolidated in a single header file
022b06c39 2024-06-19 Eric Dejouhanet fix(ci): add cURL libraries to cfitsio libraries.
7e235c094 2024-08-15 Jasem Mutlaq Trains and train settings can be accessed without profile running
a69e7d65e 2024-08-15 Wolfgang Reissenberger Multiple cameras | step 10
a8c774ec9 2024-08-11 Hy Murveit Updates to alwaysInvent for guider
95490b0c3 2024-08-12 Jasem Mutlaq Update URL
1c93d2176 2024-08-12 Yuri Chornoivan Fix minor typo
41db1c4f4 2024-08-11 Hy Murveit Add option to always invent the guidestar in MultiStar guiding.
0a1b17059 2024-08-11 Jasem Mutlaq Merge fixes from stable-3.7.2 into master
0198ed23f 2024-08-10 John Evans Focus Advisor 4 Bugs2
596892d06 2024-08-09 Jasem Mutlaq Fix crash due to out of range exception
2a9083cf1 2024-08-08 Yuri Chornoivan Remove extra colon
603547ec9 2024-08-08 Wolfgang Reissenberger Bugfix missing fits file
7baedeb0d 2024-08-06 Eric Dejouhanet fix: change cmake versioning method.
f8a66c0ac 2024-08-04 Wolfgang Reissenberger Display end altitude with greedy scheduling
126935c61 2024-08-04 Wolfgang Reissenberger Bugfix INDI mount status
a2f376d01 2024-08-08 Jasem Mutlaq Fix issue where filter is only sent for first row
c1e34c6c6 2024-08-08 Yuri Chornoivan Remove extra colon
93e45e7ce 2024-08-08 Wolfgang Reissenberger Bugfix missing fits file
ce2e99f2b 2024-08-07 Wolfgang Reissenberger Multiple cameras | step 9
58d9ed1d8 2024-08-06 Jasem Mutlaq Fix possible crash when object hash contains some dangling pointers
ab1e430ae 2024-08-06 Eric Dejouhanet fix: change cmake versioning method.
568ba95de 2024-08-06 Jasem Mutlaq Sometimes the title is updated without HFR so need to send that separately
f6105d8ec 2024-08-06 Jasem Mutlaq Add missing signal emit for focus advisor
9a8aa9d8b 2024-08-04 Wolfgang Reissenberger Display end altitude with greedy scheduling
b4fb4b73d 2024-08-04 Wolfgang Reissenberger Bugfix INDI mount status
fe52bee66 2024-08-04 Jasem Mutlaq Starting v3.7.3 development cycle
1b939a3df 2024-08-02 John Evans Focus Advisor v4 Results Table
8fc0e1c9d 2024-08-02 Jasem Mutlaq INDI drivers sync
cdb96e1b7 2024-08-01 Eric Dejouhanet fix(ci): do build Craft recipes on master and stable branches.
e1e9fbd79 2024-08-01 Jasem Mutlaq Fix crash when saving a non-existing defect map
a7fd569be 2024-08-01 Wolfgang Reissenberger Flag introduced restricting altitude limits to tracking
3.7.2 (ADVISOR):
0da71b1ff 2024-07-31 Jasem Mutlaq Send title to EkosLive
bf0792c9e 2024-07-25 Jasem Mutlaq Add observatory name and machine ID to EkosLive
d20ed89d1 2024-07-23 Wolfgang Reissenberger Camera selection combo box only if more than one camera active
75a63d92a 2024-07-21 Jasem Mutlaq Disable the astronomical twilight pop up and just log the same message to the log view. The popup sometimes keeps repeating and causing havoc on use..
41bdbfdb3 2024-07-20 Toni Schriber Tooltips emendation in rotatorsettings & opsprograms
085e5f445 2024-07-13 Wolfgang Reissenberger Bug fix: Check for focus running fixed in calibration phase
9b9998089 2024-07-11 John Evans Focus SEP defaults no longer deboned
2138a4745 2024-07-11 John Evans Focus Fail Bugs
32d5b4146 2024-07-10 Wolfgang Reissenberger Multiple cameras | step 8
08ed69269 2024-07-10 Wolfgang Reissenberger Stop dither timer when guiding is detected
d755e650b 2024-07-09 Hy Murveit Fix broken sequence editor
d7bf3b954 2024-07-07 John Evans Focus Advisor 4 Bugs 1
013389d89 2024-06-19 Boudhayan Bhattacharya Add launchable and developer name to appdata
11d0dc4dc 2024-06-22 Emir SARI Apply i18n to percent values
eea44264d 2024-07-02 Jasem Mutlaq Fix warnings and add stage and message signals to FocusAdvisor
f99c36238 2024-07-02 Wolfgang Reissenberger Create a pass through for capturing directly from INDI
4cda831e0 2024-06-30 John Evans Focus Advisor 4 Typo Correction
42b6cf2a0 2024-06-29 Hy Murveit Add info about index file used to the fits solver.
057a54402 2024-06-25 Hy Murveit Remove the fitsviewer/sep directory and contents. It is not used--was moved to StellarSolver.
943e9d216 2024-06-25 Hy Murveit Reword the warning at the top of the logs menu.
7b6cf2a06 2024-06-25 John Evans Focus Advisor Phase 4
c05bbb26d 2024-06-25 Hy Murveit Remove solver logging from the logs menu--it is disabled.
b58fa0ecb 2024-06-22 Jasem Mutlaq FITSData should have its unique UUID
f1dc3d887 2024-06-21 Jasem Mutlaq Perform an exact search first. If no objects are found, we try inexact search if it is required
9eaa76f4b 2024-06-21 Jasem Mutlaq Use KLocalizedString instead of I18N_NOOP
33637a667 2024-06-21 Jasem Mutlaq Fix bug that caused KStars selected program language to not load properly.
22cd49294 2024-06-21 Wolfgang Reissenberger Bugfix compiler warnings 2
77fbbbe05 2024-06-19 Wolfgang Reissenberger Multiple cameras | step 7
07d65a961 2024-06-18 Hy Murveit Remove the SettingAltitudeCutoff option
33d128d95 2024-06-18 Hy Murveit Continue to fix Analyze fits display
491a7c2bd 2024-06-18 Wolfgang Reissenberger Bugfixes for compiler warnings
31cae62cd 2024-06-18 Jasem Mutlaq Fix typo
58b955534 2024-06-17 Hy Murveit Analyze bugfix--did not display fits files when fits single window capture was set
2dae0ae4f 2024-06-17 Jasem Mutlaq Use shortFormat otherwise all native loaders would fail. This fixes a serious regression introduced with 3.7.1
d0a30160b 2024-06-16 Wolfgang Reissenberger Multiple cameras | step 6
4f5270e45 2024-06-15 Jasem Mutlaq Protect against crash by assigning weather source in case it was never set before
8f65f020a 2024-06-15 Jasem Mutlaq Fix issue where remote drivers field have multiple drivers
68cb99ce5 2024-06-15 Jasem Mutlaq Fix issue where script driver are not connected after startup
565b202a6 2024-06-15 Jasem Mutlaq Remote drivers should be now selectable in profile scripts
d56244bee 2024-06-14 Eric Dejouhanet fix(ci): increase MacOS build timeout.
f4f445838 2024-06-13 Hy Murveit Adjust Analyze legend
32a71b49d 2024-06-13 Jasem Mutlaq Make sure combo box has elements before trying to set a value
636bc437f 2024-06-13 Jasem Mutlaq Fix observatory weather switching and fix connection to scheduler. Instead of relying on Weather device, we now rely on observatory overall status s..
0eddd6ff7 2024-06-12 Jasem Mutlaq Fix minor issue with missing sync controls
f2fd781ac 2024-06-11 Jasem Mutlaq Add Preston, England
61817bb4e 2024-06-10 John Evans Hanging bug due to multiple adjust focus requests
55cf23a1a 2024-06-07 Antonio Escriban Bugfix camera UI
03470ee7f 2024-06-08 Wolfgang Reissenberger Widgets from mount controller used on mount tab
ddb818ffa 2024-06-08 Wolfgang Reissenberger Multiple cameras | step 5
bb9913ae5 2024-06-07 Eric Dejouhanet feat(ci): build and sign on push to the default branch
1275121a4 2024-06-07 Jasem Mutlaq Starting KStars 3.7.2 development cycle
e9b49f3a7 2024-06-07 Jasem Mutlaq Add machine id to node manager
3.7.1 (MULTI):
df6cce9f0 2024-05-30 Wolfgang Reissenberger Making target labels dependent on the selected coordinates mode
f78c02c56 2024-05-30 John Evans Bugfix for relative focusers (DSLR), timed and manual focusers not resetting buttons after focuser move
ce898c0a4 2024-05-29 Dušan Poizl Add realtime simclock that is locked with systen clock´
090044ab5 2024-05-28 Jasem Mutlaq Fix azimuth unit in mount control panel
bf082ea64 2024-05-25 Philip Mair Added more scheduler dbus properties
5e0900c9e 2024-05-25 Wolfgang Reissenberger Bugfix camera logging
3930b5e36 2024-05-21 Wolfgang Reissenberger Bugfix calibration show fitsviewer
47dcf6b34 2024-05-21 Jasem Mutlaq New mount panel
0491d3a22 2024-05-19 Wolfgang Reissenberger Bugfix for captured flat frames counting
c98667632 2024-05-18 Wolfgang Reissenberger Bugfix for device state handling
c07117c93 2024-05-18 Wolfgang Reissenberger Bugfix of mount parking for flats etc
58a32c7e6 2024-05-18 John Evans Build Filter Offsets Hanging Bug
c3676a2c2 2024-05-16 Jasem Mutlaq Debounce jobs updated signal
8564f6ab7 2024-05-15 Jasem Mutlaq Capture and Scheduler process are now children of KStars::Instance. Add Q_SCRIPTABLE to a few function calls where it makes sense to use
6a14e1672 2024-05-15 Wolfgang Reissenberger Multiple cameras | step 4
50f05b907 2024-05-14 Hy Murveit Add fit-page-to-zoom button to the fitsviewer
1ad2b09a6 2024-05-14 Hy Murveit Another guiding-concurrency fix
73e3aa1ae 2024-05-14 Jasem Mutlaq Add Q_SCRIPTABLE to clearLogs
7422be352 2024-05-14 Jasem Mutlaq Do not save target name in optical train settings since it is set by Ekos
121540c1d 2024-05-14 Jasem Mutlaq Send logs to EkosLive
45e784d42 2024-05-13 Hy Murveit One more guiding-concurrency fix
cc7e87918 2024-05-13 Jasem Mutlaq Fix bug in profile external guider port settings
ef501cfd9 2024-05-12 Jasem Mutlaq Fix issue with INDI::Camera refactor that move FITS Viewer handling to CaptureProcess. Add stretch and autostretch function to the view directly
a35490ed6 2024-05-12 Hy Murveit Add documentation
191f44c0b 2024-05-11 Jasem Mutlaq Fix radio options in train settings
c9db3003f 2024-05-11 Wolfgang Reissenberger Multiple cameras | step 3
8af1fa2c6 2024-05-10 Hy Murveit fix options bug
eb8ce8e05 2024-05-09 Hy Murveit Stop guider from concurrent capturing.
b16ee8884 2024-05-10 Hy Murveit Go to analyze options tab when clicking analyze options button
209ecb3da 2024-05-10 Hy Murveit Moving among Analyze sessions etc
622d0d13a 2024-05-10 Wolfgang Reissenberger Bug fix: setting extension before loading image from buffer
aff30fbca 2024-05-10 Wolfgang Reissenberger Bugfix: capture hanging when no FITSViewer is used
9cc625c11 2024-05-09 Jasem Mutlaq If parked, clear target name
f29584204 2024-05-08 Wolfgang Reissenberger Bugfix for cmake on RaspbianOS bullseye
251281b7e 2024-05-07 Wolfgang Reissenberger Avoid font size less than 4px
bacebf70e 2024-05-07 Wolfgang Reissenberger Enable Qt6 in cmake configurations
4137a23f8 2024-05-07 Hy Murveit Fix countdown
e3f9feaf0 2024-05-05 Hy Murveit Internal guider should not auto-capture in dither-settle state.
be3084312 2024-05-05 Wolfgang Reissenberger Bugfix for capturing previews
1d3a44b9f 2024-05-03 Akarsh Simha Improvements to FOV symbols
308fac43d 2024-05-02 Hy Murveit Fix bug where internal guider with one-pulse-dither would trigger two concurrent guide exposures.
51158c176 2024-05-02 Jasem Mutlaq Fix crash when timer is activated after clearning pending properties
51372a49f 2024-05-02 Wolfgang Reissenberger Multiple cameras | step 2
b2b6aa484 2024-04-30 Hy Murveit Fix bug where tooltip does not display progress when job names are duplicated.
d09ba0d6d 2024-04-30 Hy Murveit Left align the capture temperature display
7ac5e4c20 2024-04-28 Hy Murveit Allow focus to recover when camera driver crashes
bcec2c66c 2024-04-28 Jasem Mutlaq Add guide gain
7b017e791 2024-04-24 John Evans Autofocus Restart Bug
3e41593eb 2024-04-24 John Evans Focus Abort Bug
0f3a315c6 2024-04-23 Hy Murveit Attempt to fix issue where camera driver crash does not recover.
02633c4d6 2024-04-23 Jasem Mutlaq Add function to return all DSO designations
07e004659 2024-04-22 Yuri Chornoivan Fix minor typo
7b764cd8d 2024-04-21 Hy Murveit Fix crash on driver restart
c3ac36c19 2024-04-21 Wolfgang Reissenberger Multiple cameras | step 1
1dab46fae 2024-04-17 Hy Murveit Fix fitsviewer tab labels for calibrate and preview
f43bdf968 2024-04-17 Hy Murveit Screen the moon
377454925 2024-04-18 Hy Murveit Fix bad label on fitsviewer tab for first captured image.
0e02c6c27 2024-04-16 Hy Murveit Emit captureComplete a little later so calibration knows the filename.
01cbe4ff4 2024-04-15 Jasem Mutlaq Fix elevation value
7bd0cc4f9 2024-04-13 Jasem Mutlaq Since FITS Viewer no longer triggers an upload, we send raw data directly
595e8c84d 2024-04-12 Hy Murveit fix simulate daytime bug
286956d7d 2024-04-11 Jasem Mutlaq Add convenience call to get KStars location info
ea57674c8 2024-04-11 Hy Murveit Fix Milky Way rendering when simulate daytime is enabled.
a5a149102 2024-04-11 Jasem Mutlaq Use a more comperhensive list to return all object names
3a0883643 2024-04-10 Hy Murveit Make Zoom-to-Fit actually fit.
6e99a364f 2024-04-10 Hy Murveit Render the full field in stereographic projection (instead of just in front of the viewer)
7dd2a4550 2024-04-10 Hy Murveit Simulate Daytime
ddee14276 2024-04-10 Jasem Mutlaq Location & time sources
9fcfd9afc 2024-04-10 Toni Schriber Load FITSFile with QUrl() to prevent empty fits field in scheduler
4973e9952 2024-04-10 Jasem Mutlaq KStars 3.7.1 development cycle
32578a1eb 2024-04-10 Wolfgang Reissenberger Flats Speedup
d1d6d365b 2024-04-09 Wolfgang Reissenberger Bugfix capture testcases 02
c6ffd22e5 2024-04-09 Eric Dejouhanet fix(ci): move Microsoft Signing to the publish stage.
f33c8ca70 2024-04-08 Jasem Mutlaq Allow concrete devices internal slots to run first before firing external signals
b3313500a 2024-04-06 Pino Toscano ekos: fix build without QtDataVisualization
a3a27db10 2024-04-05 Jasem Mutlaq Add support to obtain all object names
7f248af9e 2024-04-05 Jasem Mutlaq For partial match, use object full name
018e73af4 2024-04-04 Jasem Mutlaq Add scheduler clearLog
5bc7fce40 2024-04-03 Jasem Mutlaq Add scheduler & sequence XML Schema Definition files
04d196b16 2024-04-03 Nicolas Fella Fix dependency name in CI config
e2b310a42 2024-04-02 Eric Dejouhanet fix(ci): adjust custom build to fix needs on master.
597896ec6 2024-04-02 Eric Dejouhanet feat(cd): provide CD pipelines
353ccf321 2024-04-01 Jasem Mutlaq Pass exact instead of hard-coding it
ea57c140a 2024-04-01 Jasem Mutlaq Pass exact instead of hard-coding it
213420d90 2024-04-01 Yuri Chornoivan Fix minor typos
3.7.0 (Blink):
4236bcd19 2024-03-28 Jasem Mutlaq For partial object name search, exact flag should be passed down and a partial search should take place
405707024 2024-03-28 Jasem Mutlaq Correct the dark subtraction tooltip
47ad9418f 2024-03-27 Hy Murveit Fix sky background color bug
6571a037f 2024-03-26 Jasem Mutlaq Fix i18n issue in adaptive focus
a173256f6 2024-03-26 Jasem Mutlaq Fix file URL
000cf2625 2024-03-26 John Evans Focus Advisor Phase 3
f201544fa 2024-03-25 Toni Schriber Expand check for initial rotator angle to IPS_OK & IPS_IDLE
c1b4d0167 2024-03-22 Hy Murveit Add options to increase the size that the Sun and Moon are rendered.
cd12445f3 2024-03-23 Jasem Mutlaq Fix bugs in loading sequence and scheduler files
50fb264d3 2024-03-22 Akarsh Simha Fix a few things in the Views feature
d8601bf1b 2024-03-21 Hy Murveit Generate job capture summary
5f9ce4a30 2024-03-19 Wolfgang Reissenberger Bugfix captured frames counting
40f1d87fd 2024-03-19 Akarsh Simha Introduce Views: A way to quickly reorient the sky-map to match the view through an instrument
8fa465627 2024-03-18 Wolfgang Reissenberger Update test cases after settings refactoring
20536ddae 2024-03-18 John Evans Focus Passes R2 Check Fail details to Analyze
82a81b7e2 2024-03-18 Jasem Mutlaq Use job instead of state
80816c8dc 2024-03-18 Jasem Mutlaq Restore limit settings
4eccc0784 2024-03-18 Hy Murveit Move to train-based storage for stand-alone esq editor
75ba2881d 2024-02-04 Eric Dejouhanet feat(ci): KDE CI pipelines for linux, android and win32, fix fortify.
949f050b0 2024-03-17 John Evans Turn off Focus Advisor Defaulting for New Ops
6c61d2c3e 2024-03-17 Yuri Chornoivan Fix minor typo
ab18ac1c4 2024-03-16 John Evans Focus Overscan Delay
c721828bb 2024-03-16 John Evans Fix Filter Manager Button in Capture
c5490eb8c 2024-03-16 John Evans Focus Framing Bug on Filter Change
18e59ff02 2024-03-16 Jasem Mutlaq Do not show dialog for focus advisor, use it by default
47e2ca3a2 2024-03-16 Hy Murveit Choose profiles from any module in FITS Viewer solver
30d02bcb6 2024-03-16 Jasem Mutlaq Add save and load scheduler to ekoslive
4972b3318 2024-03-16 Jasem Mutlaq Fix test case
0251f1c4b 2024-03-15 Jasem Mutlaq Refactor capture settings. Standalone mode needs to use train data instead of options
a1e15336e 2024-03-15 John Evans In Sequence Focus Phase 2
21e3d359d 2024-03-14 Hy Murveit Update view after fitsviewer extraction so new stars are displayed
ddf29a77c 2024-03-15 Hy Murveit Fix stand-along esq editor temperature control.
b7963a546 2024-03-14 Hy Murveit Try to fix driver-restart crash
f70412234 2024-03-13 Wolfgang Reissenberger Fix scheduler sync options
263224ce9 2024-03-12 Hy Murveit Bugfix re confusion between repeat schedulerJob and repeat all scheduler jobs
6826990c4 2024-03-12 Hy Murveit Add edit profile button in FITS Viewer Solver and in Image Overlays
ccc571ee5 2024-03-12 Hy Murveit Add option to render image overlays below catalogs.
524595f78 2024-03-12 Hy Murveit Fix bug loading ssolver profiles.
83ccf32ac 2024-03-04 Jasem Mutlaq Use stop to fix compile error in master
2b21b2f2c 2024-03-03 Jasem Mutlaq Use emit to fix compile error
f8c61e1c8 2024-03-02 Jasem Mutlaq Clear pending property when requesting to stop
939ae32d3 2024-03-02 Jasem Mutlaq Add a check for uncommanded mount park that is initiated outside scheduler module. When it happens we need to abort scheduler is active and if the c..
6958835b2 2024-03-01 Jasem Mutlaq Check if optical train is not empty
eb8b0aca1 2024-02-29 Jasem Mutlaq Only store true value for radio buttons
19cc38071 2024-02-29 Jasem Mutlaq Fix issues with removing dark frames from table.
b29dc5467 2024-02-27 Jasem Mutlaq Fix Dome, GPS, and other non-train devices not getting ACTIVE_DEVICE synced properly
c3c1a1844 2024-02-25 Yuri Chornoivan Fix minor typos
0ebc6d21d 2024-02-25 Jasem Mutlaq Add one more check to prevent crash
b09232cde 2024-02-25 Jasem Mutlaq Add more checks for filter manager to prevent crashes
904f22ae2 2024-02-24 John Evans Donut Buster Phase 2
26e822d03 2024-02-07 Dušan Poizl Add option for shoting skyflats
651941604 2024-02-24 Jasem Mutlaq Do not create modules when creating a new equipment profile unless all equipment are detected
bd8c6fbd7 2024-02-24 Jasem Mutlaq Revert "Draw image overlays just after HiPS, so DSOs / lines etc. are drawn over them"
442bedc47 2024-02-24 Jasem Mutlaq Improve save and load sequence to allow setting of file data without specifying path
b44b00671 2024-02-23 Akarsh Simha Draw image overlays just after HiPS, so DSOs / lines etc. are drawn over them
bb0a0e298 2024-02-24 Wolfgang Reissenberger Bug fix for place holder handling of remote files
34b0573a4 2024-02-20 Josep M. Ferrer Fix minor typo
3166a6a45 2024-02-19 Yuri Chornoivan Fix XML
af76a2a8b 2024-02-18 Akarsh Simha New feature: Allow the user to mirror the sky map
ef51d2720 2024-02-16 Wolfgang Reissenberger State display of Scheduler and Capture optimized
776240618 2024-02-15 Jasem Mutlaq Check if we are looping before disconnecting exposure progress since we do not connect this signal again when looping
7197d9874 2024-02-15 Wolfgang Reissenberger Separating Business Logic from UI in Scheduler | step 9
fe79d43cf 2024-02-14 Wolfgang Reissenberger Separating Business Logic from UI in Scheduler | step 8
a468d4f59 2024-02-13 Toni Schriber Overhaul "differential slewing"
f563aebe1 2024-02-12 John Evans Focus Move Bug
6bb03a2fc 2024-02-12 Wolfgang Reissenberger Separating Business Logic from UI in Scheduler | step 7
9aea84485 2024-02-11 Wolfgang Reissenberger Adding the delay to the first image in the sequence
6842beee4 2024-02-11 Jasem Mutlaq Increase maximum align capture duration to 5 minutes
87140d566 2024-02-11 Yuri Chornoivan Fix minor typo
325ceca95 2024-02-10 Jasem Mutlaq Use correct state after PHD2 complete dithering
81461b464 2024-02-10 Wolfgang Reissenberger Deactivating debugging messages filling the log file
5a3e0a3d8 2024-02-10 Jasem Mutlaq Check if master dark exists
3f4f657ff 2024-02-08 Jasem Mutlaq 3.7.0 release cycle
3604a1d25 2024-02-09 Hy Murveit Add Analyze/Blink buttons, add Analyze log.
e8f6efb71 2024-02-09 John Evans Focus 2 Tick Bugfix
9afad7fa6 2024-02-09 Hy Murveit Analyze blink fixes
5eadd4b3c 2024-02-08 Hy Murveit Add blinking capabilities to FITS Viewer and Analyze.
bb899349b 2024-02-08 Wolfgang Reissenberger Separating Business Logic from UI in Scheduler | step 6
633e27f0c 2024-02-08 John Evans Framing bugfix
d8ea2a054 2024-02-08 Yuri Chornoivan Fix minor typos
2f5d84b8f 2024-02-07 John Evans Focus Docbook Update 3.6.9
dd9901e3b 2024-02-05 Jasem Mutlaq Fix crash if sequence file was loaded with filter selection but active train does not have a filter wheel
9eecfb80d 2024-02-02 Hy Murveit Fix focus profile index bug
9232c1d2e 2024-02-02 Jasem Mutlaq Fix rare crash when opening search dialog due to unused AsyncDBManager in FindDialog
d741c8f37 2024-02-01 Jasem Mutlaq Add missing emit message
fdbf5c5ec 2024-02-01 Jasem Mutlaq Add initial craft.ini file to build INDI library and KStars
a703dfc23 2024-01-31 Jasem Mutlaq Fix satellites loading error thanks to updated list by Own. BUGS: 479796
3.6.9 (Lobi):
e6285e15c 2024-01-30 John Evans In Sequence HFR Check Bugfix
e2b4bb982 2024-01-28 Jasem Mutlaq Fix possible crash when disconnecting devices where we have pending properties
246836cda 2024-01-27 Yuri Chornoivan Fix minor typos
8f9102b14 2024-01-26 Jasem Mutlaq Add Train reset
145597bca 2024-01-26 Hy Murveit Simplify moon separation test
fb7717365 2024-01-26 John Evans Donut Buster - Phase 1
6193ab3e6 2024-01-23 Jasem Mutlaq Add one more check for client manager, but it should exist by this point
2d63b2fe6 2024-01-21 Jasem Mutlaq Fix minor issue in port selector where connection status is not updated per device
44e743715 2024-01-22 John Evans CFZ Step Size Precision to 3dp
38612eaa8 2024-01-21 Toni Schriber Add capture time delay estimate for rotator movements
bc0d0f7e0 2024-01-21 Toni Schriber overhaul "differential slewing"
b21f5ed2f 2024-01-21 Jasem Mutlaq Fix driver labels
4f1532fe3 2024-01-21 Hy Murveit Simplify variance calculation
ebee2551c 2024-01-20 John Evans Focus: Small tweaks as requested by forum user
e697a1a86 2024-01-20 Yuri Chornoivan Fix minor typos
9e20246b5 2024-01-20 Jasem Mutlaq INDI Driver sync
ee2923bdb 2024-01-11 Ian Jessen Added camera data for Player One Astronomy Saturn-C and Poseidon-C
51b3f1892 2024-01-19 John Evans In Sequence HFR Check Refactor
74186b331 2024-01-19 Antoni Bella Pérez [l10n]: Fixes and improves
a3c404394 2024-01-17 Jasem Mutlaq Account for actual exposure time in the focus timeout
d3889e4e9 2024-01-15 Hy Murveit Fix small bug in sequencejob save
47e7a0a6f 2024-01-15 Hy Murveit Added handbook section on editing the scheduler queue while running, and on...
4ec204cf3 2024-01-15 Hy Murveit Create standalone editor for editing and saving .esq files.
6d38e124d 2024-01-13 Jasem Mutlaq Fix focus setAllSetting not merging settings as in other modules
5b6cd4ebe 2024-01-13 Wolfgang Reissenberger Bug fix capture pausing blocks meridian flip
ae438cfdc 2024-01-11 Toni Schriber Insert missing activation of LoadSlewB - New approach
5d6ed6b40 2024-01-11 Yuri Chornoivan Fix links in documentation
ae99a90bd 2024-01-08 Thomas Stibor Fix crash on empty PlotList
159967706 2024-01-10 Joseph McGee sub-exposure calculator documentation updates
85d7e975e 2024-01-08 Wolfgang Reissenberger Global sequence job property removed from job's core properties
c711a5664 2024-01-08 Wolfgang Reissenberger Bugfix: Making capture scripts job specific
82449abbf 2024-01-08 Jasem Mutlaq Fix crash due to not updating list after removing an iten
3566e05a5 2024-01-07 Wolfgang Reissenberger Bugfix realign after MF when paused
db539accd 2024-01-07 Wolfgang Reissenberger Bug fix for resetting dithering counter
fe1a6ee1a 2024-01-06 Wolfgang Reissenberger Bug fix connecting Ekos mount instead of ISD mount to MF state engine
2795862a8 2024-01-06 Josep M. Ferrer Fix a minor typo (remove an extra period)
17aef3994 2024-01-06 Wolfgang Reissenberger Bugfix for scheduler editing
570acfb22 2024-01-05 Hy Murveit Move sequenceJob load/save to sequencejob.cpp/h and implement SequenceQueue class
b4698037b 2024-01-05 Wolfgang Reissenberger Bugfix for INDI button activation
f0363b848 2024-01-05 Oliver Kellogg kstars/indi/collimationOptions.ui : In offsetLabel toolTip change Elements to Element's.
9aa0a72ae 2024-01-05 Oliver Kellogg kstars/ekos/scheduler/scheduler.cpp (setupScheduler) : In call to completionHeader->setToolTip remove stray quote at "job".
b87621fd6 2024-01-05 Jasem Mutlaq Mark 3.6.9 beta
9dba34235 2024-01-05 Jasem Mutlaq Send capture status
1083603d4 2024-01-05 Jasem Mutlaq Fix issue with dome missing in align module
2132c4875 2024-01-05 Wolfgang Reissenberger Option making display of INDI window at startup configurable
00b658156 2024-01-04 John Evans Adaptive Focus Fix1
723b9c91d 2024-01-04 Wolfgang Reissenberger Separating Business Logic from UI in Scheduler | step 5
b788c14fa 2024-01-04 Wolfgang Reissenberger Bugfix for new row selection while editing
2c716fda2 2024-01-02 Hy Murveit FITS Roi also updates the stats table.
e09109c0d 2024-01-03 Hy Murveit Allow deleting of scheduler jobs and appending to scheduler queue while running other jobs.
d117a4bc6 2024-01-02 Wolfgang Reissenberger Fixes and enhancements for editing running schedules
c1f9ad3c7 2024-01-02 Hy Murveit Refactor scheduler a little
c7d374cb3 2024-01-01 Wolfgang Reissenberger Always show and edit scheduler job properties
e829d91bf 2024-01-01 Jasem Mutlaq Add support to per-job dither frequency. By default it is 0 so it uses global dither frequency. If non-zero, it will instead use this value instead ..
693c48aac 2024-01-01 John Evans Focus UI Refactor
b3fce864d 2024-01-01 Jasem Mutlaq Send scheduler log and status
f28fc9e3a 2023-12-31 Jasem Mutlaq Process FITS selection should have a URL so that it can be set from general settings
038ab9a90 2023-12-31 Jasem Mutlaq Add missing set global settings
202df89bc 2023-12-31 Jasem Mutlaq Fix signal changed by mistake
79be76675 2023-12-30 Jasem Mutlaq Fix scheduler test
44d2ba4c1 2023-12-30 Jasem Mutlaq Use standarized settings like rest of Ekos modules where as all settings as synced automatically to disk when changed and are loaded accordingly
4f96291c8 2023-12-30 Jasem Mutlaq Use debounced timer for sending settings and save settings to disks once the debounce period is over to over excessive writes to disk
2f8284bff 2023-12-31 Jasem Mutlaq Change maximum to 5 since some barlows can go pretty high
25c82f725 2023-12-28 John Evans Focuser Properties Log Spam
c6d5be144 2023-12-28 Wolfgang Reissenberger Separating Business Logic from UI in Scheduler | step 4
bdfa10a25 2023-12-27 Jasem Mutlaq Fix issue with autopark not triggering correctly
3f4597dba 2023-12-26 Jasem Mutlaq Add button to reset optical train. This is required not only due to convenience but also because of missing devices error that cannot go away unless..
75f7039db 2023-12-26 Yuri Chornoivan Fix minor typo
b5d1c8425 2023-12-25 Wolfgang Reissenberger Minimal flip duration
fc8639e66 2023-12-25 Yuri Chornoivan Fix minor typos
800076133 2023-12-25 Yuri Chornoivan Fix minor typos
a47e63015 2023-12-24 Ed Lee Add Collimation overlay graphics to live view
0e2a1026a 2023-12-24 Jasem Mutlaq Separate Alt and HA Abort dispatches
9b364f10d 2023-12-05 Jasem Mutlaq Sync scripts
35d9abbff 2023-12-05 Jasem Mutlaq Fix crash when downloading observing list images
fb27d200e 2023-12-11 Hy Murveit Add logging to driver restart
b2ece5b20 2023-12-22 Jasem Mutlaq Fix FITS Viewer crash on close
dc6302201 2023-12-20 Jasem Mutlaq Must check if the string value is -- so that we reset the controls to their special values
25230b597 2023-12-20 Jasem Mutlaq Fix guiding suspend not working properly when capturing non-light frames.
4ed1e3232 2023-12-20 Jasem Mutlaq Send min and max in metadata
7cf2f7e1e 2023-12-19 Hy Murveit Fix compile without fitsio
c9618a44b 2023-12-19 Jasem Mutlaq Must perform a FULL RESET if the camera resolution changes
4594efba6 2023-12-17 Wolfgang Reissenberger Separating Business Logic from UI in Scheduler | step 3
38e985c5c 2023-12-12 Jasem Mutlaq Use correct logging category
1d463e265 2023-12-11 Jasem Mutlaq Clear last reference to pointer to delete the object
bc5adc3da 2023-12-10 Hy Murveit undo previous fix
697b30c9a 2023-12-11 Wolfgang Reissenberger Bugfix for placeholder replacement of implicit values
ada76a181 2023-12-10 Hy Murveit Fix bug introduced in 5f3dcf74
143f4a900 2023-12-10 Jasem Mutlaq Fix infinite feedback loop that was caused by improper string comparision between a C string and QString
e7fcc7870 2023-12-09 Jasem Mutlaq Add robust crash recovery to capture and guide modules. Focus and alignment are pending
5f3dcf74e 2023-12-09 Jasem Mutlaq Fix FITSViewer not being removed from list after closing window
e576820dd 2023-12-07 Hy Murveit Fix handbook authors section
ad5215f3b 2023-12-07 Albert Astals Cid Remove docbook that doesn't compile
16796ae7a 2023-12-06 Yuri Chornoivan Fix minor typos
0a8c955fe 2023-12-05 Yuri Chornoivan Fix minor typos
c59528b13 2023-12-05 Yuri Chornoivan Fix XML
d694512d8 2023-12-05 Hy Murveit Increase visibility for Ekos and FITS Viewer in the KStars Handbook
67fdcaeda 2023-12-05 Jasem Mutlaq Reduce margins
147aa0206 2023-12-03 Wolfgang Reissenberger Bug fix for unknown camera temperature, gain or offset
44e508650 2023-12-02 Yuri Chornoivan Fix minor typos
5112379dd 2023-12-02 Yuri Chornoivan Fix minor typo
397fcc66b 2023-12-02 Yuri Chornoivan Fix minor typos
41cb8e87b 2023-12-02 Yuri Chornoivan Fix minor typos
187dcff04 2023-12-02 Yuri Chornoivan Fix minor typos
3.6.8 (Abberator):
b92ee12e8 2023-12-01 Jasem Mutlaq INDI drivers sync
e3e305a17 2023-12-01 John Evans Aberration Inspector Handbook Update
9aa0227e2 2023-12-01 John Evans Focus Guide Settle Bug
fd55f8939 2023-12-01 John Evans Scheduler hangs when Focus does not signal Autofocus start failure
a610e357c 2023-12-01 Joseph McGee Fixed a problem that prevented the exposure calculator file download function from finding new camera data files in github.
6bbb21618 2023-12-01 Toni Schriber Revise differential slewing
08c25289f 2023-11-30 Yuri Chornoivan Fix minor typo
323adaebb 2023-11-30 Yuri Chornoivan Fix minor typos
9d32a738e 2023-11-29 Jasem Mutlaq Send INDI status
9da16320f 2023-11-29 Joseph McGee Update handbook Ekos Capture to include docs for Exposure Calculator. Add...
097cc6c70 2023-11-28 Hy Murveit Bugfix in one-pulse dither. Dither pulses were going the wrong way.
a444f38a8 2023-11-28 Jasem Mutlaq Update dependencies and add contributor
ca9e3f73f 2023-11-27 Wolfgang Reissenberger Refactor placeholder matching
a2ac5c25e 2023-11-27 Wolfgang Reissenberger Bug fix reading initial pier and park states
d5235682a 2023-11-27 Wolfgang Reissenberger Bugfix clear gain and offset
482f86e07 2023-11-26 John Evans Focus timer bug fix
04f68ddfe 2023-11-24 Hy Murveit Bugfix: prevent possible ekos crash on indi camera driver crash
98cbe4386 2023-11-22 Antonio Escriban Protect from nullptr in SequenceJob::setISO()
e7a0564ed 2023-11-22 Wolfgang Reissenberger Protect against runtime exceptions when CCD driver crashes
5effccf71 2023-11-21 Hy Murveit Protect from nullptr in abortExposure
309f78b2e 2023-11-21 Yuri Chornoivan Fix minor typo
259ecd612 2023-11-21 Wolfgang Reissenberger Wall source as option, not as single action
a1613642d 2023-11-20 Hy Murveit Reduce latency between captures.
ed71dd8b5 2023-11-20 Jasem Mutlaq Remove problematic header
2d3033641 2023-11-20 Jasem Mutlaq Fix mode
452e5efc8 2023-11-20 Joseph McGee Improvements to the exposure calculator
1a8b29227 2023-11-19 Wolfgang Reissenberger Bug fix for pier side expression
ed6db110f 2023-11-19 Wolfgang Reissenberger Bug fix for creating signature expression
c6e538c7b 2023-11-17 Jasem Mutlaq Add qt5 visualization dependency
9d7eb02ea 2023-11-15 Hy Murveit Bugfix: guide start deviation was not saved properly in esq file.
b0d8db776 2023-11-13 John Evans Aberration Inspector
646b11a19 2023-11-12 Eric Dejouhanet CI: add DataViz lib, shift to builder image 0.12.
75d45b64e 2023-11-11 Hy Murveit Add a new not-default scheduler option to disable greedy scheduling.
0fe13494f 2023-11-11 Wolfgang Reissenberger Setting target name from mount slew
a7b2303f3 2023-11-10 Wolfgang Reissenberger Separating Business Logic from UI in Scheduler | step 2
70d63fb0b 2023-11-09 John Evans DSLR Focus Movement Bug
a5e14795f 2023-11-09 Hy Murveit Add align logging for some solver failures and clean up error box.
15c5d08df 2023-11-08 Hy Murveit Fix bug in estimating job time, capture delays were misinterpreted.
fa87b9417 2023-11-08 Hy Murveit improve the hfr tooltip in fitsviewer
86d006547 2023-11-02 Yuri Chornoivan Fix minor typo
427a641f2 2023-11-01 Wolfgang Reissenberger Bug fix setting the target when reading an .esq file
cdf527598 2023-11-01 Wolfgang Reissenberger New placeholders for ISO, binning and pure exposure time added.
1732799f0 2023-10-30 Wolfgang Reissenberger Capture target job specific
6765a5104 2023-10-30 Jasem Mutlaq Add HFR to metadata
7301bedde 2023-10-29 Hy Murveit Switch FITSViewer Solver from Angle to Position Angle (PA).
68c8eb8b6 2023-10-28 Jasem Mutlaq Send telescope information for FITS header
f3db4e49b 2023-10-25 Hy Murveit Refactor header files to include only what is necessary-4
7853caf45 2023-10-25 Brett Gottula Make "Set Coordinates Manually" dialog more intuitive
8012f616a 2023-10-25 Hy Murveit Refactor header files to include only what is necessary-3
4df3da256 2023-10-24 Hy Murveit Refactor header files to include only what is necessary-2
2f7ec7c1a 2023-10-24 Hy Murveit Refactor header files to include what is necessary-1
54d9f1f6f 2023-10-22 Hy Murveit Add John as developer
430b4d6d4 2023-10-24 Wolfgang Reissenberger Separating Business Logic from UI in Scheduler | step 1
28293212a 2023-10-24 Yuri Chornoivan Fix minor typo
bcf9478ef 2023-10-24 Jasem Mutlaq Make camera and scope-lens fields as required
d07b126fe 2023-10-23 Hy Murveit Update handbook align pages
7baa2b4f5 2023-10-22 Yuri Chornoivan Fix minor typo, enhance formatting for translations
1a7e12b9a 2023-10-21 Hy Murveit fix typo in handbook
a56cdba51 2023-10-21 Yuri Chornoivan Fix minor typos
4c56f06d8 2023-10-21 Yuri Chornoivan Fix XML
e575f8f50 2023-10-20 Hy Murveit Update handbook fitsviewer section and add new fitsviewer solver section.
7669ccff9 2023-10-17 John Evans Focus Analyze Bug
20b2cfe2a 2023-10-15 Jasem Mutlaq Prevent crash that might occur due to driver restart
87b19ad68 2023-10-14 Jasem Mutlaq Double check that camera object exists
3112260b6 2023-10-13 Jasem Mutlaq Only list data length not the whole buffer
2864f9bdb 2023-10-12 Jasem Mutlaq Fix capture calibration error
703825598 2023-10-12 Jasem Mutlaq Add exclusive group since you cannot select mount GOTO and mount park at the same time
4dae801b8 2023-10-11 Jasem Mutlaq Remove flat field source since it does not fit within optical trains model. When a train is selected, we know if dust caps or light sources are avai..
79c17a4d9 2023-10-10 Jasem Mutlaq Initial work to use calibration pre actions instead of calibration source
966abde62 2023-10-12 Hy Murveit Fitsviewer solver
d88d6a5a0 2023-10-09 Wolfgang Reissenberger Bug fix setting signature when loading capture sequence
b36a78b02 2023-10-08 Jasem Mutlaq Separate connectSettings from connectSyncSettings when there are different non-sync signals involved
cfc274ad1 2023-10-08 Jasem Mutlaq Add separate check for canBin and canSubframe
36f65073b 2023-10-08 Jasem Mutlaq Fix issue where a race conditions on delayed properties might lead to undefined capture or transfer formats. Modify canBin and canSubframe to always..
96559537e 2023-10-07 Jasem Mutlaq Prevent endless capture retries
4b7384e85 2023-10-07 Jasem Mutlaq Do not use system-wide abort which would crash the whole program
f2d8ea4f2 2023-10-07 Wolfgang Reissenberger Job sequence handling refactored
1960671b3 2023-10-07 Jasem Mutlaq Fix observatory icon as proposed by Steven Roger in #253
aa59c63d1 2023-10-06 Eric Dejouhanet Clarify temperature regulation and where settings are kept.
42300ee5d 2023-10-05 Toni Schriber Deactivate autodefault property of [Align Option] pushbutton
a5c0639d2 2023-10-05 Toni Schriber Take care of standard range for PA when creating a sequence job
ea77383a0 2023-10-05 Jasem Mutlaq 3.6.8 development cycle
3.6.7 (OVERLAY):
723c4743f 2023-09-30 Jasem Mutlaq INDI drivers sync
d39c36d26 2023-09-29 Jasem Mutlaq Invoke might not work for all parentless objects
17508fd93 2023-09-28 Jasem Mutlaq Revert "Save flip policy"
b2e5af299 2023-09-28 John Evans HFR Adj Bug
0d4cff2fc 2023-09-27 Jasem Mutlaq Save flip policy
37970721f 2023-09-27 Hy Murveit Fix start_at greedy scheduler simulation
856fb1856 2023-09-26 Wolfgang Reissenberger Fixes for capture state bugs
74d173898 2023-09-26 Hy Murveit slight fix for start_at jobs in greedy scheduler
02b6b9a31 2023-09-25 Wolfgang Reissenberger Bugfix for new placeholder values
c816e83a9 2023-09-23 Hy Murveit Add scale and position to failed solve image filename
c11a47bde 2023-09-23 Hy Murveit Add option to auto-save failed align images.
44e106eb0 2023-09-16 Oliver Kellogg kstars/kstars.kcfg (group "Align" entry "AstrometryFlipRotationAllowed") : Disambiguate <whatsthis>. https://invent.kde.org/education/kstars/-/commi..
51c12672f 2023-09-16 Jasem Mutlaq Removing old fix for a QT bug that no longer exists on Windows
ec0746d7b 2023-09-16 Eric Dejouhanet Bugfix mount altitude limits
4849e57ce 2023-09-15 Wolfgang Reissenberger Logging capture settings added
3bd6988b7 2023-09-14 Oliver Kellogg kstars/ekos/align/opsalign.ui : Fix typo in tooltip of radiobutton "FlipRotationNotAllowed".
5d3a9fdd3 2023-09-13 Toni Schriber Upgrade & refactor rotatorsettings
680dbb457 2023-09-13 Hy Murveit Improve analyze/adaptive-focus graphics.
8ae81c48e 2023-09-13 Wolfgang Reissenberger Bugfix for state logging
b0b11bb34 2023-09-10 Hy Murveit Analyze in-progress timeline sessions were not shown when switching to current session
c7f659645 2023-09-10 Hy Murveit Disable lots of multistar logging.
004f4d95a 2023-09-09 Hy Murveit Reduce resolution of a few Analyze stats to make them fit better.
1499a832b 2023-09-05 Hy Murveit Improve job start/end time estimation.
02163ba56 2023-09-06 Hy Murveit Fix crash
b27e2b313 2023-09-04 Hy Murveit Improve imageOverlay visibility test, add RectangleOverlap class.
63f61d365 2023-09-02 Philip Mair Ekos Fokus: Fix temperature not updated after startup
aba6ea9af 2023-09-01 Jasem Mutlaq Fix compile errors due to changes in placeholder tests
ae9a7fc2f 2023-09-01 Jasem Mutlaq Remove obsolete code
c2890c018 2023-08-31 Jasem Mutlaq Fix issue with remote filenames not matching placeholder signature
418726f66 2023-08-30 Wolfgang Reissenberger Ensure exactly one directory separator
f0c36bc0e 2023-08-29 Hy Murveit Update two gpg parameters that somehow are not the standard defaults.
6d6910146 2023-08-30 Wolfgang Reissenberger Classic algorithm code parts removed from Scheduler
b54a48d64 2023-08-30 Jasem Mutlaq Add logging to note when we change device time and location from KStars
4491953d7 2023-08-29 Jasem Mutlaq Add missing sequence file. This should resolve issue with mosaic info not getting saved properly on edit
a1ab2037c 2023-08-27 Wolfgang Reissenberger Bugfix wall source
03ac2ee8b 2023-08-23 Jasem Mutlaq One more place to prevent rotater from uncommanded motion
2f9792b30 2023-08-22 Wolfgang Reissenberger Refactoring Capture | extracting sequence job handling
f31ea61a8 2023-08-22 Jasem Mutlaq Fix bug when using offline HIPS source that prevented HIPS settings from getting saved to the configuration file correctly
027898f54 2023-08-21 Hy Murveit Greedy scheduler may not bump a job started a few seconds ago.
24782190a 2023-08-21 Antoni Bella Pérez doc: some review
577dec309 2023-08-20 Hy Murveit Add view menu option and keyboard shortcut for image overlays.
cd028a575 2023-08-20 Hy Murveit Implement refresh button. Avoid adding to status widget when not in main thread.
ce758d961 2023-08-18 Jasem Mutlaq Fix rotator going to zero after startup due to signals not blocked properly as they should during startup
569871dac 2023-08-18 Wolfgang Reissenberger Aperture calculation corrected for DSLR lenses
047e68676 2023-08-17 Yuri Chornoivan Fix minor typos
1303316ac 2023-08-16 Tetsuya Kakura Fix capture count on Windows
fe874a997 2023-08-10 Hy Murveit Update tooltips for scheduler steps.
6906f4cd4 2023-08-16 Yuri Chornoivan Fix minor typos
d0affd0b5 2023-08-15 Hy Murveit fix i18n bug
35af5ee3f 2023-08-15 Hy Murveit Add image overlays docbook page.
9dce95eb9 2023-08-15 Hy Murveit Add i18n to imageOverlay.
cb21bb20b 2023-08-15 Jasem Mutlaq Simplify. Add button to refresh files (not yet implemented)
f93ab7486 2023-08-15 Hy Murveit Image Overlay Component.
6dba08055 2023-08-15 Jasem Mutlaq Fix Active Device
e522b191d 2023-08-14 Wolfgang Reissenberger Refactoring Capture | extracting process steps (continued)
a4432a087 2023-08-14 Jasem Mutlaq Mosaic tiles now account for focal reducer
d48b03e20 2023-08-14 John Evans Focus looping reset bug
5cefcc588 2023-08-13 Pino Toscano Explicitly include fitsdata.h
c4d79967a 2023-08-12 Jasem Mutlaq Fix too large font size in mosaic
d05688569 2023-08-12 Pino Toscano Explicitly include fitsdata.h
6d6e8bc36 2023-08-11 Wolfgang Reissenberger New placeholders in placeholder path
fb7dd987b 2023-08-11 Yuri Chornoivan Fix XML
1cf8fe875 2023-08-10 Antoni Bella Pérez doc: GUI Sync
340761130 2023-08-06 Jasem Mutlaq Default align profile should be default
2fddd09c3 2023-08-04 Hy Murveit Fix handbook link
7422de4d7 2023-08-04 Oliver Kellogg ekos/align/polaralignmentassistant.cpp (getPAHMessage) : Fix typo in i18n message of case PAH_REFRESH with (pAHRefreshAlgorithm->currentIndex() == P..
e17f98a63 2023-08-02 Yuri Chornoivan Fix minor typo
08c0ceeb7 2023-08-02 Jasem Mutlaq Starting KStars v3.6.7 development cycle
5972c874a 2023-08-02 Albert Astals Cid Fix compilation in some systems
2f581f88c 2023-08-01 Jasem Mutlaq Fix typo
2f4cddbb1 2023-07-31 Hy Murveit Update guider section of the handbook
1de8adb48 2023-07-31 Yuri Chornoivan Fix minor typo
3.6.6 (GREEDY):
d19108b68 2023-07-31 Jasem Mutlaq Add missing time info
fd9ca7837 2023-07-30 Valentin Boettcher update default open ngc catalog to the 2023 version
c8711579a 2023-07-30 Hy Murveit Make analyze filename display fit better
2cbbfba27 2023-07-30 Jasem Mutlaq When a camera is removed, reset active chip to nullptr. Check if we have a valid active camera and chip in sequence job
e16ec17c0 2023-07-30 Toni Schriber Change default image format for online astrometry from JPG to FITS
8b365baa2 2023-07-30 Jasem Mutlaq Dark library should use whatever format selected by the user. Fixes #244
386db7a17 2023-07-30 Jasem Mutlaq INDI drivers sync
088798eae 2023-07-29 Wolfgang Reissenberger Reporting of captured image corrected
55b3637a0 2023-07-25 Andreas Sturmlechner Drop superfluous definition
85bcddf3e 2023-07-29 Hy Murveit Analyze/Capture stats were using default StellarSolver values. Now HFRProfiles.
81129ae4f 2023-07-28 Yuri Chornoivan Fix minor typos
c35758934 2023-07-28 Yuri Chornoivan Fix minor typo
bf59e1a3a 2023-07-27 John Evans updated focus section of manual for 3.6.6
af220f3be 2023-07-26 Wolfgang Reissenberger Bug fix clearing guiding graph also on manager tab
1fbb90d62 2023-07-25 Hy Murveit Fix Analyze i18n inconsistency when writing/reading align & guide states.
5dab3c217 2023-07-25 John Evans Focus fixes 10
1ae40efe2 2023-07-25 Hy Murveit Do not let the fontsize for FOV markers get larger than the allotted vertical space.
4af6f49ff 2023-07-23 Wolfgang Reissenberger Bug fix for handling remotely stored images
7acaf6d60 2023-07-22 Jasem Mutlaq Display reduced focal length and focal ratios
e11d92604 2023-07-22 Jasem Mutlaq Update DSLR lens range to allow longer focal lengths
8c4d33bb1 2023-07-21 John Evans BuildFilterOffsets refactor
ee40d388e 2023-07-20 Akarsh Simha Add DBus methods to query what KStars is currently centered on
368b2b838 2023-07-21 Jasem Mutlaq Update tooltips to avoid user confusion
57db672c1 2023-07-20 Jasem Mutlaq Fix crash when closing FITS viewer due to lambda capturing the shared pointer
7ec241953 2023-07-20 Jasem Mutlaq send overall label
ca0dfd510 2023-07-20 Jasem Mutlaq Add hasWCS to metadata
eaea6ddd2 2023-07-20 Jasem Mutlaq Fix crash when multiple instances of FITSViewer is used. Since migrating to QSharedPointer, need to clear the reference when the window is closed an..
39978a612 2023-07-20 Hy Murveit Fix bug where greedy scheduler would terminate StartAt jobs
a7839dc70 2023-07-18 John Evans Focus: persist radio button settings
e221f0bb5 2023-07-18 Jasem Mutlaq Translate PAH messages. Fixes #250
25198770d 2023-07-18 Toni Schriber Correct permutated name of rotator reverse switch
90d14972b 2023-07-17 Jasem Mutlaq Fix tab IDs after FITSViewer is destroyed
5467649c4 2023-07-17 Jasem Mutlaq Cover the whole range of HIPS 0 to 20th order
b6f26355d 2023-07-16 Jasem Mutlaq Use QSharedPointer for FITSViewer
63b3c2026 2023-07-16 Jasem Mutlaq Fix MacOS compile issues
2fad01da9 2023-07-16 Jasem Mutlaq Fix crash when offline hips is not found
3239cf62c 2023-07-16 Jasem Mutlaq Fix crash when tab is out of bound
c5a5fa2bd 2023-07-16 Jasem Mutlaq Do not check current order for offline hips
29c010239 2023-07-16 Jasem Mutlaq HiPS FITS Viewer overlay
725947f68 2023-07-15 Jasem Mutlaq Fix filter manager crash in case a device was removed and then add again
bfe392c79 2023-07-14 Wolfgang Reissenberger Failed alignment after a meridian flip blocks capturing
9ba62a314 2023-07-14 Jasem Mutlaq Fix typo
48f165e5b 2023-07-13 Jasem Mutlaq Migrate FITSTab to QSharedPointer
e3d0d6bf5 2023-07-13 Jasem Mutlaq Simplify updated signal and add autostretch scriptable toggle
8767c1700 2023-07-13 Jasem Mutlaq Add a signal on image update
3eaf2d520 2023-07-13 Jasem Mutlaq Fix warning
295d83d06 2023-07-12 Jasem Mutlaq Add ability to remote set stretch values
da80c7a45 2023-07-11 Jasem Mutlaq Explicitly convert to QUrl from String when applicable
c8218e0e6 2023-07-11 Jasem Mutlaq Make saveScheduler scriptable
4bbbdef52 2023-07-11 Jasem Mutlaq Process Url for invoke method
1d9a87858 2023-07-09 Yuri Chornoivan Fix minor typo
acaef0610 2023-07-09 Hy Murveit Retire classic scheduler algorithm--but keep code for now.
74a9b7907 2023-07-08 Hy Murveit fix tooltip typo
5721e6103 2023-07-08 Jasem Mutlaq Fix QSharedPointer semantics
a23ad8fb1 2023-07-08 Jasem Mutlaq Fix crash
165efa8ef 2023-07-08 Jasem Mutlaq Remove unnecessary headers
3b7e5ed7f 2023-07-07 Jasem Mutlaq Use QSharedPointer for DriverInfo
1d8a62e94 2023-07-08 Toni Schriber Evoke stop state of align module after canceling manual rotator
14147ef71 2023-07-08 Hy Murveit Allow user to specificy number of consecutive high-guide-deviation frames...
8c97889c0 2023-07-06 Yuri Chornoivan Fix minor typos
3525b0b4e 2023-07-05 Yuri Chornoivan Fix minor typos
802f093a9 2023-07-04 Yuri Chornoivan Remove executable bit
ccbee55ba 2023-07-04 Yuri Chornoivan Fix minor typos
179c4d0cf 2023-07-04 Yuri Chornoivan Fix XML
66c111a70 2023-07-04 Hy Murveit Another finsih-repeat bugfix--re no RememberProgress and job reset.
d9f7e46b0 2023-07-03 Hy Murveit fix scheduler finish-repeat bug
48523b97b 2023-07-03 Jasem Mutlaq If there is no focus offset requested then return immediately
829ccaf4b 2023-07-03 Jasem Mutlaq Fix warning
50f904ee8 2023-07-03 Hy Murveit Update scheduler handbook section.
9ae7b00dd 2023-07-02 Hy Murveit Add test for scheduler groups.
1e5747a68 2023-07-02 Hy Murveit Remove dead code: mosaic.ui mosaic.cpp mosaic.h
7a1be9a4f 2023-07-02 Hy Murveit Add groups to greedy scheduling
e2a51afab 2023-07-01 John Evans Fixed bug taking flats when "flats same as lights" option checked
623045502 2023-07-01 Hy Murveit Fix display bug in previous speedup MR
94c81b812 2023-06-30 Yuri Chornoivan Fix minor typos
8ac0664a9 2023-06-30 Hy Murveit Speedup scheduler with large number of jobs
7ccd8b57d 2023-06-30 Jasem Mutlaq Fix QML warning
18b91a1bb 2023-06-30 Jasem Mutlaq Update client tab on client terminal
e42566083 2023-06-29 Wolfgang Reissenberger Scheduler option for repeating the entire schedule
05fc60ee7 2023-06-28 Jasem Mutlaq Set remote drivers field in add profile
cb7ef7ef6 2023-06-27 Wolfgang Reissenberger Refactoring capture module | process extraction
7b9f085ba 2023-06-27 Jasem Mutlaq Revert "Update to new KF5 standards"
3f6799d1c 2023-06-27 Jasem Mutlaq Support radio buttons in settings
d23bfe791 2023-06-27 Jasem Mutlaq Update to new KF5 standards
d69ad255b 2023-06-26 Josep M. Ferrer Use of https protocol for links instead of http
71d371a42 2023-06-26 Toni Schriber replace rotator button icon
87fb6fc59 2023-06-26 Jasem Mutlaq Fix test case
7ca9523aa 2023-06-26 Jasem Mutlaq Use guide via to avoid confusion
59adda9c0 2023-06-25 Yuri Chornoivan Fix minor typo
99158d070 2023-06-22 Yuri Chornoivan Fix minor typos
e117e41e7 2023-06-21 Jasem Mutlaq Do not hardcode the server URLs
12d9d3819 2023-06-21 Jasem Mutlaq Add more logging for rotator and do not use pointer in set angle
a32a54542 2023-06-20 Yuri Chornoivan Fix minor typos
312643c3e 2023-06-19 John Evans L1PPhase2 Focus Updates to Handbook
d7b314e60 2023-06-19 Jasem Mutlaq Do not capture after non-guide dither since a camera is not required nor expected
d958ca4a9 2023-06-18 Johnny Jazeix Simplify includes with using class include instead of module
cddc55888 2023-06-17 Johnny Jazeix fix Teritary -> Tertiary
355bf52ec 2023-06-16 Jasem Mutlaq Fix cloud plan id
0f7329c47 2023-06-14 Antoni Bella Pérez City fixes to her local language
dd01692c6 2023-06-12 Jasem Mutlaq INDI Drivers sync
fbbab14a5 2023-06-11 Hy Murveit histogram touchup
9e36ff401 2023-06-10 Hy Murveit Histogram bugfixes. Remove dead code.
8162fe893 2023-06-09 Hy Murveit Mousing over image puts cursor in histogram
71095146d 2023-06-10 Jasem Mutlaq Fix calling database in a different thread
a8cdb3eb3 2023-06-10 Jasem Mutlaq Fix setting font size to zero
942d8b143 2023-06-04 Valentin Boettcher tell the linker to remove unnecessary symbols from the python module
02381eea2 2023-06-08 John Evans L1P Phase2 Bugs9
c9f3b5790 2023-06-07 Jasem Mutlaq Improve logging and disable unnecessary logs
d588c90bf 2023-06-07 Jasem Mutlaq Fix KF5 warnings
708a4cbf5 2023-06-07 Jasem Mutlaq Fix missing signal issue
a60bcdabd 2023-06-07 Hy Murveit Add histogram tooltips
f0f518f13 2023-06-06 Hy Murveit Fix bug computing histograms for float/double images.
8f5b2a59d 2023-06-06 Wolfgang Reissenberger Bugfix parking for darks and bias frames
2878f8b65 2023-06-06 Hy Murveit Add histogram stretch controls to fitstab
b83de3431 2023-05-31 Heiko Becker Fix build without INDI
0626a7914 2023-06-02 Jasem Mutlaq Only emit status change if state actually changed
b60ea464a 2023-06-01 Antoni Bella Pérez l10n: minor fixes
06eea8e05 2023-06-01 Jasem Mutlaq Must clear list to prevent crash
0200b4865 2023-06-01 Jasem Mutlaq Starting 3.6.6 development cycle
0edbf8eec 2023-05-31 Jasem Mutlaq 3.6.5 changelog
8e64183e8 2023-05-31 John Evans L1PPhase2Bugs8: Better Curve Fitting
3.6.5 (SUBS):
30e179d01 2023-05-31 Jasem Mutlaq Fix regressions introduced by MR !793 due to the use of static variables. Using Options statically caused a major regression in retrieving the AppDa..
2374e48e8 2023-05-31 Jasem Mutlaq Fix misc clanzy warnings
709a14de5 2023-05-31 Jasem Mutlaq Make sure elapsed time make sense
dcd5e345a 2023-05-31 Jasem Mutlaq Remove remote astrometry timer as it conflicts with align timer
c77a4551d 2023-05-30 Jasem Mutlaq Add missing ovp parameter
0bd69e351 2023-05-30 Hy Murveit Add developer option to save align images
b6ff9866f 2023-05-30 Jasem Mutlaq User database simplification to fix Windows crash
aa2cab2d1 2023-05-29 John Evans Draft: LIPPhase2Bugs7 : added missing widgets to kstars.kcfg
370da55ef 2023-05-28 Jasem Mutlaq Reset remote astrometry if driver was removed
e1f10c183 2023-05-28 Jasem Mutlaq Comment out the confirmation for PAA dialog since a user may inadvertenly press No and then this choice is remembered in future sessions. Then the u..
aa0592e9b 2023-05-28 Jasem Mutlaq Improve support for detecting more complex trains
6a6d27782 2023-05-28 Jasem Mutlaq Add secondary and teritary trains if there are more cameras detected
b7dac8df2 2023-05-28 Oliver Kellogg focus.ui focusStarMeasure toolTip (HFR): Fix typo at "encapsulates".
cf6bd1c91 2023-05-27 Jasem Mutlaq Fix compile issue on Windows
cb37877e6 2023-05-27 Jasem Mutlaq preliminary support for skypoint hips
a5042fb20 2023-05-25 John Evans fix for win64 compile error gslhelpers attempt 2
e9eb5cd98 2023-05-25 Jasem Mutlaq Check placeholder format for placeholders when constructing prefix as this is required for remote files
3b0384524 2023-05-24 Jasem Mutlaq Mark as stable for upcoming 3.6.5 release
d5e3cf6f2 2023-05-24 Jasem Mutlaq Update credits
6fcd034eb 2023-05-24 Jasem Mutlaq Move tooltip to credits instead
9123fe3f0 2023-05-23 John Evans constexpr-win64-bug
64ab91b4f 2023-05-23 John Evans Bug fix for constexpr on win64
8f9369cec 2023-05-22 Hy Murveit Fix issue related to Analyze focus graph.
40c395962 2023-05-22 Jasem Mutlaq Move the manual pulse widget button elsewhere as it conflicted with progress indicator
8aa97813b 2023-05-20 Jasem Mutlaq Check for intermediatory focus abort before it is restarted
cacfd31bf 2023-05-20 Josep M. Ferrer Fix small typos
85eab57d0 2023-05-20 Jasem Mutlaq Restore index to General and reduce layout spacing
afe822f20 2023-05-19 Jasem Mutlaq Send pending properties only every 500ms to throttle down
c7857817a 2023-05-20 John Evans L1P Phase2 bugs 5
72f8cc195 2023-05-19 Wolfgang Reissenberger Switch introduced between dynamic and static filter setting for alignment
103f527eb 2023-05-19 Jasem Mutlaq Fix most likely cause for invalid train IDs that are not loaded property due to syncDelegatesDevices having pending changes without any more calls t..
bdba7ccb7 2023-05-19 Jasem Mutlaq Revert "Fix align not updating filter when it switches."
d3b1bf84b 2023-05-19 Akarsh Simha Allow the user to rotate the sky map, and also allow some standard settings like inverted view
f0957855c 2023-05-18 Wolfgang Reissenberger Adapt frames counting when removing a sequence job
e54866918 2023-05-18 John Evans L1P Phase 2 Bugs4 - Adjusted focus FWHM parameters to discard less stars
a9c39a7ff 2023-05-17 Hy Murveit Modify capture labels.
4ca1c52ad 2023-05-18 Yuri Chornoivan Fix minor typo
807ee481a 2023-05-17 John Evans L1P bug fix isEnabled()
0f87d2661 2023-05-17 Hy Murveit Extend the artificial interval for adaptive focus to 4s.
6651d7498 2023-05-16 Hy Murveit Add the autofocus solution and adaptive focus to Analyze.
c7362f9e8 2023-05-17 Jasem Mutlaq Multiple fixes for exposure calculators and coding style fixes with astyle
f53ee620e 2023-05-17 Jasem Mutlaq Fix connection status
f0c1d9b02 2023-05-17 Joseph McGee Changes for the implementation of the optimal sub-exposure calculator.
4b51a33aa 2023-05-17 Jasem Mutlaq Ekoslive multi-node support
6971d668e 2023-05-17 Yuri Chornoivan Fix minor typos
d24c7791d 2023-05-17 Jasem Mutlaq Add protection against unguraded use of rotator control panel. Improve tooltips
9b86ead10 2023-05-16 Jasem Mutlaq Minor rotator improvements
edc819956 2023-05-16 Hy Murveit Add L1Pass curve to analyze focus plot
45d7bf8ae 2023-05-16 Toni Schriber improve UI, encapsulation and calculations of 'rotatorsettings'
7e58f51b2 2023-05-16 John Evans L1P Phase 2 bug fixes 2
13ad15bc4 2023-05-15 Wolfgang Reissenberger Aberration Inspector for Focusing
06c43c75d 2023-05-15 James Amendolagine Fix align not updating filter when it switches.
3f97b684f 2023-05-15 Jasem Mutlaq Do not disable settings while focus in progress as it leads to regressions
7731f520f 2023-05-14 Wolfgang Reissenberger Move to trash by default when deleting frames
2a9bd8240 2023-05-14 Dušan Poizl Load WCS info from XISF files
a56e12970 2023-05-14 Philipp Auersperg-Castell option limitSupernovaeByZoom
b2cd362a8 2023-05-13 Jasem Mutlaq Add manual pulse support to guiding to help with diagnostics
97191e607 2023-05-13 Wolfgang Reissenberger Checkbox for usage of external sky map
f063222a6 2023-05-13 Hy Murveit Revert compression of saved focus and guide fits files.
ac38b74ec 2023-05-11 Jasem Mutlaq Check for filename payload in load and slew
e3259c606 2023-05-08 Hy Murveit Fix PAA bug where stop popup is ignored.
fac91080e 2023-05-08 John Evans bug fix to check for filter wheel before accessing filter wheel properties
669972118 2023-05-08 Yuri Chornoivan Fix minor typos
2838e5914 2023-05-07 Yuri Chornoivan Fix minor typos
5663a5de5 2023-05-06 John Evans L1P Phase2
840363fed 2023-05-04 Wolfgang Reissenberger Refactoring capture module to state machine | attribute cleanup
53e11b220 2023-05-02 James Amendolagine Update meridian flip so that it will Call the flip specific command if available.
98092182f 2023-05-01 Hy Murveit cleanup
5ac32a4c6 2023-05-02 Hy Murveit Add a separator when generating filenames if needed
55e200dbd 2023-04-29 Hy Murveit Don't permanently change module's optical train setting when train doesn't exist.
dc74ec565 2023-04-18 Jasem Mutlaq Send messages to EkosLive
d3e39283c 2023-04-13 Jasem Mutlaq Fix remote placeholder not getting properly sanitized
3f48f16ae 2023-04-12 Jasem Mutlaq Do not permit optical train change while PHD2 is connected
3b7649d4f 2023-04-12 Jasem Mutlaq Fix bug with not setting filter policy prior to filter initializtion which may lead to autofocus when it is not required
fa278c2e8 2023-04-08 Hy Murveit Update signal/slot code in analyze
6cd080643 2023-04-08 Hy Murveit Add more scheduler status to scheduler status display
9e9f7a24c 2023-04-07 Jasem Mutlaq Starting KStars 3.6.5 development cycle
3.6.4 (XISF):
e27a949d3 2023-04-06 Jasem Mutlaq Fix typo
72911b507 2023-04-05 Jasem Mutlaq Fix loading of compressed FITS
79a2438bf 2023-04-05 Jasem Mutlaq Fix ekoslive warnings
6fa3707e4 2023-04-04 Jasem Mutlaq If device interface is not defined then parking and unparking them should result in a state error and not endless loops. Thanks to Lee in INDI forum..
af20fb775 2023-04-04 Jasem Mutlaq Fix option not synced to disk
46eec7822 2023-04-04 Jasem Mutlaq Fix EkosLive options not getting saved
f70848260 2023-04-04 Jasem Mutlaq INDI drivers sync
0bd4bd113 2023-04-03 Jasem Mutlaq Protect against missing time and location update in case an external source (e.g. GPS) is missing in the profile or fails to connect. This is done b..
e2819d315 2023-04-03 Wolfgang Reissenberger Bugfix for mount model
084c98e0e 2023-04-02 Jasem Mutlaq Update the documentation to remove obsoleted packages and add xisf
64ddc0721 2023-03-31 Jasem Mutlaq Add reset placeholder format button and fix format preview
2539107d8 2023-03-29 Jasem Mutlaq INDI drivers sync
802b47efa 2023-03-28 Jasem Mutlaq INDI drivers sync
d7777aac5 2023-03-28 Jasem Mutlaq Fix crash when removing a managed driver that was removed previously
f9896797e 2023-03-26 Jasem Mutlaq Add extra check to ensure index is valid
1da9fb89b 2023-03-26 Jasem Mutlaq Check if we have new FITS_HEADER property introduced in INDI v2.0.1
c60ca17fc 2023-03-26 Jasem Mutlaq Fix typo
a83ab4122 2023-03-25 Wolfgang Reissenberger Avoid deleting the last optical train
3a3bd60bd 2023-03-25 Jasem Mutlaq Mark as stable to prepare for release
78585dae0 2023-03-25 Jasem Mutlaq INDI drivers sync
cc9e0b93a 2023-03-25 Jasem Mutlaq Add John Evans to authors and TNS server for supernovae
bd541f2a3 2023-03-24 Jasem Mutlaq if a train is deleted, replace with with the next available train until a user make an explicit selection
59d571f1f 2023-03-21 Jasem Mutlaq Update KStars to be compatible with INDI 2.0.1 FITS headers property
58795d32c 2023-03-19 Wolfgang Reissenberger Setting capture state correctly after flip completed
4e3a60b89 2023-03-13 Dušan Poizl Add libxisf-dev as build dependency
68ac5fd09 2023-03-14 Wolfgang Reissenberger Horizontal splitters added to modules layout
e536811e5 2023-03-10 Phu Nguyen Update home page to kstars.kde.org
0ef3b1fd1 2023-03-10 Dušan Poizl Changes for LibXISF0.2
e6d9b4712 2023-03-11 Wolfgang Reissenberger Refactor meridian state capture logic to state machine
a3f3c23ab 2023-03-06 Phu Nguyen Update screenshot links
85a93acd5 2023-03-06 Wolfgang Reissenberger Remove target attribute from SequenceJob
acd22a458 2023-03-02 Thomas Stibor Draw asteroids with selectable color and fixed size
117c717f9 2023-03-03 Jasem Mutlaq Cache directly from filename so that we do not reuse m_CurrentDarkFrame
c36da89c7 2023-03-03 Jasem Mutlaq Protect against connecting nullptr
d8ad7c16e 2023-03-03 Jasem Mutlaq Fix dark library cache issue where same reference was used for multiple images
1b8b4ce10 2023-03-03 Jasem Mutlaq Fix typo
59e5fc5f3 2023-03-03 Jasem Mutlaq Add missing loadGlobalSettings function in dark library
489459240 2023-03-02 Jasem Mutlaq Max dark guide threshold Default is 1 sec
c66d297bf 2023-03-02 Jasem Mutlaq Increase missing devices timeout to 5 seconds to alleviate false alarms for late initialized devices
5471ea716 2023-03-02 Jasem Mutlaq Remove obsolete signals
d9855d97f 2023-03-02 Hy Murveit Fix file overwriting issue
5757bd7fa 2023-02-28 Hy Murveit Fix locale issue in Analyze file picker
16ce193b0 2023-02-28 Jasem Mutlaq Update target position angle when a meridian flip is detected so that it does not cause uncommanded rotation post MF
10775c532 2023-02-27 Wolfgang Reissenberger Avoid '+' in target names
dd1ec285b 2023-02-25 Jasem Mutlaq Do not remove filter model on device removal
9eb7dca58 2023-02-25 Jasem Mutlaq Remove device from filter manager
644ae4280 2023-02-24 Wolfgang Reissenberger Controlling EKOS with external Sky Maps
2ab3d1715 2023-02-19 James Amendolagine Increase the indi control panel property label width to make them more readable.
8d8d1b2ec 2023-02-19 Dušan Poizl Support for XISF
0738eeb60 2023-02-18 Wolfgang Reissenberger Extract capture initialization (filters, focus on filter change) to state machine
30b3cd59b 2023-02-18 Thomas Stibor Fix asteroid visual magnitude calculation
f19d35326 2023-02-18 Eric Dejouhanet CI: move to Ubuntu 22.04.
437afb6a9 2023-02-18 Robert Lancaster A user recently reported missing letters in QML labels, textfields, radio boxes, and titles in the Mount Control Box and the What's Interesting Wind..
303bbc9c8 2023-02-18 Jasem Mutlaq Add missing Qt::Tool
bdd05f0fd 2023-02-15 Jasem Mutlaq Fix crash in test catalog due to XML loading issue that only happens in TEST probably due to some https issue?
d1dc21dea 2023-02-09 Jasem Mutlaq Use alternative solution that also fixes datetime placeholder on Windows. Backporting to 3.6.3
11dce3d7a 2023-02-09 Jasem Mutlaq Remove another use for indi_timestamp
e1b75bbc6 2023-02-08 Jasem Mutlaq Use Qt own ISO8601
e5e8f4c1e 2023-02-07 Jasem Mutlaq Fix setting optical train reducer
1530d9eec 2023-02-06 Jasem Mutlaq Fix placeholder sequence counter on Windows.
ce303ea71 2023-02-06 Jasem Mutlaq Fix placeholder path on Windows due to hardcoded POSIX separators
09d24763b 2023-02-06 Jasem Mutlaq Add x suffix to make it more clear
b81336d65 2023-02-06 Jasem Mutlaq Fix range for reducer/barlow
2851932b8 2023-02-05 Jasem Mutlaq Fix separator replacement mistake
1dbdae3e9 2023-02-05 Jasem Mutlaq Use indi_timestamp from INDI GIT
608a13db2 2023-02-05 Hy Murveit m_TargetName was being overwritten when the UI Element targetNameT was programmatically modified. This cause the signaling from the scheduler to cap..
3.6.3 (ZTF):
a250eb5f3 2023-01-31 Jasem Mutlaq INDI drivers sync
833cc0dc1 2023-01-30 Jasem Mutlaq Add missing overall percentage
962673337 2023-01-30 Jasem Mutlaq Fix meridian flip update throttling issue
62ac48afb 2023-01-28 Jasem Mutlaq Use MD5 unique signature instead of random UUID since the latter cannot be used again
a3633aa2b 2023-01-28 Jasem Mutlaq Traced down the issue to the debounce timer introduced before. Needs to be disabled for programattic imports
a82b08561 2023-01-28 Jasem Mutlaq Fix timing issue with mosaic import
9a8f4739a 2023-01-27 Jasem Mutlaq Need to save mosaic information on train change in align module
c540e4546 2023-01-26 Jasem Mutlaq When syncing devices we must reset the combo boxes to previous state
da9595154 2023-01-26 Jasem Mutlaq Fix typo
327e831b5 2023-01-26 Jasem Mutlaq Fix deprecated INDI 2.0.0 warnings
6dfc7c571 2023-01-26 Jasem Mutlaq Use same format as previous version of KStars to be consistent
ad163ad69 2023-01-26 Jasem Mutlaq Fix major calculation error in calculating DSLR field of view
48b170a28 2023-01-26 Jasem Mutlaq Refresh scope list after editing equipment manager otherwise newly added optical elements do not show up
6a13a7f70 2023-01-23 Jasem Mutlaq Disable EQGrid since it is no longer needed
640c86a95 2023-01-23 Jasem Mutlaq Delay emitting newFrame since align view does not render immediately
3e2ee4da5 2023-01-23 Jasem Mutlaq Misc fixes to code style. Make sure we emit update whenever any element is updated
ee28def5b 2023-01-23 Jasem Mutlaq Use tooltips instead of dedicated UI to show the preview filename
b83f57bc4 2023-01-21 Jasem Mutlaq INDI drivers sync
ae8750ee7 2023-01-20 John Evans Auto focus overscan
4aa8b9660 2023-01-19 Jasem Mutlaq Fix compile error on Windows
b73651e41 2023-01-18 Jasem Mutlaq Remove unnecessary headers
8294000cc 2023-01-16 Yuri Chornoivan Fix minor typos
94a629497 2023-01-15 Hy Murveit Update handbook for polar alignment
9670a2b57 2023-01-14 Wolfgang Reissenberger Fixing compiler warnings for anonymous non-c-compatible type defs
cd8468a4c 2023-01-13 Hy Murveit Fix deprecations
67c277420 2023-01-12 Jasem Mutlaq Fix few INDI warnings
a613b41fd 2023-01-11 Jasem Mutlaq Update to support INDI v2.0.0
04c226d02 2023-01-10 Yuri Chornoivan Fix minor typo
dea0c5630 2023-01-10 Ed Lee Manage path separator between directory and format.
f65e6c7e8 2023-01-09 Hy Murveit Make Greedy the default scheduer algorithm
8027ac261 2023-01-09 Wolfgang Reissenberger Restructured Capture header file to improve the readability
3c3a686e9 2023-01-09 Jurgen Doreleijers FITS histogram limited scroll and zoom. See #239 assuming only positive pixel intensities.
882a0a360 2023-01-03 Hy Murveit Add custom y-axes to Analyze Statistics plot.
a5bf0733f 2023-01-08 Wolfgang Reissenberger State machine for guiding deviation
7572cabec 2023-01-05 Hy Murveit Move some includes from .h to .cpp files when not needed in the .h.
e719762dd 2023-01-02 Dušan Poizl Change Part# to Part_# in mosaic tool
ebda16652 2023-01-02 Hy Murveit Make the right ekos options tab display for capture and scheduler. Start options on top.
a0424db1c 2023-01-01 Jasem Mutlaq Add uuid and zoom to payload
5b4455e31 2023-01-01 Hy Murveit Add WindowStaysOnTopHint on Mac OS
993ba254d 2022-12-31 Jurgen Doreleijers Fix for #237 FITS viewer fails to show the button for toggling star detection
0c603711f 2022-12-30 Wolfgang Reissenberger Re-focusing state machine for Capture
71ae9043c 2022-12-28 Wolfgang Reissenberger Bug fix for capture target part III
6f18babd3 2022-12-27 Jasem Mutlaq Guiding --> Guider so that it is consistent
4e8e992de 2022-12-26 Wolfgang Reissenberger Bug fix for capture target part II
19a9b07e3 2022-12-24 Hy Murveit speedup for the clipping calculations
987476f44 2022-12-24 Jasem Mutlaq Improve description
231a5e06b 2022-12-23 Hy Murveit Add controls to set the clipping values
3714e6903 2022-12-23 Hy Murveit fix test_ekos_scheduler_ops and make it stable
1b16c737b 2022-12-23 Wolfgang Reissenberger Placeholder setting target from scheduler
7594783db 2022-12-22 John Evans Focus timer bug version 2
79e8f5b25 2022-12-17 Wolfgang Reissenberger Bugfix for target in file name
83db5e001 2022-12-14 Wolfgang Reissenberger Debug message for missing options key removed
f7fc99b99 2022-12-11 Jurgen Doreleijers Fixing bugs 1 thru 3 mentioned in issue 173.
c8b36baba 2022-12-11 Salman Naheed Add commands for file settings
67e2801ee 2022-12-10 Jurgen Doreleijers Simple calculators for angle
7fb401349 2022-12-08 Hy Murveit Add mount altitude constraint to scheduler altitude check
459e91fea 2022-12-09 Hy Murveit Fix analyze cursor bug, add cursor to the timeline too.
4be1d63c9 2022-12-08 Hy Murveit Add y-zoom to analyze stats plot, and allow user to hide Analyze displays.
6d7935cd5 2022-12-08 Hy Murveit disable 2 flakey tests, test_placeholderpath and test_ekos_capture_count
3f20b2a18 2022-12-02 Josep M. Ferrer Small typo
0b901fb69 2022-12-02 Yuri Chornoivan Remove leftover
8866a3d91 2022-12-02 Jasem Mutlaq More fixes for placeholder. Separate suffix from format
45926fc9f 2022-12-02 Yuri Chornoivan Remove extra word
e5325d060 2022-12-02 Josep M. Ferrer Small typo
2e7fb6e00 2022-12-02 Jasem Mutlaq Preliminary fixes for placeholder changes. Separate base pictures directory from placeholder format
c0c1ecc01 2022-12-02 Jasem Mutlaq Minor GUI improvements
8a9e9d23c 2022-12-01 Wolfgang Reissenberger Optical trains editor reworked
faa1afec4 2022-12-01 Ed Lee filename Placeholders
460dbab54 2022-12-01 Jasem Mutlaq Kicking off KStars v3.6.3 development cycle
83ac93731 2022-11-30 Jasem Mutlaq Add extra check for crash
7ced69219 2022-11-30 Jasem Mutlaq KStars stable 3.6.2 release
3.6.2 (Artemis):
c23d787e1 2022-11-29 Jasem Mutlaq Fix issue with opening and closing covers manually for Light, Flat, and Dark frames. It was not asking user to cover the scope on darks and was not ..
bbbe27b65 2022-11-29 Jasem Mutlaq Fix setAllSettings not saving to KStars options file
be1177c7d 2022-11-28 Jasem Mutlaq Avoid using driver manager to access client manager since it can suffer from a dangling pointer. DriverManager should be migrated to shared pointers..
bc950a716 2022-11-24 John Evans Adding back a missed change
05fd8fa74 2022-11-24 John Evans rebasing some files
18da11511 2022-11-24 John Evans Added extra logging to focus motion for debug purposes
2d4a67d45 2022-11-22 Hy Murveit Don't dark guide when dithering. Reduce dithering lost-star threshold.
ee7fc577f 2022-11-22 Hy Murveit Dark Guiding tweaks
27fdc2614 2022-11-22 Jasem Mutlaq INDI driver sync
1f6e980a5 2022-11-21 Jasem Mutlaq Fix target name connection and connect ekoslive after scheduler is initialized
13cd3d36b 2022-11-21 Jasem Mutlaq If slewing to empty sky we should update target name accordingly to avoid confusion that we are still on the last target
bd1c6281f 2022-11-21 Jasem Mutlaq Fine tune star rBest value to give more chance to select deep sky object within the vicinity
fc671fe62 2022-11-21 Jurgen Doreleijers Fixing accounting problems for dso's.
eaca38e27 2022-11-20 Jasem Mutlaq Add missing ACTIVE_FOCUSER check for ACTIVE_DEVICES
f9748439a 2022-11-20 Jasem Mutlaq Add more logging for target coords so it is easier to diagnose issues
c529eb057 2022-11-20 Jasem Mutlaq Add test case for deltaAngle
79dd22abd 2022-11-20 Wolfgang Reissenberger But fix for re-alignment and meridian flip
e2ea8e74b 2022-11-19 Hy Murveit Fix bug in dither offset check
38005c58c 2022-11-20 Jasem Mutlaq Fix warnings and add more statement to watch for target position angle changes
5960a4b57 2022-11-18 Jasem Mutlaq Use updateCoordsNow to avoid warnings
77465dcd6 2022-11-18 Jasem Mutlaq Fix issue where center and track does not place an object exactly at the center but to an offset
14d392c89 2022-11-18 Jasem Mutlaq Fix text cut off in the wizard
87df459ad 2022-11-17 Jasem Mutlaq Do not static i18n. This should fix the language switch issue in KStars
ab06d00fb 2022-11-17 Jasem Mutlaq Fix kxi18n reference not found warning in the logs. Thanks Albert
47d5b1212 2022-11-17 Jasem Mutlaq Disable FETCH_TRANSLATIONS since po is now already included in the repo
9cf165b98 2022-11-15 Jasem Mutlaq Update maximum focal length to 900
91cbdc787 2022-11-14 Jasem Mutlaq If stream is disabled, do not process stream blobs
527326818 2022-11-13 Wolfgang Reissenberger Scheduler warning for missing dome
412e1ad4a 2022-11-13 Jasem Mutlaq Revert "Use shared_ptr from INDI since this is a major improvement to exchanging raw pointers of devices that might be deleted leading to crashes. T..
85ed6aa90 2022-11-13 Jasem Mutlaq Use shared_ptr from INDI since this is a major improvement to exchanging raw pointers of devices that might be deleted leading to crashes. This requ..
4f713ce04 2022-11-13 Jasem Mutlaq Generic invoke, property set and get
01ea79f81 2022-11-12 Wolfgang Reissenberger Refactoring capture meridian flip state handling
9e5470ab5 2022-11-10 Jasem Mutlaq Add generic method invoke call with optional arguments
735d8711d 2022-11-10 Jasem Mutlaq Use KSMessageBox to manual observatory startup and shutdown
17503e83f 2022-11-10 Jasem Mutlaq Send text directly
fdbe8f6f6 2022-11-10 Hy Murveit remove exclamation marks
95eeb487a 2022-11-10 Hy Murveit add warning when specified filter is not in the filter wheel definition
b27d84e5b 2022-11-10 Jasem Mutlaq Fix enable mount limits due to meridian flip signal confusion. Fixes #230
b5caf284c 2022-11-09 Jasem Mutlaq Add camera read-only gain and offset values if available
f62413989 2022-11-09 Jasem Mutlaq Train editor should be disabled until we have trains to edit
aa8d30614 2022-11-08 Jasem Mutlaq Give clear indication which devices are exactly missing from optical trains
b588449b0 2022-11-08 Jasem Mutlaq Avoid refreshing optical manager too many times if no new devices are detected
8a51cbc4a 2022-11-08 Jasem Mutlaq Only set optical train profile when all drivers are running
04d97cd76 2022-11-07 Wolfgang Reissenberger Scheduler job handling during job startup
9326dff7c 2022-11-07 Jasem Mutlaq Since edit strategy is on field change, no need to explicitly reload model from database after update
dff6dd8d1 2022-11-06 Hy Murveit Fix issue where scheduler stopped when align was retrying.
71c429fb4 2022-11-06 Hy Murveit Add healpix solver speedup to scheduler pointing check
8cf39818e 2022-11-05 Jasem Mutlaq When removing profile and trains, make sure the database is cleaned from related settings as well
da18bed5c 2022-11-04 Jasem Mutlaq Fix FlagManager RA box to show hours instead of degrees.
c167a35fc 2022-11-03 John Evans Focus Motion Timer bug fix
16c044c29 2022-11-02 Jasem Mutlaq Separate key from property name since later might be altered to support kcfg_ prefixes
571ead8c4 2022-11-02 Jasem Mutlaq Restore polyfills since they are required and used
d116db10e 2022-11-02 Jasem Mutlaq Add a function to save global settings programatically
c2016e5bb 2022-10-31 Hy Murveit Disable large deviation backoff from multistar.
615132f34 2022-10-31 Jasem Mutlaq Fix a few edge cases where a lone camera does not auto-connect even when that is enabled due to conflicts with optical train manager
1ec0c2f12 2022-10-30 Jasem Mutlaq Use focus motion GUI to fetch value and return after timeout
32e9ab7b7 2022-10-30 Jasem Mutlaq Add train, reducer, and ratio to database since they affect the effective FOV
80ea2a68d 2022-10-30 Jasem Mutlaq Add .fz to compressed focus images.
20fd759e0 2022-10-30 Jasem Mutlaq Change camera selection to camera 1 and 2 since it makes more sense to specify those with optical trains