forked from KDE/kstars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2946 lines (2808 loc) · 262 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.3.5 (Eridani):
31f986600 2019-09-08 Jasem Mutlaq Add confirmation when deleting index folder, improve GUI a bit
53305c7ee 2019-09-08 Robert Lancaster Improving Astrometry Conf file support for Linux and OS X
0a3661c78 2019-09-06 Jasem Mutlaq Add indi web manager scanner for the local network in the profile editor
09156232e 2019-09-06 Jasem Mutlaq Adding icon for atikbase
c582e031a 2019-09-06 Jasem Mutlaq Initilize the recommended gain properly on startup.
f5db90ab0 2019-09-06 Jasem Mutlaq Add DBus function to get location info
3973c3b89 2019-09-05 Jasem Mutlaq Improvements is estimateJobTime
fad803969 2019-09-05 Jasem Mutlaq Send camera state instead of just temperature
423c190cf 2019-09-05 Jasem Mutlaq Do not set temperature or gain unless supported
c4541528e 2019-09-04 Jasem Mutlaq Send states after defining the device capabilities
9da186174 2019-09-04 Jasem Mutlaq Do not exclude Windows from testing. The windows build was failing due to another reason
361a0163e 2019-09-04 Jasem Mutlaq processMarkSelection should be overridden in align view to prevent double clicking from moving the marker by mistake
61ae6f3fc 2019-09-04 Jasem Mutlaq Fix few warnings
db6aba4a6 2019-09-04 Jasem Mutlaq Improve set coordinates manually by adding switches for JNow and J2000 settings
c169fdaec 2019-09-04 Jasem Mutlaq Set coordinates manually should always default to RA-DE tab
db6742a36 2019-09-04 Jasem Mutlaq Do not report guiding as started in PHD2::StartGuiding Event handler because it will start scheduled capture prematurely (before Settle is complete).
a196bf114 2019-09-04 Jasem Mutlaq Use table for statistics to show all channels
c58562e35 2019-09-04 Jasem Mutlaq No need to use double for frequency
048dd2ea4 2019-09-04 Laurent Montel Add DesktopEntry to notifyrc
8d96f935b 2019-09-04 Jasem Mutlaq Compute histogram is median value is missing
c04e9f588 2019-09-04 Jasem Mutlaq Median value should be an integer
c2d379f95 2019-09-03 Jasem Mutlaq In case setting is missing, use camera value
a5c088c0a 2019-09-03 Jasem Mutlaq Use generate_export_header to fix compile issue on Windows
9dc806afa 2019-09-03 Jasem Mutlaq Send settings along with camera info
59cc4f96c 2019-09-03 Jasem Mutlaq Disable actions when parked
83a9b0600 2019-09-02 Jasem Mutlaq Use icons for the menu
12c89412c 2019-09-02 Jasem Mutlaq Use more intuitive telescope popup menu in the sky map
872f2354b 2019-09-02 Wolfgang Reissenberger Display of weather sensor data added to Observatory module
9c9dd4140 2019-09-02 Jasem Mutlaq Insert format and gain values in the settings
abf0ec3a4 2019-09-01 Yuri Chornoivan Sync the tip with GUI label
861b1866c 2019-08-31 Jasem Mutlaq Improve set coordinates manually dialog by initializing it to the current selected coordinates first
299c60b74 2019-08-31 Jasem Mutlaq Set clicked object to nullptr in order to correctly recenter on clicked point
1a1185841 2019-08-31 Jasem Mutlaq INDI drivers sync
1a77e6822 2019-08-31 Jasem Mutlaq Minor UI changes
54b7ed8e7 2019-08-31 Yuri Chornoivan Fix minor EBN issues
a8dd7687c 2019-08-31 Wolfgang Reissenberger Adding error handling strategy control to Scheduler
cc05215c5 2019-08-31 Wolfgang Reissenberger Filename options selection preserved
69fb7e9a8 2019-08-31 Jasem Mutlaq Try disabling testing on Windows
df36c16f5 2019-08-30 Jasem Mutlaq Further improvements to the auto-park functionality
8f4ed5f74 2019-08-30 Jasem Mutlaq Add support to automatically starting auto-park feature on startup to park the mount at a specific time
a99fd95aa 2019-08-30 Yuri Chornoivan Replace the last overlooked qSort()
9a3ab3221 2019-08-30 Yuri Chornoivan Replace obsolete methods with non-obsolete ones
60332d1e4 2019-08-30 Yuri Chornoivan Fix typos, make the button tooltips translatable
7c873442b 2019-08-30 Yuri Chornoivan Make the tooltips translatable
ebdfc0eb5 2019-08-30 Yuri Chornoivan Fix minor typo
a4a1e0775 2019-08-29 Jasem Mutlaq Add support to reverse axis in mount control panel
848b15b2e 2019-08-29 Jasem Mutlaq Add support to profile mappings
a882598c6 2019-08-29 Yuri Chornoivan Fix minor typos
8ea9a8f0a 2019-08-29 Yuri Chornoivan Fix i18n()
b45556c5b 2019-08-29 Robert Lancaster Should be fabs not abs, abs is ambiguous.
55831a86c 2019-08-27 Jasem Mutlaq NOOP --> i18n
bef790752 2019-08-25 Jasem Mutlaq Fix the Android build with the latest Qt, Android NDK and SDK tools
ddbf38859 2019-08-25 Jasem Mutlaq Add cr3 to list of RAW formats
d7981710e 2019-08-24 Robert Lancaster changing name to sky point
0fa7df3d8 2019-08-23 Robert Lancaster Fixing bug in Mount Model and Simplifying function
4f006707e 2019-08-23 Jasem Mutlaq Fix using i18n for Sun object
e8b1be7ee 2019-08-23 Jasem Mutlaq + Do not set m_wasSlewStarted explicity when issusing GOTO command. Wait for IPS_BUSY from mount driver. + Using Enums instead of string comprison f..
4b19a3d44 2019-08-22 Jasem Mutlaq Make display format in planet viewer to be dd/MM/yyyy
7d7fbe0a5 2019-08-22 Jasem Mutlaq Update install instructions
669835dae 2019-08-22 Jasem Mutlaq Preparing for 3.3.5 release
5072faa20 2019-08-22 Jasem Mutlaq Driver sync
1b0d4b17c 2019-08-22 Jasem Mutlaq Fix infinite loop
0cb19ee3a 2019-08-21 Jasem Mutlaq Profile wizard revamp to remove confusion by some end users
1ee36d436 2019-08-21 Jasem Mutlaq Update backlash value from driver as it arrives
0e1d35d2a 2019-08-20 Jasem Mutlaq Fix toggle of meridian flip unit
1d0803895 2019-08-20 Jasem Mutlaq Fix gain behavior setting in focus module. It should use value stored in config unless changed by user
eb075bbed 2019-08-20 Jasem Mutlaq Add support for direct gain setting in capture module
82509989c 2019-08-20 Jasem Mutlaq INDI drivers sync
d83e7d82d 2019-08-19 Jasem Mutlaq Fallback to default configs in case dns lookup fails for .local addresses
7f4b8b10f 2019-08-19 Wolfgang Reissenberger Bugfix for focus looping with HFR setup
151f405c5 2019-08-19 Hy Murveit Sample the fits viewer's histogram calculation
836679ea6 2019-08-19 Jasem Mutlaq Make the meridian flip hour angle unit to be in degrees by default since this is a common settings used by many mounts. The meridian flip value is s..
03a943060 2019-08-19 Jasem Mutlaq Remove debug that was added by mistake
e7de7ff60 2019-08-17 Jasem Mutlaq Flip correction vector for southern hemisphere
b197a2a0a 2019-08-15 Jasem Mutlaq Set the exposure restart button as default since it was defaulting to record which should not be the case
54d617fa4 2019-08-13 Jasem Mutlaq Add support to setting backlash directly in Ekos focus module IF supported by the INDI driver.
ce8e6c967 2019-08-13 Jasem Mutlaq Check against device name and not pointer when removing
5031aa100 2019-08-13 Jasem Mutlaq Fix minor warning
4add11efd 2019-08-13 Jasem Mutlaq INDI drivers sync
0e9825067 2019-08-11 Jasem Mutlaq remove unnecessary debug message
c395e4580 2019-08-11 Jasem Mutlaq Adding support for debayer in video stream window
3.3.4 (Dormi):
d3323c608 2019-08-08 Jasem Mutlaq Use i18nc for Not Applicable
9d6ecf5d3 2019-08-08 Jasem Mutlaq Clean up how group debug options are parsed
abe69b6da 2019-08-08 Wolfgang Reissenberger Rolloff roof handling introduced
7fb0266f0 2019-08-08 Jasem Mutlaq Comment unused variable
a4d10fdcb 2019-08-06 Jasem Mutlaq KStars v3.3.4 release
da4661ca6 2019-08-06 Jasem Mutlaq use rangeHA to make sure -12 < HA <= 12
fda55706a 2019-08-05 Jasem Mutlaq v3.3.3 version code 15 for KStars Lite on Android
4228d5ccc 2019-08-05 Jasem Mutlaq Proper disconnection of Dark Library signals and slots in various Ekos modules.
569b147f1 2019-08-05 Jasem Mutlaq Read astrometry config file on other platforms
b17fe7453 2019-08-04 Jasem Mutlaq This should fix #410573 in addition to initial support for dust caps in Dark Library.
02fc8bfaf 2019-08-03 Jasem Mutlaq always evaluate statistics after opening regardless of histogram
e7d78e838 2019-08-03 Nicolas Fella Fix double/float conversion in Java code
37f8576cc 2019-08-02 Nicolas Fella Fix missing include in Android build
3.3.3 (Canis):
13bca1735 2019-08-01 Jasem Mutlaq qMin --> qMax since we need rate 0 to 3
fe3c4d97c 2019-08-01 Jasem Mutlaq Fix proper disconnection for KSMessageBox signals
dba03213e 2019-08-01 Jasem Mutlaq Another attempt at fixing odd behavior of accept and reject roles. Now using ActionRole and simply connecting the button click to the dialog accept ..
ef59fcceb 2019-07-31 Jasem Mutlaq Further improvements to the reliability of the system after a crashed driver is restarted
5df509c57 2019-07-31 Jasem Mutlaq Add support to restarting crashed drivers for local servers
18999483d 2019-07-31 Jasem Mutlaq Seems like reversing order of accept and reject roles fixes the button order in MacOS. It has no effect on Linux
e7f35fce9 2019-07-31 Jasem Mutlaq sizeInBytes is only available in Qt 5.10+, thanks to jpaana for the heads up
ae9f44bba 2019-07-31 l10n daemon script GIT_SILENT made messages (after extraction)
6db7d8c0e 2019-07-30 Jasem Mutlaq Send preview JPEGs when they are generated to the client
5446b14cb 2019-07-30 Jasem Mutlaq Migrate more KMessageBox --> KSMessageBox
3a64d4f93 2019-07-30 Jasem Mutlaq Try to solve Qt warning about adding to existing layout
44fe84d14 2019-07-29 Wolfgang Reissenberger Bug fix paused during dithering not resuming
c8d48978f 2019-07-29 Jasem Mutlaq Fix minor warning
738dc7a47 2019-07-26 Jasem Mutlaq INDI drivers sync
8b0be80c3 2019-07-26 Jasem Mutlaq Migrate dark library to async KSMessageBox
0361dbf91 2019-07-26 Jasem Mutlaq Remove rest of autonomous option that was deleted
bdbbf55bc 2019-07-25 Jasem Mutlaq remove & when comparing button texts
69c58c89a 2019-07-25 Jasem Mutlaq Removing unnecessary autonomous option for dialog with the instroduction of the new KSMessageBox class that open message box asynchronous and can be..
19460c0b8 2019-07-24 Jasem Mutlaq Fix crash in downloadJob due to possible using raw pointer before
b2d276de3 2019-07-24 Jasem Mutlaq Add new KSMessageBox class to fulfill some KStars specific requirements
e656f1ee8 2019-07-24 Jasem Mutlaq Add helpful comments
d90beac90 2019-07-24 Wolfgang Reissenberger Autofocus disturbing meridian flip corrected
d9c6acc1c 2019-07-22 Wolfgang Reissenberger Show the tracking box on the inital focusing frame
a5b559fa4 2019-07-22 Jasem Mutlaq refactor isSlewDirty and set it as false in cases of IDLE and ALERT states for EqNP.
c9afb11cd 2019-07-22 Wolfgang Reissenberger Check for refocus also during the calibration stage
0391998ff 2019-07-22 Jasem Mutlaq Add support to CONFIG_PURGE and add more options to clear some mount data in case of trouble
796d0b15c 2019-07-18 Jasem Mutlaq Add more protection boundary checks
4d5adb07b 2019-07-18 Jasem Mutlaq remove unnecessary cast
8ca63444b 2019-07-17 Eric Dejouhanet Reset autofocus when executing a job, so that focus step is applied properly when checked.
d65071a02 2019-07-17 Jasem Mutlaq Fix regression for non-guide dithering and re-arrange guide option to make dither frequency has its own row
f134b5ee5 2019-07-17 Jasem Mutlaq Add option to control auto park post PAA tool operation
2f2ab1b39 2019-07-16 Jasem Mutlaq Another missing header
fa2458d60 2019-07-16 Jasem Mutlaq Add missing header
a1692871c 2019-07-16 Jasem Mutlaq Introduce autonomousMode option to run KStars in autonomous mode whereas user interaction is not expected so popup dialogs are suppressed whenever p..
fb5d192a8 2019-07-15 Jasem Mutlaq KStars v3.3.3
4ca0b2ab1 2019-07-15 Jasem Mutlaq Fix translation issues with solar system objects
c211fc0a5 2019-07-15 Jasem Mutlaq Precess sun to get correct accurate geocentric coordinates
03317cc17 2019-07-14 Eric Dejouhanet When evaluating twilight restriction, shift dusk to next day when it happens before dawn on the same day.
7e3757a96 2019-07-09 Jasem Mutlaq Display more information about version and interface once device is online
a5b719580 2019-07-09 Jasem Mutlaq Fix non-static warning
7a29a2a8e 2019-07-08 Jasem Mutlaq Only construct histogram synchronously when required
968c0263d 2019-07-04 l10n daemon script SVN_SILENT made messages (.desktop file) - always resolve ours
99835cca2 2019-07-03 Jasem Mutlaq Explicitly use setCurrentIndex since setCurrentText is problematic
7d6fbb121 2019-07-03 Wolfgang Reissenberger Motion control for domes added
3.2.0 (Ivy):
596569b5a 2019-04-18 Jasem Mutlaq Including missing header
63a05b9f1 2019-04-14 Jasem Mutlaq Must add mount this way since we have a tree structure
18fdbc7f3 2019-04-14 Wolfgang Reissenberger Capture counting corrected
49fc6bfc1 2019-04-13 Jasem Mutlaq Do not connect to EkosLive with empty username
8968926f9 2019-04-11 Jasem Mutlaq Also accept .fits.fz in FITSViewer
5577dc1c6 2019-04-09 Jasem Mutlaq Fix slew and sync in KStars Lite. Patch by Sebastian.
060749c18 2019-04-08 Wolfgang Reissenberger Clean module registration
11cc7c78c 2019-04-07 Jasem Mutlaq Use click to trigger the change since the signals are attached to the button clicked event
6fa80f617 2019-04-06 Jasem Mutlaq Show toolip explicitly on button click
29461e124 2019-04-06 Jasem Mutlaq Add information icon to explain what the guiding rate control is for
0c8f1ef98 2019-04-06 Jasem Mutlaq Resume KStars if paused in EkosLive
4389e2361 2019-04-06 Jasem Mutlaq Make sure clock is ticking and sync with system time when websocket connection is established
c90eaa335 2019-04-06 Jasem Mutlaq Move auto star selection for calibration to main guide module to make it more accessible
8c0e7b2b9 2019-04-06 Jasem Mutlaq Fix issue with online solver args
7bf777cf4 2019-04-04 Jasem Mutlaq Add RC telescope type
53266b534 2019-04-04 Jasem Mutlaq Fix capture delay when using legacy polar alignment tool
9d6687356 2019-04-03 Jasem Mutlaq If primary or guide IDs are zero or less, set profile scope to Default
b91610734 2019-04-02 Jasem Mutlaq Add support to updating scopes and profiles
ae65feaa1 2019-04-02 Jasem Mutlaq Scope commands do not require active connection in this location as well
e90132500 2019-04-02 Jasem Mutlaq Scope commands do not require active connection
049f3083e 2019-04-02 Jasem Mutlaq GET_SCOPES can now be sent before Ekos is online
12a340798 2019-04-02 Jasem Mutlaq Add scope websocket functions to add and delete scopes. Improve getScopes to cover all available telescopes
d6e0f59b5 2019-04-01 Jasem Mutlaq Send profile add deleting or adding one
c59abae19 2019-04-01 Wolfgang Reissenberger Unchecking the meridian flip checkbox reset the meridian flip state
e8cf401fb 2019-03-31 Jasem Mutlaq Move send drivers before the block requiring live ekos connection
9bfe7a47b 2019-03-31 Jasem Mutlaq Do not change filter directly, use the filter manager
25441353f 2019-03-31 Jasem Mutlaq Fix infobox setting not sticking for some reason under Qt 5.12
5689e1085 2019-03-30 Jasem Mutlaq Save focus module filter wheel and filter in options
87baf5eb9 2019-03-27 Eric Dejouhanet Fix altitude restriction log and allow restriction down to -15 degrees
9895d4898 2019-03-24 Jasem Mutlaq Wait until backlash builds up before moving to more aggressive pulses that might cause overshooting the target position
3916fc78e 2019-03-24 Jasem Mutlaq Add debug log for remaining angle for mount rotation in alignment module
c5f80470d 2019-03-21 Jasem Mutlaq Add websocket function to get all drivers
f9ab9cbb8 2019-03-18 Jasem Mutlaq Update docs
677f7dbad 2019-03-18 Jasem Mutlaq Profile management via websocket is ready for testing
60bd7f39a 2019-03-18 Jasem Mutlaq Initial work for profile and driver exposure to ekoslive
bd1d4d28b 2019-03-18 Wolfgang Reissenberger Bugfix: proper usage of abort() for finishing a capture sequence queue
abbfb7db1 2019-03-17 Jasem Mutlaq Reduce calibration iterations to 3 by default as it is mostly what is required for most cases
fabf80109 2019-03-17 Eric Dejouhanet Prevent rescheduling aborted jobs until all jobs are processed
410f0226f 2019-03-17 Jasem Mutlaq Making Scheduler robust against guiding problems
f52ef343d 2019-03-17 Wolfgang Reissenberger Bugfix #405325: Keeping meridian flip in capture and mount in sync.
7a04a4393 2019-03-12 Jasem Mutlaq Fix websocket getting called from a different thread
cba93a705 2019-03-12 Jasem Mutlaq Add EkosLive DBus methods and properties
99ba5e31e 2019-03-12 Jasem Mutlaq Display saved DSLR infos
15c296062 2019-03-12 Robert Lancaster Making the StarProfile Viewer fix from 3.1.0 work for Guide and Focus Views too
6ee0ebfb7 2019-03-10 Jasem Mutlaq Load captured RAW images in summary without have to double-covert them since they are converted once in INDI::CCD
1549005f5 2019-03-10 Jasem Mutlaq Only remove .fits explicitly from base name instead of finding last decimal point since this causes conflicts with exposures in file names
08fc70c84 2019-03-09 Jasem Mutlaq Make the mount window resizable to fit on different DPIs
6b3d3b4fb 2019-03-09 Jasem Mutlaq HEAD is at v3.2.0 now
ff94934ee 2019-03-09 Jasem Mutlaq INDI Driver auto sync
4cbaa0f58 2019-03-08 Jasem Mutlaq Comment out obsolete slot connect
f250da377 2019-03-07 Jasem Mutlaq Remove unrequired attributes.
04dd9fed1 2019-03-07 Jasem Mutlaq Notify user of error in focusing even when not in autofocus
b10c35a93 2019-03-07 Jasem Mutlaq Add support to sending horizontal coordinates from the mount box
cfdecf66f 2019-03-06 Heiko Becker LONG_LONG_MAX is an obsolete GNU name for LLONG_MAX
07219cd80 2019-03-06 Jasem Mutlaq Improve description of the ImageToFITS option
7d0e57198 2019-03-06 Jasem Mutlaq Refactor the variable means to remove any confusion
a4f962162 2019-03-05 Jasem Mutlaq Auto ImageToFITS should be false by default
1da8d1b62 2019-03-05 Jasem Mutlaq Improve behavior for dark and flat frames capture when it comes to covering the mount
c1aef273e 2019-03-05 Jasem Mutlaq Support converting images to FITS
efd36250e 2019-03-04 Jasem Mutlaq Before loading next image, check if current image is temporary and if yes remove it from disk
61d42b6e4 2019-03-04 Jasem Mutlaq Add notification dialog for user to cover scope with flat field light source in case of manual source
9947d6ff0 2019-03-04 Yuri Chornoivan Fix minor typos
efa95bffb 2019-03-04 Robert Lancaster Making the initial astrometry.net path change automatic
336babded 2019-03-03 Jasem Mutlaq Configure Equipment was causing a conflict on Mac as found by Robert. Broke the menu and distributed the two items to where they logically belong
f93400f75 2019-03-03 Jasem Mutlaq More PHD2 fixes: 1. Restore star display despite "Receive External Guide Frame" setting since they are two separate options. 2. Fix crash when async..
f8522bfb1 2019-03-03 Jasem Mutlaq Be silent when auto updating comet and asteroid orbital elements
1c9157e20 2019-03-03 Jasem Mutlaq Add comet and asteroid orbital elements auto update on startup
d1b81599a 2019-03-01 Jasem Mutlaq Make selection behavior single rows for the capture jobs
cf581270c 2019-02-28 Wolfgang Reissenberger Deleting arbitrary imaging sequence in the Capture module corrected.
3a81f2e51 2019-02-27 Jasem Mutlaq Fix upload issues to the cloud with compressed images
dc198425f 2019-02-27 Jasem Mutlaq All compressed files are extracted and considered temporary however we need to know if the original compressed file was temporary or not
8e3b17c32 2019-02-27 Jasem Mutlaq Fix state of ekoslive button toggle on startup
0c70fad89 2019-02-27 Jasem Mutlaq Do not exist program on error, return error code
3.1.0 (Timmy):
5af4cbdc7 2019-02-26 Jasem Mutlaq Changes for KStars 3.1.0
34a6e0c2f 2019-02-26 Jasem Mutlaq Sync INDI drivers
0b0f99334 2019-02-25 Jasem Mutlaq More parked state more prominent for end users
d8fdb74d1 2019-02-24 Jasem Mutlaq Go back to single threaded runningAverageStdDev since the multithreaded version is causing crashes
57337d2dc 2019-02-24 Jasem Mutlaq Reset activeBin to 1 if there is no binning support
bc5788d16 2019-02-21 Yuri Chornoivan Add Doxygen comment
b9a3343ff 2019-02-21 Jasem Mutlaq No need to explicitly toggle all member of an exclusive button group
fbf0bee79 2019-02-21 Jasem Mutlaq One architecture detection function is enough
62bd608f4 2019-02-21 Jasem Mutlaq Add a couple of function to limit the software in case of ARM architecture
0f1351510 2019-02-20 Yuri Chornoivan Remove extra spaces to not interfere with Doxygen comments
b0210f23f 2019-02-19 Yuri Chornoivan Fix minor Doxygen issues
68e7afd64 2019-02-19 Jasem Mutlaq Fix cases for .fits.fz formats
c842797ad 2019-02-19 Jasem Mutlaq Remove temporary compressed .fz files
30278ca0d 2019-02-19 Jasem Mutlaq Try to use QtConcurrent for running average stddev calculations
f6d810c83 2019-02-18 Jasem Mutlaq Append format to the temporary file
8e2476dcc 2019-02-18 Jasem Mutlaq When there is binning change, always FORCE setting of frame values even if they did not change
dc4a8f726 2019-02-16 Volker Krause Fix build on binary factory
1fd7cc9db 2019-02-14 Jasem Mutlaq Indenepdent windows has other issues should be used for advanced users
706896304 2019-02-14 Jasem Mutlaq Make independent window stay on top
509a16b20 2019-02-14 Jasem Mutlaq Fix Ekos widget not showing up issue after close. Make both INDI and Ekos windows independent by default
db96ecab7 2019-02-14 Jasem Mutlaq If preview RAW then process it. Qt can open CR2 though
d92170292 2019-02-12 Jasem Mutlaq Only convert RAW to JPG if DSLR image viewer is enabled
075531728 2019-02-10 Jasem Mutlaq Use better connection that does not produce runtime warnings
48ce18f1d 2019-02-09 Jasem Mutlaq Make button icons more indicative of the action
025c4f3ca 2019-02-09 Jasem Mutlaq Auto sync
e0a019f19 2019-02-08 Jasem Mutlaq Use simple array instead of QVector
33d6af04d 2019-02-08 Jasem Mutlaq Reimplement auto stretch buffer in rescale
ac4a672f6 2019-02-07 Jasem Mutlaq No need to explicitly call save config since it is done by the driver already
c69966fd6 2019-02-05 Jasem Mutlaq Watch for negative IDs and reset them to zero
b47a6fbba 2019-02-05 Jasem Mutlaq Do not autostrech again
5e924826c 2019-02-04 Jasem Mutlaq When target position exceeds limits, try to move it to the limit edge instead of immediately aborting
87f090d7d 2019-02-04 Jasem Mutlaq Sync drivers
b26261685 2019-02-04 Jasem Mutlaq If pixel is zero and model exists, update driver
fb43f5d99 2019-02-04 Jasem Mutlaq 0 to nullptr
ada401f72 2019-02-03 Robert Lancaster Summary: Removing Environment Variable, Use qt.conf instead.Improving Mac Astrometry Logging.
1f12040f3 2019-02-02 Jasem Mutlaq Fix override warnings
03d1d8813 2019-02-02 Jasem Mutlaq Use better statiscal methods for average HFR
9e03ce150 2019-02-02 Jasem Mutlaq Merge branch 'arcpatch-D18510'
aebcc6f7b 2019-02-02 Jasem Mutlaq Do not reset current position to 50000 when using a relative focuser
8feee5e1f 2019-02-02 Jasem Mutlaq Use steps instead of ticks
a7826e9b3 2019-02-02 Jasem Mutlaq Rearrange the UI a bit. When full field is unchecked, the FITS View is alerted so that it reset the filter values
21bb7c775 2019-02-02 Eric Dejouhanet Ring-field focusing feature.
ee73f81f8 2019-02-02 Sebastian Neubert working prototype solution for manual slewing during polar alignment
824c2887f 2019-02-02 Wolfgang Reissenberger Meridian flips handled by Mount
c795b4bdf 2019-02-02 Jasem Mutlaq Enclose MacOS functions with ifdefs
c1f3d114e 2019-02-02 Robert Lancaster Summary: Environment variable and Index File Path Fixes for Macs
964879c51 2019-02-02 Jasem Mutlaq Always reset zoom level dropdown to 1x when the window is displayed. Disable FPS target if the camera does not support it
f45514107 2019-02-01 Jasem Mutlaq Add extra check for capture module
9f4a6ae5b 2019-01-29 Jasem Mutlaq Apply Autostretch in dark library
83baf543a 2019-01-29 Jasem Mutlaq Use a combo box instead of zoom buttons and set the values twice since GPhoto does not change the value at first go
a2b8cc30a 2019-01-29 Jasem Mutlaq Use a more logical control for FPS in the video streaming window
32553c69f 2019-01-29 Yuri Chornoivan Fix the unfinished statement
5e2445486 2019-01-29 Yuri Chornoivan Fix minor typos
2db493f04 2019-01-28 Jasem Mutlaq Update FITS Viewer information
a08d5be70 2019-01-28 Jasem Mutlaq Update version
9a3b44ef7 2019-01-25 Jasem Mutlaq Add DBus function to set GPS location
4384b31a2 2019-01-25 Jasem Mutlaq Fix few warnings
cc9380aa4 2019-01-24 Jasem Mutlaq Make MOC on older Qt happy
745695628 2019-01-23 Yuri Chornoivan Really translate the notice
5ccec7d9f 2019-01-23 Yuri Chornoivan Fix minor typos, enhance formatting
5175396b5 2019-01-23 Jasem Mutlaq Style updates
3d541e3f9 2019-01-22 Yuri Chornoivan Docs enhancements and updates
5b20b6eec 2019-01-22 Yuri Chornoivan Docs enhancements and updates
90bd90b36 2019-01-22 Jasem Mutlaq Expand spacer if there are no DSLR controls to show
65f81ac56 2019-01-22 Jasem Mutlaq Fix few histogram issues with multi-channel images
fbfb77651 2019-01-22 Jasem Mutlaq Include filename in the sequence job. Use async uploads instead of blocking. Use Filename to load and upload data to cloud instead of relying on FIT..
71304a16d 2019-01-22 Jasem Mutlaq Initial work for supporting EOS zoom and zoom position control
640b3d245 2019-01-22 Jasem Mutlaq Remove spammy log
ff4031a4b 2019-01-21 Yuri Chornoivan Minor fixes and enhancements in docs
e78af3e3a 2019-01-20 Jasem Mutlaq Add manufacturer support to custom drivers
71cb09830 2019-01-18 Jasem Mutlaq Preliminary support for websocket to INDI::CCD on the client side
ff54baeef 2019-01-20 Yuri Chornoivan Fix minor formatting glitches in docs
01d1de71a 2019-01-19 Jasem Mutlaq Improving integration with EkosLive
11ef936e0 2019-01-19 Yuri Chornoivan Fix my typos
6654dfe42 2019-01-19 Yuri Chornoivan Fix minor glitches
2fb6d94b0 2019-01-17 Yuri Chornoivan Add Ekos docs to KStars
d9c6e792f 2019-01-14 Jasem Mutlaq Separate align and capture timeout timers
305f802a3 2019-01-10 Yuri Chornoivan Fix minor typo
2ea477356 2019-01-09 Jasem Mutlaq Add option for raising FITS viewer when an image is recieved
da0f8ebae 2019-01-09 Jasem Mutlaq Raise FITS Viewer when receiving an image
9bb38b5ae 2019-01-07 Eric Dejouhanet Fixed START_AT jobs disregarded while evaluating, and fixed the update of their score.
1f60a107c 2019-01-07 Wolfgang Reissenberger Meridian flip issued also when a target is slewed directly without using a schedule
7c6e9e03a 2019-01-05 Jasem Mutlaq Record initialHA after slew is complete. Without this, a premature meridian flip can be issued when not required if the slew happens outside the Mou..
a9ef62dd3 2019-01-04 Jasem Mutlaq Fix a possibly crash you on exit if one or more FITS Viewer windows remain open
b31dd1e18 2019-01-04 Jasem Mutlaq Remove the FITS viewer based on index and now raw pointer value
8e9382342 2019-01-04 Jasem Mutlaq Fix crash when using linguider
54c3c6203 2019-01-03 Jasem Mutlaq Remove "libindi" prefix in header files
1cba6d72b 2019-01-03 Jasem Mutlaq INDI Drivers sync script
6f6a09f02 2019-01-03 Jasem Mutlaq Rework serial port assistant page navigation
90f15f04d 2019-01-03 Jasem Mutlaq Ensure that autofocus is ready before asking filter manager to sync the focuser position for the filter
23700ffe1 2019-01-02 Jasem Mutlaq Sync INDI drivers script
75693abb2 2019-01-02 Jasem Mutlaq Remove device widget once udev rule is added and go back to home
2fd178f7e 2019-01-02 Jasem Mutlaq Fix issue where correction pulses where sent in odd frames only
5dd3651d0 2019-01-02 Yuri Chornoivan Last fixes to unbreak automatic PDF generation from Doxygen code
2bd1ad043 2018-12-29 Jasem Mutlaq In Dark library, always consider DSLRs to be shutterless when taking dark frames
ab5d0f983 2018-12-29 Jasem Mutlaq No need to check pointer, delete anyway
d0e9bc52d 2018-12-29 Wolfgang Reissenberger bug fix #400265: meridian flip check before capturing
c46bcafb7 2018-12-29 Jasem Mutlaq Use QVariantMap instead of QJsonObject for the signal since the latter is not automatically serielized to QVariantMap when used with DBus
7a83c25e8 2018-12-29 Jasem Mutlaq Register PierSide in DBus
b7c41c47c 2018-12-29 Jasem Mutlaq Add tooltip to mount tab to clarify limits
14e944110 2018-12-29 Jasem Mutlaq Reset shutter status in clear camera configuration
33c80eb3c 2018-12-27 Jasem Mutlaq Show and then raise the custom properties dialog to make sure it is displayed properly
36a2e8845 2018-12-27 Laurent Montel Use isEmpty()
0d37947b0 2018-12-27 Jasem Mutlaq Save remote capture directory in options
c0e85b4d9 2018-12-27 Jasem Mutlaq Bump to 3.1.0
791ad2985 2018-12-27 Jasem Mutlaq Remove old TODOs
9e1fab025 2018-12-27 Jasem Mutlaq Sync INDI drivers
4e3a15fd3 2018-12-26 Jasem Mutlaq Save PAH mount speed index for future use
8ef969d35 2018-12-26 Laurent Montel Add parent to buttondialogbox
f39cb09ff 2018-12-26 Laurent Montel Fix mem leak
c45fbcbd8 2018-12-25 Jasem Mutlaq Using rotation only instead of GOTO for PAH
e211076cb 2018-12-24 Jasem Mutlaq Fix syncing of the combo boxes when switching between local and remote
418fd3ef3 2018-12-23 Jasem Mutlaq Group mounts by manufacturer in the profile editor
edbd5496e 2018-12-23 Jasem Mutlaq Add more checks to the serial port assistant
c70d2afdc 2018-12-21 Jasem Mutlaq Add tooltip for mount model resetting
54f6c5567 2018-12-19 Jasem Mutlaq Move all sleep checking function to shouldSchedulerSleep function
9f514ca35 2018-12-19 Eric Dejouhanet Proper removal of existing jobs by the Mosaic Tool
3.0.0 (Algol):
369e30d4e 2018-12-19 Jasem Mutlaq Improve the naming of objects in the history find list
4ba2aa4e4 2018-12-19 Jasem Mutlaq Improve find dialog further
ab70395e0 2018-12-18 Jasem Mutlaq Move FindDialog to a singleton and improve its interface
322e7703d 2018-12-18 Jasem Mutlaq Send initial state on startup
8696bd1a8 2018-12-18 Jasem Mutlaq Fix radio box state
09376e5ff 2018-12-17 Jasem Mutlaq Automatically set prefix as currently mount tracking target if capture state is IDLE
908655c54 2018-12-17 Jasem Mutlaq Add clear button to prefix and script
54dade3a8 2018-12-17 Jasem Mutlaq Minor fix for manual dither
a3e3b2c7c 2018-12-16 Jasem Mutlaq Fix scheduler light frame check
1f3a925d0 2018-12-16 Jasem Mutlaq Improve progressive manual dithering
85a767406 2018-12-16 Jasem Mutlaq Minimize spaces
7fe72fc98 2018-12-16 Jasem Mutlaq Add switch for EkosLive connection mode
b9e6fb141 2018-12-14 Jasem Mutlaq Reduce minimum FOV for PAH to 10 arcmins since folks like to solve narrow field images and fail
dad9c9af3 2018-12-14 Jasem Mutlaq Do not change CCD settings if it is capturing now
ece6c0a36 2018-12-14 Jasem Mutlaq Add auto start support for EkosLive
d95035176 2018-12-13 Jasem Mutlaq 1. Fix LightFrameRequired flag. Calculated ALL required light frames for the job and then find if the overall job requires them. 2. Reset job stage ..
261fefea2 2018-12-13 Jasem Mutlaq Do not include FOV in KStars Lite
2c2a6c5dc 2018-12-13 Aleix Pol Add missing file to integrate with arcanist
6d6aaee0f 2018-12-11 Jasem Mutlaq Loaded and Closed signals should communicate FITS UID, not raw index in the widget
dfa010479 2018-12-11 l10n daemon script SVN_SILENT made messages (.desktop file) - always resolve ours
d5fc9b5ca 2018-12-10 Jasem Mutlaq Fix FOV shape
46618f648 2018-12-10 Jasem Mutlaq Remove duplicate property
3afe6b00a 2018-12-10 Jasem Mutlaq SOlve compiling error
ac129a3d1 2018-12-10 Jasem Mutlaq Add DBus support for FOVs
cfd401e80 2018-12-10 Jasem Mutlaq When deleting DSLR info, immediately fire up the DSLR info dialog
4cd008811 2018-12-09 Jasem Mutlaq Display DSLR image if preview always
946db550b 2018-12-09 l10n daemon script GIT_SILENT made messages (after extraction)
2fa7b9f54 2018-12-08 Yuri Chornoivan Add missing space
0ec215d69 2018-12-08 Jasem Mutlaq Only display serial port assistant when stellarmate is detected
e0d84250b 2018-12-07 Jasem Mutlaq Added shouldSchedulerSleep function to check if the current job is far away from lead time that necessate scheduler sleep. Some white spaces cleanups
58829bb13 2018-12-07 Eric Dejouhanet Rewrite of Scheduler planning
f1c5776a4 2018-12-06 Jasem Mutlaq Reversing DEC alone is not sufficient when pier side is switched so we clear calibration
bb78146cc 2018-12-06 Jasem Mutlaq Remove unnecessary header
d5b1b353c 2018-12-06 Jasem Mutlaq Add flag for when telescope is covered to uncover it in case of shutterless cameras.
9e855fa21 2018-12-05 Yuri Chornoivan Try to fix the build on Jenkins
7a31d2a68 2018-12-05 Yuri Chornoivan Remove property duplication
5d40881da 2018-12-05 Yuri Chornoivan Trying to fix the rest of minor doxygen issues
52090a6d0 2018-12-05 Yuri Chornoivan Fix minor typo
a3a2c6589 2018-12-05 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars
129230c64 2018-12-04 Jasem Mutlaq Serial port assistant is operational now but needs testing
033e1046b 2018-12-04 Jasem Mutlaq 1. If we are reacquiring a star when we are subframed, reset the frame. 2. Make guide module aware of mount pier side to switch DEC swap so that rec..
415690fdc 2018-12-04 Jasem Mutlaq Fix settling time for PAH and regular astrometry
f8409f85e 2018-12-04 Robert Lancaster Improvements to histogram
c69c8bf35 2018-12-04 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars
86bc697d3 2018-12-04 Yuri Chornoivan Fix minor typo
480965d33 2018-12-03 Jasem Mutlaq MOre progress on serial port assistant
0821ae6cd 2018-12-03 Jasem Mutlaq Add guide settle time for focus module when resuming guide
66b6aa507 2018-12-03 l10n daemon script GIT_SILENT made messages (after extraction)
ee5d35bbd 2018-12-02 Jasem Mutlaq Add icon for Serial Port Assistant
e85653c20 2018-12-02 Jasem Mutlaq Limit the serial port assistant to selected devices and do not show it just yet
cbe804508 2018-12-02 Jasem Mutlaq Adding support to loading and remove rules from serial port assistant
f020d0971 2018-12-02 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars
19effbebf 2018-12-02 Yuri Chornoivan Fix minor EBN doxygen issues
9a75874a4 2018-12-02 Yuri Chornoivan Fix minor typos
6213a7abb 2018-12-02 Jasem Mutlaq Add checkbox to drivers group
92c556a35 2018-12-01 Jasem Mutlaq Initial work for Serial Port Assistant integration
e8cbcc835 2018-12-01 Jasem Mutlaq Add a function to execute focus steps whether in-sequence or timed. This could run after image capture or after a dither operation is complete, so m..
0fff8ebf0 2018-12-01 Jasem Mutlaq Read and set focuser MAX position
8807679e1 2018-12-01 Jasem Mutlaq Set default solver action to slew to target since this is what new users expect
edcb4bae3 2018-11-30 Yuri Chornoivan Fix minor EBN doxygen issues
f8c2bf8c6 2018-11-29 Jasem Mutlaq Fix compile error with star profile widget
de5eb0259 2018-11-29 Robert Lancaster Fixing a crash caused by QCustomPlot's replot method in a concurrent thread
32b15d9ba 2018-11-28 Robert Lancaster Fixing StarProfileViewer and Adding Sliders to Histogram
1c78ec1c9 2018-11-28 Csaba Kertesz Fix Android build
b0d4dd0fc 2018-11-28 Jasem Mutlaq Honor settling time in Polar Alignment Assistant tool
5c39c2da8 2018-11-27 Robert Lancaster Creating the FitsTools Panel and Histogram Fixes
d60eefc6b 2018-11-26 Jasem Mutlaq Fix Degree to Hours error in finding next scope RA in Polar Alignment Assistant tool
a8073c844 2018-11-25 Yuri Chornoivan Make Star Profile Viewer localizable
40c9bfb99 2018-11-25 Yuri Chornoivan Get rid of zorder
39f75c049 2018-11-25 Jasem Mutlaq Add Pegasus Ultimate Power Box
2cc8ac8cd 2018-11-22 Jasem Mutlaq Updating INDI drivers list
9da689ccd 2018-11-22 Jasem Mutlaq Improving performance of star profile viewer
d98bd207d 2018-11-21 Jasem Mutlaq Do not get stuck if ekos status is idle
2eb72d97b 2018-11-21 l10n daemon script SVN_SILENT made messages (.desktop file) - always resolve ours
63edb18d3 2018-11-19 Yuri Chornoivan More EBN fixes in API docs
66257a011 2018-11-19 l10n daemon script GIT_SILENT made messages (after extraction)
aabb94a97 2018-11-18 Yuri Chornoivan Fix minor EBN issues in API docs
de7f74bae 2018-11-18 Yuri Chornoivan Remove duplicate includes
0c981ffd5 2018-11-18 l10n daemon script GIT_SILENT made messages (after extraction)
a4e6023d8 2018-11-17 Yuri Chornoivan Minor fixes to API docs
9b984ce39 2018-11-16 l10n daemon script GIT_SILENT made messages (after extraction)
f14f3db38 2018-11-15 Yuri Chornoivan Fix minor typos
4a7823826 2018-11-15 l10n daemon script GIT_SILENT made messages (after extraction)
e3a79c8c9 2018-11-14 Yuri Chornoivan Minor fixes to the API docs
28eed04fc 2018-11-14 l10n daemon script GIT_SILENT made messages (after extraction)
7590627f4 2018-11-14 Jasem Mutlaq Fix compile error
ae1dcd9c7 2018-11-13 Jasem Mutlaq For Refocus Every X time method, reset the focus frame if the last time we ran focus is >= 30 minutes
415f3dff8 2018-11-13 Yuri Chornoivan Fix typo: hasDeails -> hasDetails
5c81d1dd1 2018-11-13 Yuri Chornoivan Fix Appstreamercli minor issues
e5a12ee6d 2018-11-13 Yuri Chornoivan Add missing includes
27d10e4f9 2018-11-13 Yuri Chornoivan Fix minor typos
c56d24dda 2018-11-10 Jasem Mutlaq Fix enabling & disabling of BLOBs in the BLOB manager
92fe9a48d 2018-11-10 Jasem Mutlaq Add option to toggle using Focus median value
99834103c 2018-11-07 Jasem Mutlaq Add timeout to capture module
5efb79241 2018-11-06 Yuri Chornoivan Remove extra semicolons
e1f970517 2018-11-06 Jasem Mutlaq CHeck for targetChip which is a better indicator of disk vs non-disk darks
cb66fb188 2018-11-06 Jasem Mutlaq DO not ask to remove cover if data is loaded from disk
d59c6deaa 2018-11-06 Jasem Mutlaq Fix autostretch handling
984211e81 2018-11-04 Jasem Mutlaq Disable mount tracking if supported by driver after slewing to a wall
03e2c20d2 2018-11-04 Jasem Mutlaq Look in system path for drivers as well
fd915e011 2018-11-04 Jasem Mutlaq Bump to 1.3
4add977d7 2018-11-04 l10n daemon script GIT_SILENT made messages (after extraction)
da7539930 2018-11-03 Jasem Mutlaq Fix slewing to wall when not in calibration mode.
92c8491ea 2018-11-03 Jasem Mutlaq For shutterless cameras, ask user to remove cover from scope before continuing
afc33f675 2018-10-27 Jasem Mutlaq Add support for Dust Cap and Light panel control from EkosLive. Just light switch is now controllable plus parking
7189bb67c 2018-10-27 Jasem Mutlaq Use the common INVALID_VALUE constant
351bd4c32 2018-10-27 Jasem Mutlaq Send frames to EkosLive media whenever an image is captured and not necessairly depending on Summary View behavior. This would only work if the FITS..
1934c012c 2018-10-27 Jasem Mutlaq Add support for gain
87be20f17 2018-10-27 Jasem Mutlaq Use common INVALID_VALUE. Set gain from EkosLive is supported by camera by adjusting custom properties
9863db4e2 2018-10-25 Jasem Mutlaq Send domes and dustcaps when initialized
2aebdaaf4 2018-10-24 Jasem Mutlaq Store park status variable when updated
3c1643402 2018-10-24 Jasem Mutlaq Disconnect all _other_ CCDs when the CCD is switched, not the current CCD
720b6badb 2018-10-24 Jasem Mutlaq Do not crash if there are no sorted job in the 2nd run
026689b41 2018-10-24 Jasem Mutlaq Check if the file is temporary .. this was removed due to a regression
86db271f3 2018-10-24 Jasem Mutlaq Do not update frame when tracking box is enabled or disabled, let the calling function handles this
2abf84cfe 2018-10-24 Jasem Mutlaq Let the calling function handle calling updateFrame when necessary
a78a7c805 2018-10-24 Jasem Mutlaq Delete all component before clearing them
8bb0ac4d9 2018-10-24 Jasem Mutlaq No need to use pointer for QImage since the data is stored on the heap and is implicitly shared
f98492f2b 2018-10-24 Jasem Mutlaq Free background buffer
dfd0a7267 2018-10-22 Jasem Mutlaq QOverload not supported in Qt 5.6 which we use for 16.04
3f2726186 2018-10-22 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars
fa6ff04bf 2018-10-22 Jasem Mutlaq Add new function deltaAngle to DMS class to calculate the shortest angle between two angles.
4bc6befa6 2018-10-22 Jasem Mutlaq If object is not in the list, default to Saturn
be63dda4f 2018-10-22 Jasem Mutlaq Completely disconnect the server process when shutting down
39f1287b1 2018-10-21 Jasem Mutlaq Fix regression that caused job aborted due to twilight loop forever
0ed0f5771 2018-10-21 Jasem Mutlaq Remove extra option that is no longer required
9f0d41c3e 2018-10-20 Jasem Mutlaq Small improvements to icons to make them consistent with the rest of Ekos
aafd6adf3 2018-10-20 Jasem Mutlaq Fix layout stretch for observatory scripts
16e301823 2018-10-20 Pino Toscano fixuifiles
14528eeef 2018-10-20 l10n daemon script SVN_SILENT made messages (.desktop file) - always resolve ours
119e9a4ab 2018-10-19 Jasem Mutlaq Add earth shadow + lunar eclipse finder
ca52b659a 2018-10-18 Jasem Mutlaq Always emit resumeGuiding even on focus failure
16dfe2afc 2018-10-18 Jasem Mutlaq Add detailed comments for workflow. Fix issue with timeout in case of minimum required HFR is requested
3d2a77317 2018-10-18 Jasem Mutlaq Add Qt version to info
47c741ac2 2018-10-17 Jasem Mutlaq Remove duplicate alignTimer slot
cdd741910 2018-10-17 Yuri Chornoivan Fix minor typos
b436e426c 2018-10-16 Jasem Mutlaq Only run polynomial fitting after 5th data point to improve reliability.
eee4c4606 2018-10-16 Jasem Mutlaq Improve flat calibration algorithm by checking out of range and saturated images
66c1622b7 2018-10-15 Jasem Mutlaq Revert change from mass replacement. androiddeployqt should not have a packaging prefix
c1b04a0a8 2018-10-15 Jasem Mutlaq Complete the support for dome control in EkosLive
8fb96ad4f 2018-10-15 Jasem Mutlaq Fix Focus --> Align state
0b0834fce 2018-10-15 Jasem Mutlaq Update few timesouts to be more relaxed
f2a2f88d5 2018-10-14 Jasem Mutlaq Make loadAndSlew return a boolean value to solve async problem. More DBus functions need to be migrated to this pattern
53a13eb7e 2018-10-13 Jasem Mutlaq Only target SDK needs to be 26. Minimum SDK can remain at 17
025d23caa 2018-10-13 Jasem Mutlaq Google Store now requires minimum API to be 26 even for updates
678c96d23 2018-10-12 Eric Dejouhanet Use "Remember Job Progress" in Scheduler and "Always Reset Sequence When Starting" in Capture.
47b3a3633 2018-10-13 Eric Dejouhanet Fix regression on job deletion when sorting jobs based on altitude and priority is enabled.
a2b6a9aec 2018-10-12 Jasem Mutlaq For FITS images only emit BLOBUpdated after the frame is loaded to allow dependent modules to process the captured FITS after it is loaded
e4aa750af 2018-10-12 Jasem Mutlaq Add capture timeout watchdog to ensure focus does not timeout waiting for captured images
a5955d2cb 2018-10-11 Jasem Mutlaq Fix few issue with displaying capture progress when FITS Viewer is disabled
199051955 2018-10-11 Jasem Mutlaq Simplify image capture signaling
fcee7f64f 2018-10-11 Jasem Mutlaq Fix crash when opening FITS
e02f376f5 2018-10-10 Eric Dejouhanet Do not alter the state of the Scheduler while evaluating
9157a6fda 2018-10-10 l10n daemon script SVN_SILENT made messages (.desktop file) - always resolve ours
d6278a000 2018-10-10 l10n daemon script GIT_SILENT made messages (after extraction)
787ec001b 2018-10-09 Jasem Mutlaq Fix focus in and out
f0e9bd5e6 2018-10-08 Jasem Mutlaq Remove redundant vars
b24c2ed8c 2018-10-08 Jasem Mutlaq Adding dome and dust cap controls to dbus and ekoslive
a04c0c605 2018-10-08 Yuri Chornoivan Fix minor typo
d6d79c8e7 2018-10-08 Jasem Mutlaq Try to connect guider before guiding in the case of an external guider that got disconnected. For internal guider it makes no difference
1e03ff016 2018-10-08 Jasem Mutlaq Add inactivity checks in scheduler to make sure that modules do not timeout when they are commanded to do certain actions
fb875282e 2018-10-07 Yuri Chornoivan Fix minor EBN issues
6f347684f 2018-10-07 Jasem Mutlaq Call stop first before start and add a bit of delay in between. Restart timeout timer
998e57aa6 2018-10-07 Jasem Mutlaq Do not start Ekos if Ekos is already in pending mode or already online
5f8d20ded 2018-10-07 Jasem Mutlaq Make messages more consistent. Clean up old code
a777d1506 2018-10-06 Jasem Mutlaq Add warning when slewing to Sun. Adjust tracking rate if supported by the mount depending on the object type
2db493c09 2018-10-05 Pino Toscano remove extra return
2c94bce5f 2018-10-04 Jasem Mutlaq Add option to control DSLR image viewer. It can now be turned off
e92e7e59e 2018-10-04 Jasem Mutlaq Read driver manufacturer into DriverInfo class
4e6b8ed26 2018-10-04 Jasem Mutlaq Summary View now loaded sequence images properly
15e734753 2018-10-04 Jasem Mutlaq When polynomial next predicted exposure flat is invalid, discard the last point and recapture again
2308878a9 2018-10-03 Jasem Mutlaq Fix installation of translations files. po should be merged into source tree for this to work
7e1f63acf 2018-10-03 Eric Dejouhanet Update job completion counts, and fix regression on job rescheduling.
40d755591 2018-10-03 Jasem Mutlaq Add QFuture to fitsdata.h header since it is required on Android
1de7e4130 2018-10-03 Jasem Mutlaq KStars Lite should always fetch translations regardless
645540da1 2018-10-03 Jasem Mutlaq Add Zulu postfix to the DATE-OBS
ee82d0767 2018-10-02 Jasem Mutlaq Add option to fetch translations
cf0476591 2018-10-02 Jasem Mutlaq Add live view support to focus module and rework existing one in capture to be icon based
f07eff116 2018-10-02 Jasem Mutlaq Limit stack size change to Qt v5.10+
9cfccbc9e 2018-10-02 Jasem Mutlaq Merge branch 'async_fits'
332e25e19 2018-10-02 Jasem Mutlaq Fixing issue with updating list of running FITSViewers. They are now properly removed once closed
7740e042a 2018-10-02 Jasem Mutlaq More progress for async FITS operations
c0c1fe0d1 2018-10-01 Jasem Mutlaq More work on async loading
6528ab561 2018-10-01 Jasem Mutlaq Migrating the rest of the code to support the asynchronous nature of FITS loading now
2b3679a37 2018-10-01 Jasem Mutlaq Add helpful tip to location dialog
6bfa75846 2018-10-01 Jasem Mutlaq Merge branch 'master' into async_fits
c7dbd94c5 2018-10-01 Eric Dejouhanet Use system locale to display numbers in the scheduler.
ab320a1ec 2018-10-01 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars
4adf0ed41 2018-10-01 Jasem Mutlaq Fix issue with subframed calibration when auto-select star is not enabled. Now subframed star position is set properly in the internal guider before..
a2930512b 2018-10-01 Jasem Mutlaq Remove unnecessary break
fe758c72c 2018-09-30 Jasem Mutlaq Update star profile viewer to new property system
d572d63ed 2018-09-30 Jasem Mutlaq Starting work on asynchronous FITS operations
183d1758c 2018-09-30 Jasem Mutlaq Refactoring FITSData to migrate to Q_PROPERTY framework and to prepare to asynchronous loading
4daf63e55 2018-09-29 Jasem Mutlaq Fix wrong XML and indentation
07bf0ce7d 2018-09-29 Eric Dejouhanet Fix Scheduler slewing stage and dome interaction.
0ae972bbd 2018-09-28 Jasem Mutlaq Fix cooler logic issues
da1dd33e0 2018-09-28 Jasem Mutlaq Reduce code duplication and include SLEWING stage in the check since the mount could be on that object when the scheduler starts and therefore a sle..
fd13e74ac 2018-09-27 Jasem Mutlaq Fix QSharedPointer error
115c0d0cd 2018-09-27 Jasem Mutlaq Create a separate dedicated client to handle only BLOB properties to increase efficiency
68352b8b4 2018-09-27 Jasem Mutlaq Minor fixes
18dee7544 2018-09-27 Jasem Mutlaq Fix reconnect issues
15ae755c9 2018-09-27 Jasem Mutlaq Fix options and reintroduce INDI Control Panel button
808573c0d 2018-09-27 Jasem Mutlaq Minor cast fixes
6535358b6 2018-09-27 Jasem Mutlaq Missed ISD::ParkStatus change
5f73c086e 2018-09-27 Jasem Mutlaq Support older Qt versions format in 16.04
e2b179abe 2018-09-26 Jasem Mutlaq Encode the QDbus vars with ifdefs for KSTARS LITE
8bdd3ecd9 2018-09-26 Jasem Mutlaq Bump version to 1.2.0 for Android
ae29d544e 2018-09-26 Eric Dejouhanet Do not abort a job that is repeating because it started long ago, that delay is expected.
b97920405 2018-09-26 Jasem Mutlaq Capture module: fixes for decimal numbers in various locales, and fix for CCD selection
b17a8a3d4 2018-09-26 Jasem Mutlaq Disable KAuth due to reliability issues. We are now saving the config and files locally if not found on the system
7236760aa 2018-09-26 Jasem Mutlaq Send escaped text elements to prevent breaking XML
091e3fa69 2018-09-25 Jasem Mutlaq Cooler and clearing camera configuration buttons added
90fd88cbc 2018-09-24 Jasem Mutlaq Preliminary support for controlling cooler in capture module
fa000c136 2018-09-24 Jasem Mutlaq Fix target name property. Also, do not clear sequence queue as it called internally by capture module. When restarting a sequence, no need to reload..
2ae3ff3cb 2018-09-24 Jasem Mutlaq Fix jobs always starting at zero counts by dividing jobs checks into scheduler-aware and regular types along with the option to ignore job progress ..
1895fe59f 2018-09-24 Jasem Mutlaq Remove extra signal that was causing issues since it was already declared in guiderinterface
c4acb9c8d 2018-09-23 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars
25958fa4f 2018-09-23 Eric Dejouhanet Remove prevention of autofocus when no prior focus was done, add warnings.
82b5ba276 2018-09-23 Robert Lancaster Fix exposure spinbox and MacOS compile problem
cfe494a8c 2018-09-16 Jasem Mutlaq Removing duplicated enum
f007c9e69 2018-09-16 Jasem Mutlaq Fix wrong enum value
f928a5d92 2018-09-16 Jasem Mutlaq STATUS_PENDING is reserved in Windows so we are using different enum values
62c885a73 2018-09-15 Jasem Mutlaq Preliminary support for flatpak paths
b88bfe91d 2018-09-14 Jasem Mutlaq Scheduler event-driven work is nearly completely
37483f059 2018-09-13 Jasem Mutlaq Create ready signal to continue event-driven migration of scheduler
0602776d3 2018-09-13 Jasem Mutlaq More process in dbus migration. dbusInterface->property() is not working now. Need to investigate
a7d692958 2018-09-13 Jasem Mutlaq Fix DST rule for Terre Haute
5e8fe0d4b 2018-09-12 Jasem Mutlaq Dome, mount and dustcap DBus interface updated
8653d9c0a 2018-09-12 Jasem Mutlaq Fix compile issues
042e91922 2018-09-12 Jasem Mutlaq Merge branch 'dbus_work' of git://anongit.kde.org/kstars into dbus_work
830e749d5 2018-09-12 Jasem Mutlaq More work on DBus update and migration
6049fdae0 2018-09-12 Jasem Mutlaq Merge branch 'master' into dbus_work
7d1295998 2018-09-12 Jasem Mutlaq Improve timeout behavior for astrometry download with KAuth
f2560079d 2018-09-12 Jasem Mutlaq QString sprintf is deprecated so using arg() instead, but it still does not produce correct locale-aware fractions
fe3782719 2018-09-11 Eric Dejouhanet Fix cache discrepancy when a job is complete.
a9cd4c67e 2018-09-11 Eric Dejouhanet Fix mount not unparking after scheduler stops
daaddeb30 2018-09-11 Jasem Mutlaq More work on converting Signal/Slot to new Qt Style
f4f940677 2018-09-10 Jasem Mutlaq Migrate to new Qt connection style
10c893568 2018-09-10 Jasem Mutlaq Migrate to new Qt connection style
a4d380764 2018-09-10 Jasem Mutlaq Align and Guide modules DBus is updated
17f917917 2018-09-07 Wolfgang Reissenberger Restarting looping schedule continues capturing
edb8bb0ae 2018-09-07 Jasem Mutlaq Fix remaining warnings in fpackutil.c
1b7c748ab 2018-09-06 Jasem Mutlaq Fix warnings in fitsviewer code in fpack and fpackutil due to const qualifier and unused variables
708d796df 2018-09-06 Jasem Mutlaq Fix warning: content-type missing in HTTP POST, defaulting to application/x-www-form-urlencoded. Use QNetworkRequest::setHeader() to fix this problem.
d086573e0 2018-09-06 Jasem Mutlaq Update focus module DBus interface
e0d63f01c 2018-09-04 Csaba Kertesz Fix a crash and storing INDI settings in KStars Lite
e057aa064 2018-09-03 Jasem Mutlaq Few J2000/JNow fixes
d625b2b6c 2018-09-02 Jasem Mutlaq Minor refactoring
7d6d6d386 2018-09-02 Jasem Mutlaq Capture module DBus migration first pass is complete. All connections migrated to new Qt style
4e8b61f53 2018-09-01 Robert Lancaster Adding XPlanet Recenter ability Making left mouse button change position and right mouse chane location Adding Reset Recenter button Adding Reset Lo..
f055309dd 2018-09-01 Jasem Mutlaq Remove / from thumbnail file names
38edb83ea 2018-09-01 Jasem Mutlaq Reimplement compute altitude at a specific time
b03bbbb39 2018-08-31 Jasem Mutlaq Do not add any camera or ST4 devices to guide module if guider is external. Instead put guider type in guider dropdown and disable it
eee184547 2018-08-31 Jasem Mutlaq Fix crash and add support to J2000 mounts
36476b0a7 2018-08-31 Jasem Mutlaq Add another check that state is not suspended
8afa2bc4f 2018-08-31 Jasem Mutlaq Show loaded coords in sexigesimal format and in high precision when possible
e6eca7cf2 2018-08-31 Jasem Mutlaq Do not cast DSO coords seconds to int as we lose important precision. Use full resolution as double
8fd3d9e10 2018-08-31 Jasem Mutlaq Fix J2000 coordinates in Align and Capture
f3705f1c9 2018-08-31 Robert Lancaster Support for xplanet on Windows
ca5a604f9 2018-08-31 Jasem Mutlaq Add new state to capture SUSPENDED. This is triggered once the sequence needs to be aborted, but capture module has the ability to resume itself aut..
0a5d10188 2018-08-29 Jasem Mutlaq android --> packaging/android
5c24fac29 2018-08-29 Jasem Mutlaq Add dbus log property and signal for Ekos Manager
5825ccb6c 2018-08-29 Eric Dejouhanet Proper silencing for the switch-case fall-through warning
be3948ed5 2018-08-29 Jasem Mutlaq Refactoring old style connect to new style. DBus signals working now via structure which is not ideal but the only way to use enums in signals and r..
aeaa325a0 2018-08-29 l10n daemon script SVN_SILENT made messages (.desktop file) - always resolve ours
8a1bd75ba 2018-08-28 Jasem Mutlaq Adding packaging directory to include all KStars multiplatform packaging scripts and resources
8491cc25b 2018-08-28 Jasem Mutlaq Detect coordinates epoch once from property registeration
6798c1d0c 2018-08-28 Jasem Mutlaq Account for JNow vs J2000 coords in the mount and capture modules. Telescope class should report which epoch is in use
1e299fdf5 2018-08-28 Eric Dejouhanet Fix parking engine, and make observatory startup job-centric
85bf46276 2018-08-28 Wolfgang Reissenberger Bugfix for #397650 flat creation failed
9294e4f03 2018-08-27 Jasem Mutlaq DBus signals are working now
12278209f 2018-08-26 Jasem Mutlaq More progress in refactoring
30c99f686 2018-08-26 Jasem Mutlaq Refactoring EkosManager to Ekos::Manager and updating DBus structure for all modules
9de71fb7b 2018-08-26 Jasem Mutlaq Reset properties when filter is disconnected
6d1297e8f 2018-08-25 Yuri Chornoivan Fix minor EBN issues
00c6861b9 2018-08-25 Robert Lancaster Summary: Using specified FOV's for each planet so the user can zoom. Adding a button to select FOV from the KStars FOV list. Adding another decimal ..
a6510ac67 2018-08-23 Robert Lancaster Making more recommended xplanet changes and fixing bugs:
0fa94d809 2018-08-23 Eric Dejouhanet Improve Scheduler robustness against INDI disconnections
e3bec03e2 2018-08-22 Jasem Mutlaq Use apparentCoord to immediately process the J2000 coordinates to JNow
87be05656 2018-08-21 Jasem Mutlaq Q_FALLTHROUGH() requires Qt 5.8 while we support 5.4 still so disabling
d695b9ef6 2018-08-21 Csaba Kertesz Fix the Android build
19ec89274 2018-08-21 Csaba Kertesz Add missing icons by automerge
99d5b93fe 2018-08-21 Csaba Kertesz Fix some item colors in KStars Lite
a11fd36b0 2018-08-21 Jasem Mutlaq Add telescope joystick controls to KStars Lite
e47d07dea 2018-08-20 Eric Dejouhanet Proper silencing for the switch-case fall-through warning
0b33b9aea 2018-08-20 Jasem Mutlaq Use more sane default when hitting enter key in Ekos modules.
279e64a11 2018-08-20 Yuri Chornoivan Fix minor EBN issues
b9eb26e4d 2018-08-18 Jasem Mutlaq Add warnings for missing properties
5bb40f285 2018-08-18 Jasem Mutlaq Explicitly set timespec to UTC
6256a1993 2018-08-18 Jasem Mutlaq FIx on 16.04 build
80c7784ec 2018-08-18 Robert Lancaster Adding XPlanet Viewer
5823021b2 2018-08-18 Jasem Mutlaq KStars GIT is now 3.0.0
02e875e9e 2018-08-17 Jasem Mutlaq Increase maximum dark library temperature thresold to 30
afcfeb55c 2018-08-17 Jasem Mutlaq Astrometry WCS should be enabled by default
a4698d9e4 2018-08-16 Jasem Mutlaq Comment C++17 feature
4192037d2 2018-08-16 Jasem Mutlaq Use IAU preferred names. While Tsih seems the most common name for Gamma Cassiopeiae, Navi is also associated from old space missions.
996935f9f 2018-08-16 Eric Dejouhanet Fix sequence boundary index regression.
e416273aa 2018-08-16 Eric Dejouhanet Fix unexpected signature folder creation, fix logs.
2.9.8 (Pelican):
=================================================================================================
eb4aa89dc 2018-08-13 Jasem Mutlaq Fix upper limits for some guide settings
b7e3810b1 2018-08-13 Eric Dejouhanet Fixes for the Scheduler and Capture modules
27ae34f2b 2018-08-12 Jasem Mutlaq Bit of code refactoring. Keep track of axis distance when reversing guide calibration direction. If we are still not moving toward the starting poin..
e8cb5f3a9 2018-08-12 Jasem Mutlaq Revert "Remove prefix from test to be the same for all"
c2fef9880 2018-08-12 Jasem Mutlaq Remove prefix from test to be the same for all
6dfb66d01 2018-08-11 Jasem Mutlaq Fix J2000 in sendCoords
054fb21cd 2018-08-11 Jasem Mutlaq Handle EQUATORIAL_COORD when the property is updated
2587c4f6f 2018-08-11 Jasem Mutlaq Draw J2000 coords
d1cb70fbe 2018-08-11 Jasem Mutlaq ALso accept EQUATORIAL_COORD for telescope coordinates
b455bd581 2018-08-10 Yuri Chornoivan Fix minor EBN issues
9816f3521 2018-08-10 Jasem Mutlaq In guiding deviation handler, search for aborted jobs and resume one since activeJob is always nullptr when abort is now called
cb856ddf5 2018-08-09 Yuri Chornoivan Fix minor typo
9cd9341e0 2018-08-09 Jasem Mutlaq Reset RMS value when reacquiring a star
0d65fa060 2018-08-08 Jasem Mutlaq Add complex job test
23ec2283e 2018-08-08 Jasem Mutlaq Fix message using the wrong variable
ac502664b 2018-08-08 Jasem Mutlaq Add helpful tooltip for guide settle
e1a3f1369 2018-08-07 Eric Dejouhanet Add RA/DEC fields to the list of controls which trigger a save.
da7c8a6bc 2018-08-07 Csaba Kertesz Fix the custom sky object removal
9c7bebf84 2018-08-07 Jasem Mutlaq Fix typo
7f915094e 2018-08-07 Jasem Mutlaq Check if telescope is connected before accepting sync
6da8bb68e 2018-08-07 Jasem Mutlaq Add Copy Coordinates action to the popup menu
1d45a9c07 2018-08-07 Eric Dejouhanet Edit scheduler jobs with double-click and update icon to match Capture module.
610a79ed9 2018-08-06 Jasem Mutlaq Fix typo
068ef057a 2018-08-05 Csaba Kertesz Fix for touch support to avoid closing popups in the skymap
a5e515663 2018-08-05 Jasem Mutlaq IDLE --> ABORTED so that scheduler acknowleged that. Disabling GuideStep --> Guiding transition since we have a case now where the transition is inc..
617703f09 2018-08-05 Jasem Mutlaq Update INSTALL file to reflect current state of affairs
07a0d3eb3 2018-08-05 Jasem Mutlaq Looksl like we will release 2.9.8 hotfix first before moving to 3.0.0
5b7990ead 2018-08-05 Csaba Kertesz Increase the font size in KStars Lite
1fa13a932 2018-08-05 Jasem Mutlaq Using Delta Max RMS as the threshold value to abort instead of just pulse length since it is a more reliable measure of guiding performance and also..
bb27336ca 2018-08-05 Jasem Mutlaq Always process images in Guide, Focus, and Align as Mono images
45777dfd4 2018-08-04 Andy Galasso The PHD2 external guider was not honoring the Lost Star timeout setting, it was using a hard-coded value of 5 seconds which is much too aggressive.
a6b9780d2 2018-08-04 Yuri Chornoivan Fix some EBN issues
0abaa846a 2018-08-04 Wolfgang Reissenberger Summary: Logging output in Capture corrected, considering only the counts of a single sequence job
46523bed3 2018-08-04 Eric Dejouhanet Rework scheduler startup to merge execution paths.
3e5f9f055 2018-08-04 Eric Dejouhanet Update frame map unconditionally when starting scheduler.
c774401a8 2018-08-04 Eric Dejouhanet Mark scheduler job dirty when succesfully changing its target.
bf4ac1e6a 2018-07-21 Csaba Kertesz Use localization for KStars Lite
5cec05783 2018-07-17 Csaba Kertesz Further fixes for the Android build
f83aed485 2018-08-03 Eric Dejouhanet Adjust job editing algorithm
723c1bcf9 2018-08-03 Jasem Mutlaq Fix focus timer in capture module. Add more comments to explain some of the complex counting
3bfa544de 2018-08-02 Jasem Mutlaq After meridian flip, clear calibration is required and then guide
c4dd86424 2018-08-02 Aleix Pol Add the file to integrate with phabricator
3ba2c1a27 2018-08-01 Jasem Mutlaq Add GUIDE_IDLE to accepted previous state before restarting capture
f3982dbf5 2018-08-01 Jasem Mutlaq When PHD2 reports idle after calibration error, keep the error so that it is picked up by other processes until DBus signals are implemented
424f4b03d 2018-08-01 Jasem Mutlaq Fix slots connections. Remove prior hack used to identify aborted guide state
499669f86 2018-08-01 Jasem Mutlaq Limit reading for drivers XML files to those starting with indi_*
25630e41c 2018-07-31 Pino Toscano cmake: fix enabling of exceptions
7676c91eb 2018-07-31 Jasem Mutlaq Add warning if the guide camera is the same as the capture capture
8e1034e54 2018-07-31 Jasem Mutlaq Adapt INDI control panel to high DPI screens
0132cd73c 2018-07-31 Jasem Mutlaq Simplify scheduler calls to Guide module by remote the startAutoCalibrate and calling individual commands to have more control
ac36a20c1 2018-07-30 Jasem Mutlaq Reset align and guide fail counts when finding next job. Add GUIDE_IDLE as a fail condition since PHD2 resets to IDLE after it fails calibration
d42df697c 2018-07-30 Jasem Mutlaq When user edit FOV and reset it to 0x0, remove the effective FOV if one is saved so that the alignment process re-measures it again
895cf1480 2018-07-30 Jasem Mutlaq Remove cross cursor it was added before by mistake somehow
26cd35278 2018-07-30 Jasem Mutlaq Add StartupWMClass for better compatibility in other desktop environments
6654b2fd2 2018-07-29 Jasem Mutlaq Show tip of the day dialog after applying themes.
9be2169dc 2018-07-29 Andy Galasso PHD2: honor the "Receive external guide frames" setting. Also, only log event messages from PHD2 when verbose logging is enabled PHD2: only request ..
0e259fb08 2018-07-28 Pino Toscano i18n fixes
cde98d293 2018-07-26 Jasem Mutlaq Fix crash due to NaN asteroid magnitude. Also enforce show limit as per the options.
fc5b8e237 2018-07-26 Eric Dejouhanet Fix FINISH_AT management in Scheduler.
40578b139 2018-07-25 Jasem Mutlaq FIx another center issue with older Qt
e5656839e 2018-07-25 Jasem Mutlaq QPointF.center requires Qt 5.8 so we are going for the simpler version to make this compile on 16.04
fadd47d9b 2018-07-25 Wolfgang Reissenberger Handling multiple occurrence of the same sequence job corrected
4f100e322 2018-07-25 Robert Lancaster Improving the Astrometry Index File configuration tab to include a button to open files and a link to the Readme
0176721b0 2018-07-25 Jasem Mutlaq Add green cloud to indicate EkosLive is online
2.9.7 (Luna):
=================================================================================================
fadd47d 2018-07-25 Wolfgang Reissenberger Handling multiple occurrence of the same sequence job corrected
4f100e3 2018-07-25 Robert Lancaster Improving the Astrometry Index File configuration tab to include a button to open files and a link to the Readme
0176721 2018-07-25 Jasem Mutlaq Add green cloud to indicate EkosLive is online
c3c9543 2018-07-24 Jasem Mutlaq Improve tracking box pixmap by giving it a margin. Guiding profile needs to be grapped fully as is
8d746c6 2018-07-24 Robert Lancaster I finally got around to looking at these two issues. First, the Astrometry Startup wizard has been rather redundant since I integrated all the astr..
c3156de 2018-07-24 Jasem Mutlaq Update OpenNGC to latest snapshot
72a13e3 2018-07-24 Jasem Mutlaq Support for remote drivers, both locally and using INDI Web Manager are complete. These changes require INDI Web Manager v0.1.5
46cb903 2018-07-24 Jasem Mutlaq Add control to change video stream exposure duration from the video widget
2e33c32 2018-07-24 Jasem Mutlaq Remote drivers are now supported locally and also remote via INDI Web Manager in addition to custom driver support
0bf5c25 2018-07-24 Jasem Mutlaq Add support for remote drivers
619f446 2018-07-24 Jasem Mutlaq Use new versioning system that is more reliable than relying on KStars version solely. Remove very old database upgrade paths.
c67f9e8 2018-07-23 Jasem Mutlaq Accomodate new web manager API
4e13404 2018-07-23 Jasem Mutlaq Syncing remote drivers in current profile with remote INDI web manager
25f4a55 2018-07-23 Jasem Mutlaq Custom drivers now work locally with Ekos
d6ef5b1 2018-07-23 Jasem Mutlaq Bump GUI version to 7
23e6454 2018-07-22 Jasem Mutlaq A bit of refactor and GUI rework plus database functionality for Custom Drivers instead of just aliases
7ba647c 2018-07-22 Jasem Mutlaq Use more common-sense variable names
2b2e3a8 2018-07-22 Jasem Mutlaq Update XML from upstream 3rd party
e3d2c1f 2018-07-22 Jasem Mutlaq Add detector to aux list as well
0ce2169 2018-07-22 Jasem Mutlaq Add spectrograph family type
7804e61 2018-07-22 Jasem Mutlaq calculating cumulative frequency corrected
34ff784 2018-07-21 Jasem Mutlaq Add support to manual dither either by magnitude or X,Y coordinates. Please note that if the target X,Y coordinates are far away from current reticl..
17ec2a5 2018-07-21 Jasem Mutlaq Use settings universally
a781a00 2018-07-21 Jasem Mutlaq Do not assume Filter_# convention
f17be1d 2018-07-20 Jasem Mutlaq Initial work for driver aliases
e31207e 2018-07-20 Jasem Mutlaq Add auto park feature with a timer
4ba60e3 2018-07-20 Jasem Mutlaq Do not delete temporary file even with autoremove set to true if we are loading the same filename
bc6a45c 2018-07-20 Jasem Mutlaq Use correct header
c5ef911 2018-07-20 Jasem Mutlaq Add option to restart alignment process in scheduler in case of guiding calibration failure since the target might have moved off center during the ..
6d2257b 2018-07-20 Jasem Mutlaq Add more check when saving PHD2 FITS image
cc3a339 2018-07-19 Jasem Mutlaq Add warning if reset guide calibration is enabled while using PHD2
0e5361a 2018-07-19 Jasem Mutlaq Limit minimum box radius to 100 pixels
41104d9 2018-07-17 Aleix Pol Android: Fix small build issues
65735ca 2018-07-18 Jasem Mutlaq Only queue focus-related tasks when the focuser is online
ec7fd81 2018-07-17 Jasem Mutlaq Send PAH message as plain text
5db8b39 2018-07-17 Jasem Mutlaq Return calculated values as required from astrometry option even if the effective FOV has not been measured yet. Make binning by default to be the m..
28c4b13 2018-07-16 Jasem Mutlaq Implement smart auto zoom for PAH when using EkosLive
a89e11d 2018-07-16 Jasem Mutlaq Add guiding settle time to capture module
21bbdc0 2018-07-16 Jasem Mutlaq Send center coords to EkosLive
ed93aa1 2018-07-14 Jasem Mutlaq Use dedicated timer instead of single shot so that we can stop the timer when captureAndSolve is invoked again. Added more helpful PAH info
fd2c5ee 2018-07-14 Jasem Mutlaq Send polar error along with correction vector to EkosLive
b620243 2018-07-14 Jasem Mutlaq Temporarily disable tracking box in focus view to prevent it from searching stars within the tracking box when no user star selection has been made
bd59f16 2018-07-14 Jasem Mutlaq Disable check for internet due to QTBUG-68613
92f4f0e 2018-07-13 Csaba Kertesz Add About dialog to KStars Lite
a15b374 2018-07-13 Csaba Kertesz Fix the Android build
82605a3 2018-07-12 Csaba Kertesz Bug fix: Mark the session list items on the skymap
1e25ee5 2018-07-12 Jasem Mutlaq Reduce PAH frame quality to increase speed during refresh. Only send magnitude and position angle of vector
ce24278 2018-07-11 Jasem Mutlaq Set state to abort or idle depending on the call. Resume capture if it was aborted before due to guide getting aborted.
9b46a9d 2018-07-11 Jasem Mutlaq Do not set slew rate if it the rate is the same
8bf9a1c 2018-07-09 Jasem Mutlaq Send correction vector to EKos like separately
df18faa 2018-07-09 Jasem Mutlaq Fix reading of RA (in degrees)
c92979a 2018-07-07 Jasem Mutlaq Consolidate setting and getting Ekos Live settings
a852d0c 2018-07-06 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars
77d3c0c 2018-07-06 Jasem Mutlaq Sync capture settings back to EkosLive
1d204a5 2018-07-06 Jasem Mutlaq Add more debug for PAA and calculate Position Angle
aee228f 2018-07-05 Csaba Kertesz Add touch support to KStars (pinch, tap-and-hold)
967c3d5 2018-07-03 Csaba Kertesz Optimize Android package size
5c7c268 2018-07-01 Jasem Mutlaq Drop the experimental bit for HiPS, it is stable
9ad3650 2018-07-01 Jasem Mutlaq Fix header info
be64083 2018-07-01 Jasem Mutlaq Use QVariant for FITS header values since they carry different types. Still needs more work
1180b2d 2018-07-01 Jasem Mutlaq Add more informative log for PAH process
a9835eb 2018-06-27 Csaba Kertesz Remove custom sky objects via context menu
1dbcb0c 2018-06-30 Jasem Mutlaq Disable telescope wizard since it can be confusing to new users and is now redundant with Ekos
77cd6a0 2018-06-28 Jasem Mutlaq Display compressed file in FITSVIewer
8ed1026 2018-06-27 Jasem Mutlaq Add content-disposition to header to that the correct file name is downloaded when the URL is requested
1075348 2018-06-27 Jasem Mutlaq Include another missing header..
7daa3cc 2018-06-26 Jasem Mutlaq Be consistent in naming KStars startup wizard.
702e068 2018-06-26 Jasem Mutlaq Include required header
dae9014 2018-06-23 Csaba Kertesz Update the Android build to the latest NDK version and official tools, remove hacks
6e4d0c9 2018-06-25 Jasem Mutlaq Fix random dithering not being not so random, plus limit it to 25 pixels box
8aa7ca2 2018-06-25 Jasem Mutlaq No need to prefix the x-amz since we'll just save the metadata to DB and not cloud
2646052 2018-06-25 Jasem Mutlaq Fix gain issue not showing up
337670b 2018-06-24 Jasem Mutlaq Include fpack and punpack directly since we need to specify the output filename as well calling a binary cross-platform can be problematic. Each upl..
d5befeb 2018-06-22 Jasem Mutlaq Fix broken simbad link to simbad.cfa.harvard.edu
d6e9cb4 2018-06-22 Jasem Mutlaq Only stop sending pulses in case we are guiding (not dithering) and we already sent one high pulse beforehand. This is to allow for dithering large ..
47291ec 2018-06-21 Jasem Mutlaq Cloud storage is now operational
9da31f3 2018-06-21 Eric Dejouhanet Keeping time since previous periodic refocus
92b9c3c 2018-06-21 Jasem Mutlaq Add cloud part and consolidate options
92d91f3 2018-06-19 Csaba Kertesz Separate build targets for KStars and KStars Lite
ec145c7 2018-06-21 Jasem Mutlaq Refactoring Ekos Live into its own namespace
2661f5f 2018-06-21 Jasem Mutlaq Add isTempFIle()
a242977 2018-06-20 Jasem Mutlaq Add const qualifier
5da27f4 2018-06-20 Jasem Mutlaq Enable cloud storage
5de94b9 2018-06-20 Jasem Mutlaq Set it to use Live
a2682ee 2018-06-19 Jasem Mutlaq Fix set blobs and send query params on media connection
30a1546 2018-06-19 Jasem Mutlaq Implement set blobs
09023b2 2018-06-18 Jasem Mutlaq Merge branch 'ekoslive'
ce614aa 2018-06-18 Jasem Mutlaq Merge branch 'ekoslive'
54d4830 2018-06-18 Jasem Mutlaq Use Qt5 Keychain instead of KWallet since it works cross-platform better
d108408 2018-06-17 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars into ekoslive
ed37a2f 2018-06-17 Jasem Mutlaq Set rotation regardless of job status
09a60a5 2018-06-17 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars into ekoslive
88e11b5 2018-06-17 Jasem Mutlaq Set temperature regardless of status
70fc5c2 2018-06-17 Jasem Mutlaq Sync with master
00cb600 2018-06-17 Jasem Mutlaq Job should be BUSY even in the preperation phase before capture where it is setting filter or rotation or temperature..etc. This should enable the u..
a9448ae 2018-06-16 Jasem Mutlaq Fix copy-paste error
eae818d 2018-06-16 Jasem Mutlaq Send additional metadata and implement focus reset
a4e4b0a 2018-06-16 Jasem Mutlaq Send inital status on set
c394475 2018-06-15 Jasem Mutlaq Delay frame capture until pulse duration is almost over
e05f896 2018-06-14 Jasem Mutlaq Increase high pulse margin to .95 and add debug in case of lost star
c71b674 2018-06-14 Jasem Mutlaq Add support to notification option
f27b79e 2018-06-14 Jasem Mutlaq Fix typo
296bd3e 2018-06-14 Jasem Mutlaq Need to move them to slots
59d493c 2018-06-14 Jasem Mutlaq Support auto reconnect on server termination
a18d673 2018-06-14 Jasem Mutlaq Merge branch 'ekoslive' of git://anongit.kde.org/kstars into ekoslive
6b22b11 2018-06-14 Jasem Mutlaq Syncing with master
84bb988 2018-06-12 Csaba Kertesz Fix cppcheck findings
a6be7db 2018-06-13 Jasem Mutlaq If star is lost during dithering, resume dither after reaquiring the star
384ce52 2018-06-12 Csaba Kertesz Compilation fixes
d058ae1 2018-06-08 Csaba Kertesz Krazy fixes
c018f4d 2018-06-11 Jasem Mutlaq Testing dev site
ba9217e 2018-06-11 Jasem Mutlaq Support bandwidth and transfer settings
2dd77ab 2018-06-11 Eric Dejouhanet Keep job removal icon disabled when Scheduler stops
418478a 2018-06-10 Jasem Mutlaq Sequences working now with Ekos Live
dfceb97 2018-06-10 Jasem Mutlaq Add missing satellite icons
a3ad2a2 2018-06-09 Jasem Mutlaq isoIndex --> iso
23beeeb 2018-06-07 Jasem Mutlaq Use the same setCapture settings structure
14e2d09 2018-06-07 Jasem Mutlaq Emit state also when idle. Send mounts and scopes on detecting TELESCOPE_PARK as well
e578061 2018-06-07 Eric Dejouhanet Preparing for homogeneity with capture tab.
8b0db9f 2018-06-07 Eric Dejouhanet Fix scheduling issue picking unexpected job as first
4e6a0d4 2018-06-07 Jasem Mutlaq Merge branch 'ekoslive' of git://anongit.kde.org/kstars into ekoslive
336b886 2018-06-07 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars into ekoslive
b3c1b0d 2018-06-06 Jasem Mutlaq The workflow is now more event driven
f9202a9 2018-06-06 Jasem Mutlaq More progress for connection and profile work
beb522e 2018-06-06 Jasem Mutlaq Enable high dpi scaling for Qt > 5.6
e41e1fc 2018-06-06 Jasem Mutlaq Merge branch 'ekoslive' of git://anongit.kde.org/kstars into ekoslive
59d5a8f 2018-06-06 Jasem Mutlaq Master merge
dbb9419 2018-06-06 Jasem Mutlaq Initial support for profile control
85560b1 2018-06-05 Csaba Kertesz Fix Coverity findings
aa8b38b 2018-06-05 Jasem Mutlaq Merge branch 'ekoslive' of git://anongit.kde.org/kstars into ekoslive
40fb703 2018-06-05 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars into ekoslive
c2c83d6 2018-06-04 Jasem Mutlaq Removing some HTML tags. PAH now ready to be used with Ekos Live
5421483 2018-06-04 Jasem Mutlaq Save pixmap and image in QBuffer instead of saving to disk. Pixmap contains all overlay elements. This should be used for other cases where we save ..
d893c34 2018-06-04 Csaba Kertesz Clazy fixes
069331c 2018-06-04 Jasem Mutlaq Merge branch 'ekoslive' of git://anongit.kde.org/kstars into ekoslive
429e91e 2018-06-04 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars into ekoslive
6569077 2018-06-03 Csaba Kertesz Modernize for cycles
3e77d59 2018-06-03 Jasem Mutlaq Ensure ekos is connected first
8900e81 2018-06-03 Jasem Mutlaq Support PAH changes in Ekos Live
d4ecff1 2018-06-03 Jasem Mutlaq Simplify PAH tool
48e8cc7 2018-05-31 Csaba Kertesz Remove redundant returns
0c757d3 2018-06-02 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars into ekoslive
ebf5020 2018-06-02 Csaba Kertesz Fix the Windows build
1904421 2018-06-02 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars into ekoslive
f689ccb 2018-06-02 Jasem Mutlaq Use UUID to create the filename for FITS WCS
e12d536 2018-06-02 Jasem Mutlaq Some initial work for PAH support in Ekos Live
9096a0a 2018-06-01 Jasem Mutlaq Code refactoring. Support load n slew from Ekos Live
f5ba3be 2018-06-01 Jasem Mutlaq Do not send token with EACH request since we have a stateful connection. Just send token on the initial connection.
90103ba 2018-05-31 Eric Dejouhanet Reduced the amount of logs in the Scheduler.
82b5710 2018-05-31 Jasem Mutlaq Support a dedicated channel for media
3915c2d 2018-05-31 Jasem Mutlaq Return solutoin results and set capture settings in align module
e7ecc3f 2018-05-31 Jasem Mutlaq Merge branch 'ekoslive' of git://anongit.kde.org/kstars into ekoslive
9892df2 2018-05-30 Jasem Mutlaq Progress on alignment
3c1236e 2018-05-30 Jasem Mutlaq Merge branch 'ekoslive' of git://anongit.kde.org/kstars into ekoslive
60a0423 2018-05-30 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars into ekoslive
616a6bf 2018-05-29 Jasem Mutlaq Add minimum 5 points to help text to avoid confusion
f36eae1 2018-05-26 Csaba Kertesz Change the num singleton name in KStars Lite to uppercase otherwise new Qt versions crash
f58b2e6 2018-05-29 Jasem Mutlaq Add metadata to regular captures
bd3800e 2018-05-29 Jasem Mutlaq size --> samplesPerChannel refactor
789d590 2018-05-29 Jasem Mutlaq size --> samplesPerChannel refactor
c8916d3 2018-05-29 Jasem Mutlaq Use const where appropiate. Parse FITS header and provide methods to retrive and search it
7624bf3 2018-05-28 Jasem Mutlaq Implement guiding and send video frames separately
9320faf 2018-05-28 Jasem Mutlaq Merge branch 'master' of git://anongit.kde.org/kstars
5a4a5ea 2018-05-28 Robert Lancaster This patch fixes a couple of icons issues that popped up after we did the themes work. These were not correct and it could not find the icons prope..
b4916eb 2018-05-28 Jasem Mutlaq Add supprt for focus actions
7f07def 2018-05-28 Jasem Mutlaq Ekos live mount control are almost complete now.
6c02df0 2018-05-28 Eric Dejouhanet Fix execution of repeating scheduler jobs.
ebd508e 2018-05-28 Jasem Mutlaq Support tracking control and slew rate
2456da5 2018-05-27 Jasem Mutlaq Merge with master changes
4563499 2018-05-26 Jasem Mutlaq Support for abort and slew rates
6661957 2018-05-26 Csaba Kertesz Compilation fixes
5ac761a 2018-05-25 Csaba Kertesz Use default keyword for ctors/dtors and other fixes
368a0d9 2018-05-25 Yuri Chornoivan Add missing words
7d4975c 2018-05-25 Yuri Chornoivan Make compile + some updates
42afb30 2018-05-25 Yuri Chornoivan Fix minor typos
04b980e 2018-05-25 Yuri Chornoivan Fix minor typos
c7ae428 2018-05-25 Jasem Mutlaq Include the hips entity in commands
2.9.6 (Lalande):
=================================================================================================
3434dd0 2018-05-24 Jasem Mutlaq Add HiPS documentation
93e9dba 2018-05-24 Jasem Mutlaq Bump to 2.9.6
02e9508 2018-05-24 Robert Lancaster Fix OSX Build
4e4ea8a 2018-05-23 Robert Lancaster Fix option dialog on MacoS. BUGS:394138
8c880dc 2018-05-22 Pino Toscano Make Xplanet an optional runtime-only dependency
12f8e20 2018-05-21 Jasem Mutlaq Sync driver list with INDI. BUGS:394522 FIXED-IN:2.9.6
d9a526f 2018-05-21 Csaba Kertesz Use modern headers
e63bed3 2018-05-17 Csaba Kertesz Update Clang Tidy script to Clang 6.0 and fix some findings
503b140 2018-05-16 Csaba Kertesz Fix the Clang Static Analyzer findings
9c9c1fb 2018-05-14 Csaba Kertesz Compilation fixes
f8df59f 2018-05-14 Csaba Kertesz Update the Clang Static Analyser script to Clang 6.0
419bef1 2018-05-18 Eric Dejouhanet Fix side-effect causing distant jobs to abort.
69f2f99 2018-05-16 Eric Dejouhanet Fix regression with completed jobs being rescheduled erroneously.
ac40791 2018-05-14 Jasem Mutlaq Use a more common-sense GUI for telescopes
65afc9d 2018-05-14 Jasem Mutlaq Abort guiding if mount is slewing or parking
bb97b1d 2018-05-14 Jasem Mutlaq No need to forward declare KStarsDateTime here
0ecc72c 2018-05-09 Eric Dejouhanet Summary of development branch 'schedule of asap jobs'
d1e97c3 2018-05-08 Jasem Mutlaq Block signals instead of disconnect for CCD transfer format
5d4a4f9 2018-05-07 Jasem Mutlaq When establishing a profile on the remote INDI web manager while we have both CCD and Guider of type multiple-device-per-driver, then we only start ..
aa0bba3 2018-05-07 Jasem Mutlaq Remember CCD capture format and FITS directory
6e84f80 2018-05-06 Jasem Mutlaq Fix centering and tracking of empty sky
f708322 2018-05-06 Jasem Mutlaq Add method to clear all DSLR info
8771ace 2018-05-05 Jasem Mutlaq Make the Ekos modules fully expand except for regular GUI controls as suggested by Jim on INDI forums
6b0267e 2018-05-05 Jasem Mutlaq Fix issue with deleting record from database since ID was missing in the map. On invalid FOV, color the background RED
90dda3e 2018-05-04 Jasem Mutlaq Add J2000 support to mount control panel
629639b 2018-05-03 Jasem Mutlaq Hemispheres should not affect rotation direction in RA
1951ad5 2018-05-01 Jasem Mutlaq Start timer for remote solver as well
8f4ef60 2018-05-01 Jasem Mutlaq Fix filter manager database issues since it was broken and worked on first update only. Now we clone database instead of using existing connection n..
d72f271 2018-04-29 Pino Toscano tests: do not add KStarsUiTests as autotest
7a8c670 2018-04-28 Pino Toscano cmake: demote AstrometryNet as runtime dependency
870147b 2018-04-27 Robert Lancaster This batch should fix a possible bug if DBus looks like it has started on Mac but hasn’t actually started. It also provides more feedback in the ca..
ea68c70 2018-04-26 Eric Dejouhanet Scheduler adjustments and fixes
093e671 2018-04-25 Andreas Sturmlechner Fix build with Qt 5.11 (missing QDoubleValidator)
0111020 2018-04-23 Jasem Mutlaq Fix TZ ambiguity. SetTZ was renamed to SetTZ0 since it sets the TimeZone WITHOUT DST correction. INDI Mount and GPS updates now account for that. Im..
8d80f28 2018-04-22 Jasem Mutlaq Add Eric as one of the active developers
444843f 2018-04-22 Jasem Mutlaq Logs, and reworking job count update and repeated jobs estimation
58503e5 2018-04-21 Jasem Mutlaq Minor cleanup
9b91280 2018-04-21 Jasem Mutlaq Sync GUI if widget is visible already
2.9.5 (Cygni):
=================================================================================================
1b0216a 2018-04-20 Jasem Mutlaq Format and sync INDI drivers XML to INDI 1.7.1 release
0ac707a 2018-04-20 Jasem Mutlaq Use a less confusing question regarding shutters
e754937 2018-04-20 Jasem Mutlaq Add calculated FOV as a hint to users
c9ccf73 2018-04-20 Jasem Mutlaq Sync KStars time after initial splash loading phase since time already elapsed from initial startup time
3af4419 2018-04-20 Jasem Mutlaq Sync last indidrivers.xml
ae3b768 2018-04-20 Jasem Mutlaq Align module FOV shall default to zero on initial startup. Only after first solve is complete it gets filled from the actual plate solution that mig..
d0a380b 2018-04-20 Jasem Mutlaq Handle processing reponse from online solver. Follow the timeout set in options to determine when to call it quit
0daadb4 2018-04-20 Jasem Mutlaq Do not draw invisible FOVs
37c3752 2018-04-20 Jasem Mutlaq If solver was set to remote and current profile does not contain remote astrometry then reset option to online. This was for Windows only before but..
290c02b 2018-04-19 Jasem Mutlaq Use different icon when KStars is paused so it is visually clear to the user. The selected icon is red so it stands out among the rest
f63ef75 2018-04-19 Jasem Mutlaq OSX build fails without include of QApplication
06f5b9d 2018-04-19 Jasem Mutlaq firstAutoFocus is no longer required
ea16be5 2018-04-19 Jasem Mutlaq Only enable gain setting if it is writable
788bc8a 2018-04-19 Jasem Mutlaq Add missing #include <QAction> to compile on Qt 5.5
ab2049c 2018-04-19 Eric Dejouhanet + Added sequence completion column Added a column to the Scheduler list, with light frame currently captured, and required. These are connected to S..
167b977 2018-04-19 Jasem Mutlaq Fix complilation on Qt 5.5
256c02c 2018-04-19 Jasem Mutlaq Add one more connect statement when setting the remote parser to avoid race condition
ea93804 2018-04-18 Jasem Mutlaq Fix namespace conflict with QDataVisualization
8d7db38 2018-04-18 Jasem Mutlaq Clean up class includes
833f41e 2018-04-18 Jasem Mutlaq isFocused should not be in SkyObject
441c12e 2018-04-18 Eric Dejouhanet This change moves the score/altitude/priority comparisons to SchedulerJob, keeping the lessThan QT-style sort predicate implementation, but clarifyi..
1dbf75d 2018-04-18 Jasem Mutlaq Bump to 2.9.5
0ab9b26 2018-04-17 Jasem Mutlaq No need to use lock filter explicitly, use it to whatever currently selected filter
92e631b 2018-04-17 Jasem Mutlaq Initial work for in-sequence median per-filter HFR thresholding
5b40f1f 2018-04-16 Jasem Mutlaq Separate device source into Mount and GPS sources to enable users to select which source they prefer most
151f111 2018-04-16 Jasem Mutlaq Do not set filter absolute focus position if there is no currently selected filter
5440bfe 2018-04-15 Robert Lancaster I realized one thing that will help the issue we were discussing yesterday about files being copied into Application Support. So my current solutio..
3d21a9f 2018-04-14 Jasem Mutlaq Embed indidrivers.xml and QML files and their resources in the application qrc to avoid cross-platform search
a4189c3 2018-04-14 Pino Toscano tests: fix KStarsUiTests
05e0dfc 2018-04-14 Eric Dejouhanet Fix scheduler memory leak D12182
f9cbc8d 2018-04-14 Eric Dejouhanet Limit length of Scheduler log D12183
bbda2f9 2018-04-13 Jasem Mutlaq Use better display for longitude and latitude
8dc8c58 2018-04-13 Jasem Mutlaq Check explicitly for cooler switch name
95314df 2018-04-12 Jasem Mutlaq Bump to 1.7.1 since it contains the indiapi hotfix
2be506a 2018-04-12 Jasem Mutlaq Bump minimum requirement to INDI v1.7.0
ef721ed 2018-04-12 Yuri Chornoivan Fix minor typo
431cc42 2018-04-11 Jasem Mutlaq Make sure async future is finished before closing FITS Tab
766e08d 2018-04-11 Jasem Mutlaq Add option to reset guiding calibration which is true by default for the scheduler
02183d4 2018-04-11 Pino Toscano use KFormat::formatByteSize()
d941819 2018-04-09 Jasem Mutlaq Add Ekos logging support for more device classes
2.9.4 (Emad):
=================================================================================================
d902275 2018-04-08 Jasem Mutlaq Updated set as parking position message. Fixes D12033
4801574 2018-04-05 Jasem Mutlaq FITS improvements are complete and ready for testing.
d77bff3 2018-04-05 Jasem Mutlaq Initial work for parallelization in FITS classes
89ea1e1 2018-04-04 Robert Lancaster Few changes to make KStars compile on MacOS in addition to changes in INDI directory handling
0b936a7 2018-04-03 David Faure Fix compilation with Qt 5.11 - just a missing fwd decl
4621ada 2018-03-31 Csaba Kertesz Get some source files out of sanitizer support
b97bf5b 2018-03-31 Csaba Kertesz Optimize the FITS statistics and histogram calculations
fb134e9 2018-03-30 Jasem Mutlaq Set to first tab
c033e62 2018-03-29 Robert Lancaster Use RCC file to load icons on MacOS
99d6100 2018-03-29 Jasem Mutlaq Forgot to add resource header
d7bc193 2018-03-29 Jasem Mutlaq Load RCC resource on Windows
a4dca10 2018-03-28 Jasem Mutlaq Ignore capture if capture in progress flag is set but display a warning to the log nonetheless
12b2fe2 2018-03-28 Jasem Mutlaq Flat sync focus functionality now works but requires testing
350f173 2018-03-27 Jasem Mutlaq Bump to 2.9.4 and initial work for flat field frame synchronization with absolute focus position of corresponding light frames using the same filter
36b4c30 2018-03-27 Jasem Mutlaq Implement double spin box for PAH exposure and improve PAH refresh performance
51bfe44 2018-03-26 Jasem Mutlaq Add button to clear all logs including autofocus files. Add size format function to KSUtils
2a58471 2018-03-26 Jasem Mutlaq Improve debug statement when starting calibration
8d6b80f 2018-03-26 Jasem Mutlaq Save target CCD in case astrometry driver is not initiliazed yet. Save solver type immediately after changing selection