forked from cumulusmx/CumulusMX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpdates.txt
More file actions
1511 lines (1241 loc) · 66.4 KB
/
Updates.txt
File metadata and controls
1511 lines (1241 loc) · 66.4 KB
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
3.10.2 - b3117
——————————————
- Fix: Improve the AWEKAS fall back for upload interval to go right back to 5 minutes in two stages
- Fix: Occasional corrupt files output that have processed web tags in them
- Fix: Error creating the NOAA Year report for some people
- Fix: Missing station location on gauges.htm web site page
- New: Default website now removes the "Current Conditions" element if the value is blank
- New: Default web site now auto updates the index.htm and today.htm pages every minute
- Change: The current conditions is now HTML encoded in case it contains illegal characters
- Updated default web site files
\web\websitedataT.json
\webfiles\index.htm
\webfiles\gauges.htm
\webfiles\js\setpagedata.js
3.10.1 - b3116
——————————————
- Fix: Bug in temperature conversions introduced in v3.10.0
3.10.0 - b3115
——————————————
- Fix: Catch error creating System Uptime counter on Windows
- Fix: The Local web server is now brought up before initialising the station. This allows you to correct a misconfigured station without resorting to editing the Cumulus.ini file.
- Fix: Diary Editor creating entries on the wrong day, and revamp the interface a bit
- Fix: WLL day average temp stats on historic catch-up
- Fix: GW1000 auto-discovery was triggering an erroneous IP address change
- Fix: Cumulus MX shutdown when running as a system service is now orderly
- Fix: The start-up ping now refreshes the DNS cache before every re-try to avoid using null entries cached before the internet comes up
- New: Brand new default web site template courtesy of Neil Thomas. The original "legacy" web site is still included, but it has been moved to the /webfiles-legacy folder.
- The new web site is now data file driven as opposed to all pages being processed and uploaded. The legacy web site has also been updated to use this method.
- New: The previous Console log file is now copied to an "-old" file on start-up
- New: For Davis WLL stations using weatherlink.com, Cumulus now checks and reports the operational status of weatherlink.com on start-up and if an error occurs accessing the service
- New: Two web tags <#forumurl> and <#webcamurl>, which just return the respective URLs rather than the pre-canned HTML of <#forum> and <#webcam>
- New: The start of a Display Options section under Station, which controls what data is displayed on the default web site, implementing some of the Cumulus 1 options
- New web tags for this: <#Option_useApparent>, <#Option_showSolar>, <#Option_showUV>
- Change: All the settings screens revamped, reorganised and extended.
- Many of the settings are now context sensitive, only showing items relevant to your station and configuration.
- Most of the previously config file "read-only" settings are now available in an Advanced section relevant to the configuration item. These settings are now read/write.
- Many new Cumulus.ini configuration entries, and some now depreciated.
- Virtually all the standard files that can be generated can now be controlled for enabling/disabling generation and FTP transfer independently.
- Added more graph data series controls.
- Change: The two graph config files availabledata.json and graphconfig.json are now only uploaded on program start-up and when the station config is changed.
- Change: Dayfile, Monthly Log, and Extra log file editors now have a selectable page length, and a goto-page feature
- Change: The default web site is now driven by a single data file (plus realtimegauges.txt), rather than every page being updated and uploaded each interval.
- Change: The various charting pages now hide buttons for graphs that do not contain any data - both on the dashboard and default web site.
- Change: Creation of the wxnow.txt file is now disabled by default for new installs
- Change: Clock sync (Davis VP2 & Instromet) now occurs at 2 minutes past the hour selected
- Change: Davis VP/VP2/Vue ReadReceptionStats now defaults to enabled for new installs
- Change: The default output file format is now UTF-8 for new installs
3.9.7 - b3107
—————————————
- Fix: Unhandled exception in ProcessTemplateFile if cumulus cannot write to the output file
- Fix: Davis IP logger prevents Cumulus exiting if no station is found on the network
- Fix: Ecowitt AQ sensors not loading graph data from the log files on start-up
- Fix: Bug in dayfile parser that was using the time of highest wind speed as time of lowest humidity.
- The dayfile parser now outputs the first field number in a line that has failed to parse along with the field contents
- Fix: The GW1000 retains the previous lightning time/distance if the station resets the values to defaults
- Fix: Now opens the Davis WLL multi-cast listening port in shared mode to allow multiple copies of Cumulus to run on the same computer.
Only tested on Windows, may not work on macOS.
- New: Adds a Select-a-Chart to the dashboard for recent data so you can plot different data on the same chart
- New: Adds a Select-a-Chart to the default web site for recent data
- Creates a new json data file - availabledata.json - that is uploaded to the remote site
- New: Adds a hot link to the Upgrade alarm on the dashboard
- New: Adds a start-up host ping escape time. Allows Cumulus to continue loading even if no ping response is received for the specified time
- Change: The default web site gets a CSS change that dynamically alters the "content" width depending on the screen size. On smaller screens the white space either side will reduce in size.
- Change: The graph JSON data files are now always created locally, regardless of the Include Graph Data Files setting. That now setting only controls FTP like the standard files.
3.9.6 - b3101
—————————————
- Fix: NOAA monthly report min temp/rain not formatting in dot decimal correctly
- Fix: Windows console log no longer being created
- Fix: Fix for exit handlers being called before cumulus instance is initialised causing an unhandled exception
- Fix: Airlink auto-discovery/update when you have more than one Airlink device
- Fix: Upgrade & Spike alarm latch hours not being saved/read correctly. You will need to check the values after installing this release.
- Fix: Rework both the interface graphs and default web site graphs JavaScript files
- Fix: SampleStrings.ini changes/fixes. The following entries should not longer be quoted - Davis Forecast strings and CO₂ captions
- Change: Recent graph hours now defaults for new installs to 72 hours instead of 24
- Change: All alarm latch hours now default to 24 hours
3.9.5 - b3100
—————————————
- Fix: Alarms being cleared after their defined latch time even if latching was disabled
- Fix: Adds missing dew point calculation for GW1000 extra T/H sensors 1-8
- Fix: Potential Object reference not set to an instance of an object fault on initial configuration [Goran Devic]
- Fix: Failed connections to some SFTP servers - Renchi.SshNet library reverted to older version
- Fix: Improved accessibility of the "Extra web files" page
- Fix: Tweak to Sunshine hours counter reset logic (primarily for Imet stations during a power cycle)
- Fix: Davis Console battery low threshold changed from 4.0 V to 3.5 V
- Fix: Rework station rain counter reset logic. Cope with Davis station start-up on the first day of new rain season which is not January
- New: More comprehensive support for the Ecowitt WH45 CO₂ sensor...
- Added to Extra Sensors page
- Added to Strings.ini
- Can be selected as the primary AQ sensor
- New web tags:
<#CO2-pm2p5>, <#CO2-pm2p5-24h>, <#CO2-pm10>, <#CO2-pm10-24h>, <#CO2-temp>, <#CO2-hum>
- Added to ExtraLog file, columns for: CO2, CO2Avg, pm2.5, pm2.5Avg, pm10, pm10Avg, Temp, Hum
- New: Improved GW-1000 device auto-discovery, after initial discovery or user input of the IP address it locks onto the MAC address for further changes in IP
If multiple potential devices are found they are now listed and the user must add the appropriate IP into the config and restart Cumulus.
Discovery is now run whenever a Data Stopped condition is detected (and periodically thereafter until the data resumes)
New Cumulus.ini setting:
[GW1000]
MACAddress=
- New: Adds a browser cache time limit of 5 minutes to the Admin interface static files
- New: NOAA reports settings now have an option to force "dot" decimal points, this overrides your locale setting
New Cumulus.ini setting:
[NOAA]
UseDotDecimal=0
- Tweaks the charts for both the admin interface and the default web site
- Rework of Airlink sensor implementation - no functional changes
3.9.4 - b3099
—————————————
- Fix: WMR100 stations generated empty daily graph data files on start-up
- Fix: System uptime web tag for Linux systems - maybe!
- Fix: Historic charts wind run tooltip suffix
- Fix: High Min Temp and Low Max Temp records editors were not displaying and allowing input of the time
- Fix: This Month/This Year records editors were showing records for the entire day file rather than the specific period
- Fix: GW1000 station dewpoint calculation incorrect on first packet read at start-up
- New: Settings page: Program Settings. Moved Debug/Data logging options and Prevent Second Instance to here from Station Settings.
Note: These settings still remain in the [Station] section of the Cumulus.ini file for backwards compatibility
- New: Two settings to delay the start-up of Cumulus MX. Both added to the new Program Settings page.
Start-up Host PING: Specify a remote hostname or IP address, Cumulus will wait for a successful PING from this address before continuing
Start-up Delay: Specify a fixed time in seconds to delay the start-up. The delay will be executed after the PING check is one is specified
Start-up Delay Max Uptime: Specify a maximum system uptime in seconds after which the delay will no longer be applied. Set to zero to always delay
New section in Cumulus.ini:
[Program]
StartupPingHost= // Default is no remote host - enter a host name or IP address
StartupDelaySecs=0 // Default is no delay = 0
StartupDelayMaxUptime=300 // Default is 300 seconds (5 minutes)
- New: FTP Now - Adds a new option to regenerate the daily graph data files (if enabled), and include them in the manually invoked FTP session
- New: Adds support for OpenWeatherMap uploads (and catch-up). Using an existing station if the id is supplied, or your API key only has one station defined.
If no stations are defined CMX automatically creates a new one using your station details and starts uploading to it.
3.9.3 - b3098
—————————————
- Fix: Records check was triggering for very small value changes in derived values such as feels like temps
- Fix: Catch uncaught exception on SFTP disconnect
- Fix: FTP was inconsistent in empty remote server folder handling for real-time and interval files
- Fix: AirLink was not using the local vs WLL API data correctly
- Fix: EU CAQI AQI index calculations (based on the City/Urban scale)
- Fix: US EPA AQI calculation error of values between 51 and 100
- Fix: Removes redundant alldailywdirdata.json file from daily uploads
- Fix: Corrects incorrect/invalid JSON being created in the alldailytempdata.json file when the dayfile contains blank entry's for dew point
- Fix: Attempted FTP uploads of files that do not exist caused the FTP session to become non-functional
- Fix: The monthly data log file editor erroring with 404
- New: You can now use "<airlinklogfile>" in the extra files local filename to copy/upload the latest AirLink data log file
- New: You can now define your Indoor AirLink as the primary AQ sensor. Note this only applies to the admin interface, its data will not be
uploaded to the default web site
- New: Adds Cumulus MX update available alarm to the dashboard - enabled by default. This also has an associated web tag <#UpgradeAlarm>
- New: If enabled, the daily graph data files are now created at start-up and uploaded at first interval FTP.
Previously you had to wait for the first EOD rollover.
- New: If a FineOffset station is not found, MX now dumps a list of all the USB devices it can see to the MXdiags log
3.9.2 - b3097
—————————————
- Fix: Change log messages for number of SQL rows affected to Debug only messages
- Fix: AirLink web tags no longer error if the sensor is not enabled - all now return "--"
- Fix: Australia NEPM AQIs to allow values greater than 101
- Fix: Canada AQHI - still based on PM2.5 3 hour values only
- Fix: Dutch and Belgian AQI calculations
- Fix: Default web site temperature Trends graph yAxis issue
- Fix: Broken logfile, extralogfile, and dayfile editors in b3096
- Fix: Improve Instromet stations error handling of out of sequence responses
- Fix: Extra files without the EOD flag were not being transferred during the EOD upload period (first after rollover)
- Adds Notifications to Alarms
Note: Cumulus notifications only work by default if you run the browser on the same machine as Cumulus and connect using the
url: http://localhost:8998
In order to get them working on a remote machine you will have to change an advanced flag in your browser.
This is at your own risk as advanced flags are unsupported features in Chrome and Edge.
In Chrome or Edge, open the url - "about:flags"
Find the entry "Insecure origins treated as secure" and enable it
The add the url you use to remotely access the Cumulus dashboard - eg. http://192.168.1.23:8998
Then click the button to restart your browser. Notifications should now work.
- Adds Latch times to Alarms. You can now specify a period in hours that an alarm will remain active after the event that tripped it has reset.
- The default value for "DavisIncrementPressureDP" is changed from true to false
** The effect of this is that for Davis VP/VP2 stations, the default number of decimal places used for pressure values changes
from 2 dp (hPa/mb) and 3 dp (kPa, inHg) to 1 dp (hPa/mb) and 2 dp (kPa, inHg)
** If you wish to retain the previous behaviour, then you MUST add the setting "DavisIncrementPressureDP=1" to your Cumulus.ini file
- Wind Rose is now populated from data files at start-up (last 24 hours)
- New graphs option to show/hide sunshine hours data
- New admin interface historic graphs (and associated API)
- New default web site page to show historic graphs
- Adds Air Quality to Recent Graphs in Admin Interface and default web site - configure a primary AQ sensor in Station.Options
- Adds Air Quality upload to WeatherUnderground. Enable in WeatherUnderGround settings, and configure a primary AQ sensor in Station.Options
- Adds Air Quality upload to AWEKAS. Enable in AWEKAS settings, and configure a primary AQ sensor in Station.Options
- Adds ability to define the number of decimal places used for various weather units via read-only settings in Cumulus.ini.
The full list of existing and new values is:
[Station]
WindSpeedDecimals=1 // Existing entry
WindSpeedAvgDecimals=1 // Existing entry
WindRunDecimals=1 // NEW
SunshineHrsDecimals=1 // Existing entry
PressDecimals= // NEW [hPa/mb=1, inHg=2]
RainDecimals= // NEW [mm=1, in=2]
TempDecimals=1 // NEW
UVDecimals=1 // NEW
AirQualityDecimals=1 // NEW - affects AQI values only, not PM values
- Lots of internal code fettling
- New Cumulus.ini read-only entry to control the data read rate for Instromet stations. The value is in milliseconds, default is 500.
[Station]
ImetReadDelay=500
- Admin interface tweaks
- Change WUnderground Password field name to Station Key in settings
3.9.1 - b3096
—————————————
- Fix: AirLink - Limit the number of decimal places in the AirLink log file
- Fix: AirLink - The web tags for 1hr average AQI values were picking up the latest reading value in error
- Fix: Send rounded wind speed to Weather Underground/Windy/PWS/WoW if Cumulus "Round Wind Speeds" is set
- Fix: Replaces a bad copy of trendsT.htm that crept into b3095
- Fix: Bug in wind spike removal that prevented it working
- Fix: Airlink caused premature day rollover processing during catch-up
- Workaround for the Chromium browser CSS bug that adds scroll bars to the settings screens
- Adds a new AirLink Sensors page to the admin interface
- Adds Netherlands LKI, and Belgian BelAQI AQI scales [6=Netherlands=LKI, 7=Belgium-BelAQI] to AirLink devices
- All AirLink AQI web tags now support the tc=y parameter, to properly truncate the AQI to an integer value
- Adds the ability to "latch" all alarms for a user configured number of hours
- Adds a new web tag <#CPUTemp> - only works on Linux, updates once a minute
- Change of JSON library from Newtonsoft to ServiceStack.Text
- Dashboard now updates every 2.5 seconds to match Davis stations (was 3 seconds)
- Updated files
\AirLinkFileHeader.txt - NEW
\CumulusMX.exe
\MQTTnet.dll
\Newtonsoft.Json.dll - REMOVED
\ServiceStack.Text.dll - NEW
\System.Buffers.dll - NEW
\System.Memory.dll - NEW
\System.Runtime.CompilerServices.Unsafe.dll - NEW
\interface\*.html - ALL html files
\interface\css\cumulus.css
\interface\json\ExtraSensorOptions.json - NEW
\interface\json\ExtraSensorSchema.json - NEW
\interface\json\InternetSchema.json
\interface\json\InternetOptions.json
\interface\js\airlink.js
\interface\js\extrasensorsettings.js - NEW
\interface\alarmsettings.js
\interface\lib\alpaca\alpaca.css
\web\trendsT.htm
3.9.0 - b3095
—————————————
- Fix: Running as a Windows service, now correctly reads command line parameters from the registry "ImagePath" field
- Fix: Cumulus forecast would sometimes start with a comma
- Fix: trendsT.htm location formatting
- Adds support for the Davis AirLink air quality monitor.
- Like the WLL it supports auto-discovery of the AirLink IP address, this can be disabled via config
- A new Settings page has been created for "Extra sensors", this is where you can configure the AirLink.
- Logs AirLink data to a new CSV data file "AirLink<yyyyMM>log.txt" - see AirLinkFileHeader.txt for field information
- Historic catch-up is supported if the main station is a Davis WLL and the AirLink has been added as node to this station
- Historic catch-up for other stations will be a later release
- Creates a new Cumulus.ini file section
[AirLink]
WLv2ApiKey=
WLv2ApiSecret=
AutoUpdateIpAddress=1
In-Enabled=0
In-IPAddress=0.0.0.0
In-IsNode=0
In-WLStationId=
Out-Enabled=0
Out-IPAddress=0.0.0.0
Out-IsNode=0
Out-WLStationId=
AQIformula=0 [0=US-EPA, 1=UK-COMEAP, 2=EU-AQI, 3=EU-CAQI, 4=Canada-AQHI, 5=Australia-NEMP]
- Adds new web tags for Davis AirLink
<#AirLinkFirmwareVersionIn>,<#AirLinkWifiRssiIn> - Requires Davis WeatherLink Live Pro subscription
<#AirLinkFirmwareVersionOut>,<#AirLinkWifiRssiOut> - Requires Davis WeatherLink Live Pro subscription
<#AirLinkTempIn>,<#AirLinkHumIn>
<#AirLinkTempOut>,<#AirLinkHumOut>
<#AirLinkPm1In>,<#AirLinkPm1Out>
<#AirLinkPm2p5In>,<#AirLinkPm2p5_1hrIn>,<#AirLinkPm2p5_3hrIn>,<#AirLinkPm2p5_24hrIn>,<#AirLinkPm2p5_NowcastIn>
<#AirLinkPm2p5Out>,<#AirLinkPm2p5_1hrOut>,<#AirLinkPm2p5_3hrOut>,<#AirLinkPm2p5_24hrOut>,<#AirLinkPm2p5_NowcastOut>
<#AirLinkPm10In>,<#AirLinkPm10_1hrIn>,<#AirLinkPm10_3hrIn>,<#AirLinkPm10_24hrIn>,<#AirLinkPm10_NowcastIn>
<#AirLinkPm10Out>,<#AirLinkPm10_1hrOut>,<#AirLinkPm10_3hrOut>,<#AirLinkPm10_24hrOut>,<#AirLinkPm10_NowcastOut>
<#AirLinkAqiPm2p5In>,<#AirLinkAqiPm2p5_1hrIn>,<#AirLinkAqiPm2p5_3hrIn>,<#AirLinkAqiPm2p5_24hrIn>,<#AirLinkAqiPm2p5_NowcastIn>
<#AirLinkAqiPm2p5Out>,<#AirLinkAqiPm2p5_1hrOut>,<#AirLinkAqiPm2p5_3hrOut>,<#AirLinkAqiPm2p5_24hrOut>,<#AirLinkAqiPm2p5_NowcastOut>
<#AirLinkAqiPm10In>,<#AirLinkAqiPm10_1hrIn>,<#AirLinkAqiPm10_3hrIn>,<#AirLinkAqiPm10_24hrIn>,<#AirLinkAqiPm10_NowcastIn>
<#AirLinkAqiPm10Out>,<#AirLinkAqiPm10_1hrOut>,<#AirLinkAqiPm10_3hrOut>,<#AirLinkAqiPm10_24hrOut>,<#AirLinkAqiPm10_NowcastOut>
<#AirLinkPct_1hrIn>,<#AirLinkPct_3hrIn>,<#AirLinkPct_24hrIn><#AirLinkPct_NowcastIn>
<#AirLinkPct_1hrOut>,<#AirLinkPct_3hrOut>,<#AirLinkPct_24hrOut><#AirLinkPct_NowcastOut>
- The Blake-Larsen sunshine recorder, and Hydreon RG-11 rain device configuration options can now be set on the new Extra Sensors page.
There are two new settings for RG-11 devices, if you use these devices you must set these via the configuration page as they will default to disabled.
[Station]
RG11Enabled=0
RG11Enabled2=0
- Adds new graph option - Solar Visible. Setting both Solar and UV to hidden means the solar graph data files will be empty.
- CumulusMX no longer re-writes the Cumulus.ini file on shutdown
- Adds the option to set the retained flag for the MQTT feeds
- New Cumulus.ini file settings
[MQTT]
UpdateRetained=0
IntervalRetained=0
- Updated files
\CumulusMX.exe
\AirLinkFileHeader.txt
\interface - lots of changes, all *.html files, /scripts, and /json
\web\trendsT.htm
3.8.4 - b3094
—————————————
- Fix: Unhandled exception in MySQL during the start-up catch-up process
- Fix: Graph buttons not wrapping on default web site trends page
- Fix: Calculating the trend rain rate when a rainfall multiplier is used
- Fix: Program Uptime when running under Mono and uptime > 24 days
- Fix: When running as a Windows service, the service was stopped unintentionally on non-critical system power events
- Fix: Davis VP receptions stats - ReceptionStats, FirmwareVersion and BaroRead functions rewritten
- Adds Ecowitt GW1000 decoding of WH34 battery status
- Adds Ecowitt GW1000 support for CO₂ sensor, no logging yet, but the decoding is there for when these sensors are released.
- New web tags <#CO2>, <#CO2-24h>
- Adds new Linux cumulusmx.service configuration file (thanks to @freddie), this allows you run Cumulus MX as a service under Linux using the
newer systemd control rather than the original init.d script supplied with v3.8.0
- Edit the cumulusmx.service configuration file and change the path to match your Cumulus MX installation folder
- Copy cumulusmx.service to your /etc/systemd/system/ folder
- Cumulus can then be started and stopped with the following commands:
> systemctl start cumulusmx
> systemctl stop cumulusmx
- Status and restart are available too:
> systemctl restart cumulusmx
> systemctl status cumulusmx
- If you make a change to the unit file, you need to run the following command so that systemd re-reads your file:
> systemctl daemon-reload
- To have Cumulus start on reboot, issue the following command:
> systemctl enable cumulusmx
- Finally, to stop the service running on reboot, use the following:
> systemctl disable cumulusmx
- Adds a new web tag <#ProgramUpTimeMs> that returns the Cumulus run time in milliseconds
- Updated files
\CumulusMX.exe
\web\trendsT.htm
- New files
\MXutils\linux\cumulusmx.service
3.8.3 - b3093
—————————————
- Fix: The dew point threshold limit (default value 40C) was incorrectly being applied to installations configured to use Fahrenheit
as if the value were in Fahrenheit.
- Fix: Davis VP/VP2 force 1 minute barometer updates no longer working correctly after v3.8.2 protocol changes.
Note: this setting should only be used for VP stations, or VP2 stations with very old firmware.
- Fix: Last rain date not updating for Davis stations (fixes the mixed unit/bucket size update in 3.8.2)
- Adds two new Cumulus.ini file settings to control the number of decimal places used for wind speeds. These override the built-in defaults.
These settings are read-only, they can to be manually added ONLY if you need to use them. Add either or both settings as required.
[Station]
WindSpeedDecimals=[0|1|2]
WindSpeedAvgDecimals=[0|1|2]
- Updated files
\CumulusMX.exe
3.8.2 - b3092
—————————————
- Fix: Davis VP2 stations - LastRainTip not being updated correctly with mixed metric/imperial gauges/units
- Fix: Davis VP2 stations - Bug that prevented the seconds being read from the console clock
- Fix: Dashboard temp/press trend arrows not working in locales with comma decimals
- MXdiags log files are now rotated if they exceed 20MB in size, 15 log files are now retained
- For Davis VP2 stations, setting the console clock now checks the console time and only sets it if it
differs from the current time by greater than 60 seconds
- Davis VP2 stations protocols have been extensively rewritten to make them more efficient and less timing sensitive
Third party IP loggers such as meteobridge and WiFi logger should now work more reliably
- Enables PSK authentication when using SFTP. Options are now Password, PSK, PSK with Password fall-back
New Cumulus.ini entries...
[FTP site]
SshFtpAuthentication=password [password (default), psk, password_psk]
SshFtpPskFile= [PSK filename, must include the full path is the file is not in the CumulusMX folder]
- CMX calculated dew point is automatically enabled for GW1000 stations
- Updated files
\CumulusMX.exe
\interface\js\dashboard.js
\interface\json\InternetOptions.json
\interface\json\InternetSchema.json
3.8.1 - b3091
—————————————
- Fix: Davis TCP loggers failing to connect correctly
- Fix: NOAA reports not viewable in Admin interface when Cumulus started as a service
- Fix: Prevents an Exception on shutdown when running as a service
- Updated files
\CumulusMX.exe
3.8.0 - b3090
—————————————
- Fix: Malformed API JSON returned by api/tags/process.json if no data output is generated
- Fix: Crash on start-up on the 1st of the month between 00:00 and rollover hour when using 9am rollover
- Fix: AWEKAS Sunshine hours were being truncated to integer hours
- New feature: Cumulus MX now supports running as a system service
- When running as a service the normal console output is logged to a file: \MXdiags\ServiceConsoleLog.txt
- On Windows
- To set Cumulus up as a service run it as an Administrator using the command line parameter -install
- To remove the Cumulus system service run it as an Administrator using the command line parameter -uninstall
- The service will stop itself if it detects that the computer is going into standby
- To add parameters to the service when it starts automatically you will have to edit the registry
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CumulusMX\ImagePath
Add the parameters after the quoted executable string. Eg.
"C:\CumulusMX\CumulusMX.exe" -port 9000
- The service can be stopped/started using the usual utilities:
The Services applet:- services.msc (You can pass parameters using this tool, but they are not saved for future use)
The service command line tool:- sc start|stop|query CumulusMX [optional parameters for start-up here]
- On Linux
- Run Cumulus using the mono-service command instead of mono. You also need to add the command line parameter -service
> mono-service -l:/var/run/cmx.pid CumulusMX.exe -service (if pathed to CumulusMX folder)
or
> mono-service -l:/var/run/cmx.pid -d:<</path/to/cumulusmx>> CumulusMX.exe -service (from any location)
- To stop the service you use kill, which will perform an orderly shutdown of MX
> kill `cat /var/run/cmx.pid`
- New feature:
- When running on Linux there is now an init.d script to start/stop the service.
- The script can be found in the \MXutils\linux folder
- Copy it to your /etc/init.d folder
- Change the permissions to 0755
> chmod 0755 /etc/init.d/cumulusmx.sh
- The script supports the following commands: start, stop, restart, status, removelock
- start: Starts MX as a service and creates a lock file to prevent it running again
- stop: Stops MX as a service and removes the lock file
- restart: Stops, then starts MX
- status: Reports if MX is running (only by checking the lock file at present), and dumps the latest console output to screen
- removelock: Removes a stray lock file if one gets left behind
- The command line would be: /etc/init.d/cumulusmx.sh start|stop|restart|status|removelock
- Script name: \MXutils\linux\cumulusmx.sh
- New feature:
- When running on Windows as a service, the service will stop if the computer goes to standby/hibernate mode. A script to set up
a Scheduled Task that will restart the service on resume from standby/hibernate is provided in the \MXutils\windows folder.
The script MUST be run with Administrator privileges.
- Script name: \MXutils\windows\CreateCmxResumeFromStandbyTask.ps1
- Adds a new web tags for the Davis WLL device.
<#ConsoleSupplyV> - The WLL external supply voltage
<#MulticastBadCnt> - Count of multicast packets missed or have bad a CRC
<#MulticastGoodCnt> - Count of good multicast packets received
<#MulticastGoodPct> - Percentage of good multicast packets received
- On new installs of Cumulus MX, changes the default value of "WarnMultiple" from false to true
- Adds a download history limit of 50 bad packets for WMR200 station types. Previously it could get stuck in a loop downloading bad data.
- Adds Show UV-I to the graph hide/show options
- Updates ExportMySQL to include the new Humidex values from b3089
- AWEKAS uploads updated to API v4 - now can include indoor data, soil temp/moisture 1-4, and leaf wetness 1-2. And it supports rapid
updates - minimum 15 seconds if you have a Stationsweb subscription, min 60 secs for Pro accounts, and 300 seconds for normal accounts
- IMPORTANT NOTE: THe AWEKAS interval has changed from being set in minutes, to being set in seconds.
You MUST update the AWEKAS interval in the Internet settings/Cumulus.ini file to reflect this change.
- New Cumulus.ini entries
[Awekas]
Language=en
SendIndoor=0
SendSoilMoisture=0
SendLeafWetness=0
- Enabling/disabling and changing intervals for Twitter, WUnderground, Windy, PWS Weather, WOW, APRS, AWEKAS, Weather Cloud, MQTT from
Internet Settings now takes immediate effect and does not require a Cumulus restart.
- Adds a new Cumulus.ini file only, read-only setting
[Station]
SunshineHrsDecimals=1
- Adds a new folder in Dist zip file: /MXutils
In here I will add the various scripts etc that are provided with the releases to update MySQL or aid moving from one release to the next.
See above for new Windows and Linux scripts when running as a service
- Updated files
\CumulusMX.exe
\ExportMySQL.exe
\interface\js\charts.js
\interface\json\InternetOptions.json
\interface\json\InternetSchema.json
\interface\json\StationOptions.json
\interface\json\StationSchema.json
\webfiles\js\cumuluscharts.js
-New files
\MXutils
3.7.0 - b3089
—————————————
- Fix: Humidex was treated by MX as a temperature and incorrectly converted using the Celsius to Fahrenheit
conversion (if that was the user selected temperature unit).
Humidex is a dimensionless scale that should not be converted to retain meaning
- Fix: Thread unsafe graph data access
- Fix: Real time SFTP not recovering from some reconnection situations
- Fix: Add missing "rc" function from <#battery> web tag
- Fix: Remove units from Humidex value on the chart tooltip
- Fix: Station Settings page menu
- Fix: Davis WLL devices were flagging sensor contact lost for lost packets, now it only flags contact lost
when resynchronising with a transmitter
- Fix: Monthly records editor not functioning correctly on Humidex in beta1
- Adds a logger interval check for Davis VP2 stations - prints warning to console and log file if there is a mismatch
- Now supports some of the Cumulus 1 Graph plotting options, configured via Station Settings
- Cumulus.ini file settings
[Graphs]
TempVisible=1
InTempVisible=1 *new?
HIVisible=1
DPVisible=1
WCVisible=1
AppTempVisible=1
FeelsLikeVisible=1
HumidexVisible=1 *new
InHumVisible=1
OutHumVisible=1
- Remove defunct WeatherBug upload from Cumulus MX
- Humidex is now a fully fledged variable...
- Daily, monthly, yearly highs
- Recent data
- Graph data - added to MX interface
- Records
- New Humidex web tags:
<#HighHumidexRecordSet>
<#humidexTH>, <#ThumidexTH>
<#humidexYH>, <#ThumidexYH>
<#MonthHumidexH>, <#MonthHumidexHT>, <#MonthHumidexHD>
<#YearHumidexH>, <#YearHumidexHT>, <#YearHumidexHD>
<#humidexH>, <#ThumidexH>
<#ByMonthHumidexH>, <#ByMonthHumidexHT>
<#RecentHumidex>
- Add Humidex to default web site trend graphs
- Now only calculates Humidex above 10C
- Day file updated with four additional fields or Humidex high, high time
- Monthly log file has an additional field for Humidex
- Daily SQL table has four additional columns for Humidex high, high time
- Monthly SQL table has an additional column for Humidex
- Add new web tag <#timeUnix> = provides current date/time as a Unix timestamp (like <#timeJavaScript>)
- The web tags <#SunshineHours> and <#YSunshineHours> now accept the decimal place parameter "dp=n"
- Adds a new web token processor API - details available separately
- Spike removal settings are now active for all station types - TAKE CARE! Use with caution
- Spike/limit logging is now enabled by default for new installs
- Adds a new alarm - Spike removal triggered - it stays active for 12 hours, or it is cleared if you save the calibration settings
- New web tag <#DataSpikeAlarm>
- New Cumulus.ini file settings...
[Alarms]
DataSpikeAlarmSet=0
DataSpikeAlarmSound=0
DataSpikeAlarmSoundFile=alarm.mp3
- New "Limits" implemented. Now MX ignores temperature, dew point, pressure, and wind values outside sensible value ranges from any station type (these also trigger a spike alarm)
- Set via the Calibration settings screen
- New Cumulus.ini file settings...
[Limits]
TempHighC=60
TempLowC=-60
DewHighC=40
PressHighMB=1090
PressLowMB=870
WindHighMS=90
- New web tags for latest build notification - these require internet access to be meaningful
<#NewBuildAvailable> - returns "1" or "0"
<#NewBuildNumber> - returns the latest available Cumulus MX build number
- Updated files
\CumulusMX.exe
\dayfileheader.txt
\monthlyfileheader.txt
\interface\alarmsettings.html
\interface\alltimerecseditor.html
\interface\index.html
\interface\monthlyrecseditor.html
\interface\stationsettings.html
\interface\thismonthrecseditor.html
\interface\thisyearrecseditor.html
\interface\js\alarmsettings.js
\interface\js\alltimerecseditor.js
\interface\js\charts.js
\interface\js\dashboard.js
\interface\js\datalogs.js
\interface\js\dayfileeditor.js
\interface\js\monthlyrecseditor.js
\interface\js\thismonthrecseditor.js
\interface\js\thisyearrecseditor.js
\interface\json\CalibrationOptions.json
\interface\json\CalibrationSchema.json
\interface\json\InternetOptions.json
\interface\json\InternetSchema.json
\webfiles\js\cumuluscharts.js
3.6.12 - b3088
——————————————
- Fix Davis stations not downloading historic logger data (in b3087)
- Updated files
\CumulusMX.exe
3.6.11 - b3087
——————————————
- Fix Davis TCP logger connections not timing out occasionally
- Fix heading on interface Now page, remove units from Humidex
- Fix FTP log file handling in Extra Files, with EOD option on the first of the month
- Add Feels Like to the default web site trends temperature graph
- Add Extra Sensors log file to the backup routine
- Add previous months log files (monthly and extra) to the backup on the first of the month
- Add "<currentextralogfile>" tag to Extra Web Files to specify the variable extra log file name
- Improve web tag token parser performance
- Cumulus (Zambretti) forecast now works with localised compass points
- Internal optimisations (watch out for new issues!)
- Uplift the SFTP component from a 2016 version to new beta version - supports more encryption methods and key file formats
- Further additions to shutdown code for all stations
- Adds new web tag <#RecentFeelsLike>
- Updated files
\CumulusMX.exe
\Renchi.SshNet.dll
\interface\now.html
\webfiles\js\cumuluscharts.js
3.6.10 - b3086
——————————————
- Fix for Feels Like calculation broken in previous release
- Fix for Davis WLL wind values when using units other than mph
- Fix for poor performance of wind direction charts on the MX interface and base web site
- Make end of day SQL inserts asynchronous
- Use a fixed timestamp for all EOD operations
- Updated files
\CumulusMX.exe
\interface\charts.html
\interface\js\charts.js
\web\trendsT.htm
\webfiles\js\cumuluscharts.js
3.6.9 - b3085
—————————————
- RELEASE WITHDRAWN
3.6.8 - b3084
—————————————
- Simplify realtime SFTP error detection and recovery
- Change the default web site Gauges page to not show pop-up graphs by default
- Fix for Ecowitt GW1000 stations when sensors go offline/online (wind and rain values)
- Fix for GW1000 stations wind gust values when using units other than "mph"
- Fix for GW1000 stations with WH34 type sensors and firmware 1.6.0 or later. You *must* now use firmware 1.6.0+ with WH34 devices
- Fix crash when creating the graph JSON files when file in use by FTP
- Fix for rc=y parameter not working with the <#intemp> web tag
- Fix low contrast menus on admin interface
- Fix HighCharts theme on admin interface Charts page, and default web site Trends page
- Fix for web tags <#daylength> and <#daylightlength> to display "24:00" if they last all day (they still allow custom formats)
- Updated files
\CumulusmX.exe
\interface\charts.html
\interface\css\cumulus.css
\web\trendsT.htm
\webfiles\lib\steelseries\scripts\gauges.js
3.6.7 - b3083
—————————————
- Add catches for real time MySQL updates and all real time file failures
- Adds Station (Absolute) and Altimeter pressure values for Davis WLL stations
- Updated files
\CumulusMX.exe
3.6.6 - b3082
—————————————
- Change ini files to use 17 significant figures for decimal values (up from 15)
- Fix for Davis WLL health data decoding when the WLL is LAN attached
- Fix for real time SFTP not reconnecting after failure
- Updated files
\CumulusMX.exe
3.6.5 - b3081
—————————————
- Fix for sun rise/set and dawn/dusk calculations when there is one event but not the other in a single day
- Fix for realtime FTP timeout/recovery issues
- Updated files
\CumulusMX.exe
3.6.4 - b3080
—————————————
- Fix for Ctrl-C not being handled when running under Linux/mono. Now handles SIGTERM and console Ctrl-C
- Fix for realtime FTP getting stuck on "already in progress"
- Adds support for Ecowitt GW1000 WH34 8 channel "User" (soil and water) temperature sensors
New web tags <#UserTemp1> - <#UserTemp8>
ExtraLog file has eight new fields appended - UserTemp1-8
- Updated files
\CumulusMX.exe
\Extrafileheader.txt
\SampleStrings.ini
\interface\extra.html
\interface\js\extradatalogs.js
\interface\js\extrasensors.js
3.6.3 - b3079
—————————————
- Reverts b3077 FluentFTP update
- Fix for the long standing random Cumulus.ini/today.ini corruption when shutting down on Windows
- Another fix for Oregon WMR928 extra temperature only sensors
- Updated files
\CumulusMX.exe
\FluentFTP.dll
3.6.2 - b3078
—————————————
- Fix for badly formed realtime.txt in b3077
- Updated files
\CumulusMX.exe
3.6.1 - b3077
—————————————
- Fix for Oregon WMR928 extra temperature only sensors
- Fix for yesterdays Feels Like values in Admin interface Today/Yesterday screen
- Adds Feels Like to realtime.txt file as field 59
- Changes GW1000 default Lightning distance to 999 (all user units), and time to 1900-01-01 00:00:00
The corresponding Webtags will output "--" and "---" respectively
- Adds a new web tag <#LastRainTip>, which unlike <#LastRainTipISO> will accept a date/time format string
- Updated files
\CumulusMX.exe
\FluentFTP.dll
3.6.0 - b3076
—————————————
- Fix for records editors failing to read log files from Cumulus 1 versions
- Fix for Ecowitt GW-1000 devices to bypass the auto-discovery mechanism if it is disabled in the config
- NOAA reports now include degree, minutes, seconds symbols
- Slightly enhanced program termination logging
- Implements highs/low/records for Feels like
- Changes to ini files to add Feels Like - Adds [FeelsLike] section to
today.ini, yesterday.ini, month.ini, year.ini, alltime.ini, monthlyalltime.ini
- Changes to log files
monthlog.txt - adds field 27, feels like
dayfile.txt - adds fields 47-50, high feels like, high time, low, low time
- Changes to the MYSQL database tables are required
Adds column FeelsLike to the Monthly table
Adds columns MaxFeelsLike, TMaxFeelsLike, MinFeelsLike, TMinFeelsLike to the Dayfile table
- New web tags
<#HighFeelsLikeRecordSet>
<#LowFeelsLikeRecordSet>
<#ByMonthFeelsLikeHT>
<#ByMonthFeelsLikeLT>
<#ByMonthFeelsLikeL>
<#ByMonthFeelsLikeH>
<#YearFeelsLikeHD>
<#YearFeelsLikeLD>
<#YearFeelsLikeHT>
<#YearFeelsLikeLT>
<#YearFeelsLikeH>
<#YearFeelsLikeL>
<#MonthFeelsLikeHD>
<#MonthFeelsLikeLD>
<#MonthFeelsLikeHT>
<#MonthFeelsLikeLT>
<#MonthFeelsLikeH>
<#MonthFeelsLikeL>
<#feelslikeH>
<#TfeelslikeH>
<#feelslikeL>
<#TfeelslikeL>
<#feelslikeYH>
<#TfeelslikeYH>
<#feelslikeYL>
<#TfeelslikeYL>
<#feelslikeTH>
<#TfeelslikeTH>
<#feelslikeTL>
<#TfeelslikeTL>
- Updated record editors
- Updated log file viewers/editors
- Adds battery and reception data for Davis WLL. It now logs battery and input voltages to the MXdiags.
These are updated every 15 minutes and require you to have a WeatherLink Pro subscription.
The WLL unlike the VP2 console provides individual data for each transmitter
- The following web tags have been updated to accept a "tx=n" parameter, where n=1-8 and equals the desired transmitter id.
Omitting the tx= parameter or using tx=0 makes the tag function as before for Davis VP2 systems
<#DavisTotalPacketsMissed tx=n>
<#DavisNumberOfResynchs tx=n>
<#DavisMaxInARow tx=n>
<#DavisNumCRCerrors tx=n>
- New web tags for WLL transmitter reception percentage and RSSI figure, these must be used with the tx=n parameter
<#DavisReceptionPercent tx=n> - defaults to tx=1, tx=0 is unused
<#DavisTxRssi tx=n> - defaults to tx=1, use tx=0 to get the WLL WiFi RSSI
- Updated ExportMySQL.exe to version 1.1.0
- Incorporates the new Feels Like data
- Uses compass point "-" for Calm
- Reads customised compass points from strings.ini if set
- Updated files
\CumulusMX.exe
\dayfileheader.txt
\ExportMySQL.exe
\Extrafileheader.txt
\monthlyfileheader.txt
\interface\alltimerecseditor.html
\interface\extrawebfiles.html
\interface\index.html
\interface\monthlyrecseditor.html
\interface\now.html
\interface\thismonthrecseditor.html
\interface\thisyearrecseditor.html
\interface\todayest.html
\interface\js\alltimerecseditor.js
\interface\js\charts.js
\interface\js\datalogs.js
\interface\js\dayfileeditor.js
\interface\js\monthlyrecseditor.js
\interface\js\thismonthrecseditor.js
\interface\js\thisyearrecseditor.js
\interface\json\StationOptions.json
3.5.4 - b3075
—————————————
- Fix for bearing zero on the interface "Now" page
- Fix for admin interface charts popup
- Fix for "normal" Extra files not being FTP'd at rollover interval, only those flagged as EOD were being transferred
- Another attempt to rationalise the Moon Phase messages - each quarter (new, 1st, full, 3rd) should now show for approximately 12 hours either side of the event
- All web tags that produce decimal number output now support the "rc=y" option
- Additional Davis WLL health info dumped in the MXdiags log on start-up and every 10 minutes if debug logging is on (voltages, uptimes, WiFi RSSI etc)
Logs warnings to the command line console and log file if voltages are too low
- Adds BatteryLow Alarm for WLL (Console [if you have an API key] & Tx), VP2 (Console & Tx), GW1000 (Tx), and adds a new web tag <#BatteryLowAlarm>
- Adds new web tag <#feelslike> - calculated using the JAG/TI formula used in the UK, USA, Canada etc. Currently there are no stats for this value
- Updated files
\CumulusMX.exe
\interface\alarmsettings.html
\interface\alltimerecseditor.html
\interface\index.html
\interface\now.html
\interface\todayest.html
\interface\js\alarmsettings.js
\interface\js\charts.js
\interface\js\dashboard.js
\interface\js\now.js
\mqtt\DataUpdateTemplate.txt
\mqtt\IntervalUpdate.txt
\webfiles\js\cumuluscharts.js
3.5.3 - b3074
—————————————
- Fix: Backs out changes that created bad file paths in b3073
- Updated files
\CumulusMX.exe
\web\webfiles\lib\steelseries\scripts\gauges.js
3.5.2 - b3073
—————————————
- Fixes and improvements to MQTT processing
- Adds new Cumulus.ini setting for MQTT to force IPv4/IPv6 connectivity (default is System decides which to use)
[MQTT]
IPversion=0 (0=default, 4=IPv4, 6=IPv6)
- Adds Sensor Contact lost flag/alarm for Davis WLL devices
- GW1000 raw Lux value is now available via the <#Light> web tag like other Fine Offset stations
- Adds three new web tags...
<#timeJavaScript> - returns the current date/time in JavaScript milliseconds. Example use = "var dt = Date(<#timeJavaScript>)"
<#directionTM> - returns todays max wind gust direction as a compass point
<#directionYM> - returns yesterdays max wind gust direction as a compass point
- Updated files
\CumulusMX.exe
\MQTTnet.dll
3.5.1 - b3072
—————————————
- Fix for the "Stop second instance" option now working a bit too well, you could not disable it!
- Implements the "record set" web tags. These will be set from the time of the record until a timeout value (default 24 hours).
You can change the default timeout by adding a entry to Cumulus.ini
[Station]
RecordSetTimeoutHrs=24
The web tags enabled are: TempRecordSet, WindRecordSet, RainRecordSet, HumidityRecordSet, PressureRecordSet, HighTempRecordSet,
LowTempRecordSet, HighAppTempRecordSet, LowAppTempRecordSet, HighHeatIndexRecordSet, LowWindChillRecordSet, HighMinTempRecordSet,
LowMaxTempRecordSet, HighDewPointRecordSet, LowDewPointRecordSet, HighWindGustRecordSet, HighWindSpeedRecordSet, HighRainRateRecordSet,
HighHourlyRainRecordSet, HighDailyRainRecordSet, HighMonthlyRainRecordSet, HighHumidityRecordSet, HighWindrunRecordSet, LowHumidityRecordSet,
HighPressureRecordSet, LowPressureRecordSet, LongestDryPeriodRecordSet, LongestWetPeriodRecordSet, HighTempRangeRecordSet, LowTempRangeRecordSet
- Updated files
\CumulusMX.exe
3.5.0 - b3071
—————————————
- Fix to "Stop second instance" of Cumulus running
- Fix for hung update interval (S)FTP sessions getting hung
- Fix to <#moonage> web tag to improve accuracy
- Adds support for MQTT output
Two options, send an MQTT message whenever new data is received, or send a message at a fixed interval
The message format is defined in template files, using web tags, located in the \mqtt folder
- Tidy up of /interface folder to remove unused files
- Removal of Highcharts scripts from the distribution
- Add support for generating a Moon Phase image. This is disabled by default. The output image will be generated and
optionally FTP'd once an hour. The generated local image file is always \web\moon.png
[FTP site]
IncludeMoonImage=1
[Graphs]
MoonImageEnabled=1
MoonImageSize=100
MoonImageFtpDest=images/moon.png
- New files
\Licences-Additional.txt
\MQTTnet.dll
\mqtt\DataUpdateTemplate.txt
\mqtt\IntervalTemplate.txt
\web\MoonBaseImage.png
- Updated files
\CumulusMX.exe
\FluentFTP.dll
\Newtonsoft.Json.dll
\interface\ - [Many changes, delete and replace]
\web\indexT.htm
\webfiles\js\cumuluscharts.js
3.4.6 - b3070
—————————————
- Fix for station wind chill on Davis WLL devices
- Fix for auto-discovered Davis WLL Station-Ids not being saved to the config file
- More robust failure handling for realtime FTP connections
- Additional diagnostics output in the console and log file for badly formed web tags
- Updated files
\CumulusMX.exe
3.4.5 - b3069
—————————————
- Adds Editors for: Dayfile, Monthly Logs, Extra Logs
- Adds line numbers to the log file viewer/editors
- Widens the time windows for the Moons phase names
- Fix for <#MoonPercent> and <#MoonPercentAbs> always showing integer values even with the dp=n option
- Updated files
\CumulusMX.exe
\interface\<too much to list>
3.4.4 - b3068