-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog.txt
1055 lines (723 loc) · 28 KB
/
Changelog.txt
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
Known issues:
- Balance Tracker / Earnings Graph: Date change does not respect local time zone (accumulated data is calculated in UTC time)
Changelog UG-Miner 6.3.17 2024/11/??
====================================
Fixes:
- Legacy GUI: Context menu for miners not working
Improvements:
- Remove obsolete code & minor code optimizations
Miner updates:
- lolMiner-v1.92
- Wildrig-v0.41
Changelog UG-Miner 6.3.16 2024/11/20
====================================
Fixes:
- Includes.psm1: Mitigate memory leak with runspace handling
Miner updates:
- SRBMinerMulti-v2.7.1
Changelog UG-Miner 6.3.15 2024/11/17
====================================
Changes:
- Removed config folder from distribution package
Changelog UG-Miner 6.3.14 2024/11/17
====================================
Fixes:
- Core: Corrupt data when merging PoolsConfig with CustomPoolConfig
- Web GUI / Balances data: 0 valued fields left empty
Improvements:
- Core: Minor code optimizations
Miner updates:
- BzMiner-v21.5.3
- OneZeroMiner-v1.4.2
Changelog UG-Miner 6.3.13 2024/11/10
====================================
Changes:
- Remove 'NiceHash External' mining. To mine NiceHash you must register (https://www.nicehash.com/my/register), thanks to grantemsley
Fixes:
- Balances tracker: Set projected pay date to 'unknown' if exchange rate is not available
Improvements:
- Core: Minor code optimizations
Changelog UG-Miner 6.3.12 2024/11/02
====================================
Fixes:
- Core / Includes.psm1: Method 'StartDataReader' creating truncated job names
- Web GUI / Miners & pools tables: clear hourglass cursor when hiding/showing columns or toggling view
Improvements:
- APIserver.psm1: Minor code optimizations
Miner changes:
- Wildrig-v0.40.9
Changelog UG-Miner 6.3.11 2024/10/26
====================================
Improvements:
- Core: Minor codse optimizations
- Pool 'MiningDutch': Query additional API 'https://www.mining-dutch.nl/api/v1/public/pooldata/?method=totalstat' for hashrate & worker data
Changelog UG-Miner 6.3.10 2024/10/20
====================================
Improvements:
- Core: Close useless empty cmd window that comes up when starting from cmd file (Windows 11)
- Core: Minor code optimizations
- LegacyGUI / Earnings & balances: Add more columns to balances table
- LegacyGUI: Remove obsolete code & minor code optimizations
Changelog UG-Miner 6.3.9 2024/10/17
===================================
Changes:
- Brains: Price data is based on estimate_current (instead of estimate_last24h)
Fixes:
- Core: BalancesTracker not getting stopped when '$BalancesTrackerPollInterval' -eq 0
Miner updates:
- SRBMinerMulti-v2.6.9 (Keep SRBMinerMulti-v2.6.8 for old algorithms)
Changelog UG-Miner 6.3.8 2024/10/13
===================================
Enhancements:
- SwitchingLog.csv : Added 'Hashrate(s)' & 'PowerUsage' columns
- Web GUI / Switching Log: Added hidden 'Hashrate(s)' & 'PowerUsage' columns
Fixes:
- BalancesTracker: NiceHash balances not working
- Core / Includes.psm1: Function 'Get-AllDAGdata' querying API's too often
- Core / Includes.psm1: Function 'Get-Stat' not returning all stats if called without parameter
- Core / Includes.psm1: Function 'Update-PoolWatchdog' Pool watchdog marking pools unavailable with two reasons simultaneously (Regression from 6.3.3)
- Miner API 'EthMiner': Error when miner crashed
- Web GUI / Miners & pools tables: Reasons filter not working
Improvements:
- Core & Miner APIs: Remove obsolete code & minor code optimizations
- LegacyGUI.ps1: Remove obsolete code & minor code optimizations
Miner updates:
- BzMiner-v21.5.1
- SRBMinerMulti-v2.6.8
Changelog UG-Miner 6.3.7 2024/10/05
===================================
Improvements:
- Core & Miner APIs: Remove obsolete code & minor code optimizations
- Core / Includes.psm1: Function 'Update-DAGdata' sets CUDAversion property. No need for 'CUDAversion.json' anymore
- Core: Streamline failed miner reason text in switching log file
- Log viewer (SnakeTail): Change color for 'WARN' messages to magenta to match color in text console
Miner changes:
- NanoMiner-v3.9.3
- SRBMinerMulti-v2.6.7
- TeamBlackMiner-v2.27
Changelog UG-Miner 6.3.6 2024/10/01
===================================
Enhancements:
- Added configuration item 'Ignore0HashrateSample'.
- Web GUI: Change some icons
Miner changes:
- JayddeeCpu-v24.5
- lolMiner-v1.91
- Rigel-v1.19.1
- SRBMinerMulti-v2.6.6
- TeamBlackMiner-v2.26
Changelog UG-Miner 6.3.5 2024/09/14
===================================
Fixes:
- Miner 'Rigel-v1.19.0': 'HeavyHashKarlsenV2' & 'HeavyHashPyrinV2' algorithms not working
Changelog UG-Miner 6.3.4 2024/09/13
===================================
Changes:
- Legacy GUI: Use <Ctrl>-<Alt>-P instead of <Ctrl>-<Alt>-<Pause Mining> button to suspend core (same as in console window)
Improvements:
- Web GUI / Miners tables: Optimize column width handling
- Core: Use 'Close-CoreRunspace' instead of 'Stop-Core' on error in 'Core.ps1'
Miner changes:
- lolMiner-v1.89
Changelog UG-Miner 6.3.3 2024/09/11
===================================
Enhancement:
- Legacy GUI: <Ctrl>-<Alt>-<Pause Mining> button suspends core (same <Ctrl>-<Alt>-P in console window)
Fixes:
- Core: Benchmarking or power usage measuring not stopping on time when no valid samples are found
- Core: Watchdog not suspending algorithm@pool
- Core: Watchdog suspending wrong miner
Improvements:
- Minor code optimizations
Miner updates:
- Rigel-v1.19.0
- SRBMinerMulti-v2.6.4
Changelog UG-Miner 6.3.2 2024/09/09
===================================
Changes:
- Keep miners when mining is paused
Enhancements:
- Core / Includes.psm1: Function 'Update-DAGdata' can now handle TLS (ProgPowTelestai) data
- Core: Add support for 'HeavyHashKarlsenV2' & 'HeavyHashPyrinV2' algorithms
Fixes:
- Legacy GUI: Miners table not getting cleared when no miners available
Improvements:
- Minor code optimizations
Miner changes:
- TeleMerakiMiner-v1.5.0.ps1
Changelog UG-Miner 6.3.1 2024/09/06
===================================
Enhancements
- Core / Includes.psm1: Function 'Update-DAGdata' can now handle BLOCX (SCCpow) data
- Legacy GUI / Miners: Do not update tables when data is selected
- Legacy GUI / Switching log: Do not reset check boxes on each data update
Improvements:
- Minor code optimizations
Miner fixes + updates:
- BzMiner API: Fix incomplete samples
- Rigel-v1.18.2
- SRBMinerMulti-v2.6.3
- XmRig-v6.22.0.3: Faster benchmarking for some CPU algorithms (no more benchmarking all algorithms before mining)
Changelog UG-Miner 6.3.0 2024/09/01
===================================
Changes:
- Core: Remove configuration item 'MinerInstancePerDeviceModel'
- Removed pool 'MiningPoolHub'. Pool is no longer trustworthy. Outstanding balances will not get paid and support will not respond.
Fixes:
- Core: Eliminate memory leak with idle detection
- Miners: Fix algorithm typo ('XelisHassh' -> 'XelisHash')
- Miner API 'EthMiner': Update hashrate multiplier
Changelog UG-Miner 6.2.29 2024/08/29
====================================
Changes:
- Core: Declutter log messages (move level to start of line)
- Pool 'ZergPool': Remove *Coins* variants
Enhancements:
- Split error logs, one log per day
- Core: Rework core restart process. An error in 'Core.ps1' will trigger a complete core runspace restart.
Fixes:
- Core: Fix typo
- Core: Trying to measure power consumption even when HWiNFO64 sensor naming is invalid
- Miner 'SRBMinerMulti-v0.9.4' creating invalid miner objects
- Web GUI: Earnings currency 'Unknown' (Regression from 6.2.26)
Changelog UG-Miner 6.2.28 2024/08/24
====================================
Enhancements:
- Core / Console display: Optimize hotkey legend
- Core / Consone display: Optimize miner list when benchmarking or power usage measuring
- Core: Reduce number of miners to benchmark when configuration item 'BenchmarkAllPoolAlgorithmCombinations' -eq $true
- Web GUI: Use [System.Web.HttpUtility]::UrlDecode to decode payload
Fixes:
- Core: Suppress MemDbg debug message
- Core: Configuration item 'SSL' not working some scenarios when set in pool configuration (Regression from 6.2.19)
- Web GUI / Unavailable miners: 'Remove watchdog' not working
Miner updates:
- SRBMinerMulti-v2.6.2
- XmRig-v6.22.0.3
Changelog UG-Miner 6.2.27 2024/08/18
====================================
Fixes:
- Correct typo in UG-Miner.ps1
- APIserver.psm1: Do not print full path in log
Improvements:
- Core: Remove obsolete code & minor code optimizations
Changelog UG-Miner 6.2.26 2024/08/16
====================================
Changes:
- Renamed configuration item 'BalancesShowInMainCurrency' to 'BalancesShowInFIATcurrency'. Configuration file will get updated automatically during update.
- Renamed configuration item 'MainCurrency' to 'FIATcurrency'. Configuration file will get updated automatically during update.
- Web GUI / Configuration editor: Change pool selection logic. Can only select pool when prerequisites are met
Fixes:
- Core: 'Error in file 'Includes\Core.ps1' line 291' (Regression from 6.2.25)
Improvements:
- Core: Remove obsolete code & minor code optimizations
Changelog UG-Miner 6.2.25 2024/08/13
====================================
Fixed:
- Pool 'Miningdutch': Payout threshold 1000x too low
Improvements:
- Core: Remove obsolete code & minor code optimizations
Changelog UG-Miner 6.2.24 2024/08/10
====================================
Changes:
- Core: Simplify idle detection handling
Enhancements:
- Core: Check if there is already another instance running and show error message
Improvements:
- Core: Remove obsolete code & minor code optimizations
Miner changes:
- SRBMinerMulti-v2.6.1
- Wildrig-v0.40.8
Changelog UG-Miner 6.2.23 2024/08/04
====================================
Changes:
- Rework 'README.md'
Fixes:
- Core: Miners not getting stopped when idle detection stops mining
- Web GUI: Watchdog timer table not getting cleared when no watchdog timers exist
Improvements:
- Core: Remove obsolete code & minor code optimizations
- Miners: Minor code optimizations when reading miner objects
Miner changes:
- SRBMinerMulti-v2.6.0
Changelog UG-Miner 6.2.22 2024/08/01
====================================
Improvements:
- Core: Remove obsolete code & minor code optimizations
Miner changes:
- XmrStak-v2.10.8 (reactivated)
- XLArig-v5.2.4: Set miner fee to 5% (can be set to 0 when configuration item 'DisableMinerFee' -eq $true)
Changelog UG-Miner 6.2.21 2024/07/30
====================================
Changes:
- Core: Simplify miner data sample printout (removed double power usage data)
Enhancements:
- API: Added url for '/cpufeatures'
Fixes:
- Core: Not starting benchmarking when triggered through GUI (regression from 6.2.20)
Improvements:
- Core: Minor code optimizations
Miner changes:
- ClaymoreNeoscrypt-v1.2 (fix download link)
- Kudaraidee-v1.2.0a (fix download link)
- RplantCpu-v5.0.41
- Wildrig-v0.40.6
Changelog UG-Miner 6.2.20 2024/07/28
====================================
Changes:
- Rename algorithm 'FiroPowSCC' to 'SCCpow' (https://github.com/stakecube/StakeCubeCoin/blob/develop/README.md)
Enhancements:
- API: Added urls for '/miners/missingbinary', '/miners/missingfirewallrule' & '/miners/missingpprerequisite'
- Core: Mark miner as 'unavailable' when firewall rule is missing
Improvements:
- Core: Minor code optimizations
Miner updates:
- SCCminer-v1.1.0 (new)
- XLAarig-v5.2.4 (new)
Changelog UG-Miner 6.2.19 2024/07/21
====================================
Changes:
- Remove recommendation for PWSH version 7.2.x (I can no longer see any difference in memory leak with versions 7.3.x / 7.4.x)
Enhancements:
- Added configuration item 'PoolAllow0Hashrate'. It is also configurable per pool (edit .'\Config\PoolsConfig.json')
- Code cleanup: Remove extra spaces
- Core: Configuration item 'SSL' is now also configurable per pool (edit .'\Config\PoolsConfig.json')
- Core: Configuration item 'SSLallowSelfSignedCertificate' is now also configurable per pool (edit .'\Config\PoolsConfig.json')
Fixes:
- Legacy GUI / Switching log: Incorrect background color for stopped miners
Miner updates:
- Rigel-v1.18.1
Changelog UG-Miner 6.2.18 2024/07/19
====================================
Fixes:
- Web GUI / Configuration editor: Incorrect ProHashing registration link
- Web GUI / Switching log: Incorrect background color for stopped miners
Improvements:
- Core: No more unnecessary queries for DAG data when switching to donation run
- Core: Optimize number of queries for rates update
- Core: Minor code optimizations
Changelog UG-Miner 6.2.17 2024/07/13
====================================
Changes:
- ZergPool: Re-enable mining EthashB3 using SSL connection (Issue at pool is fixed)
Enhancements:
- Core: Add support for algorithms with static DAG size
- Core: Faster startup
Fixes:
- Core: Error when request to pen firewall ports is declined ('Error in file 'Includes\Core.ps1' line 1001 detected. Restarting core...')
- Core: Watchdog timeout message incorrect (regression from 6.2.5)
- Core / Includes.psm1: Function 'Get-DAGdata' returning incorrect DAG size for IRON
- CPU Miners broken (regression from 6.2.16)
- HiveOn balances querying for unsupported BTC balance
Improvements:
- Core / Includes.psm1: Minor code optimizations
Miner changes:
- ClaymoreDualME-v2.7.ps1 (removed - would only work with Nvidia drivers older than 20.12.1)
- OneZeroMiner-v1.3.6
- RrkzCpu-v4.2 (Invalid miner binary name)
- SRBMinerMulti-v2.5.9
- TTMiner-v2024.3.2
Changelog UG-Miner 6.2.16 2024/07/09
====================================
Enhancements:
- Core: Added configuration item 'CPUMiningReserveCPUcore' (Number of CPU cores reserved for main script processing. Helps to get more stable hashrates and faster core loop processing.)
Miner changes:
- BzMiner-v21.3.0
- Rigel-v1.18.0
- SRBMinerMulti-v2.5.8
- TTMiner-v2024.3.1
Changelog UG-Miner 6.2.15 2024/07/07
====================================
Enhancements:
- Legacy GUI: Always select full table rows
- Miners: Remove miners that are incompatible with RTX306012GB
Fixes:
- Brain 'ZPool' not updating CurrencyAlgorithm list
- Legacy GUI: Incorrect watchdog count message when no corresponding pool watchdog exists
- Web GUI / 'Earnings and Balances': Zergpool balances wallet link incorrect
Improvements:
- Core: Minor code optimizations
Miner updatwes:
- OneZeroMiner-v1.3.7
Changelog UG-Miner 6.2.14 2024/07/04
====================================
Fixes:
- Core: Double watchdog expiration messages (regression from 6.2.9)
- Core / Includes.psm1: Function 'Get-Rate' could not read cache file
Miner changes:
- JayddeeCpu-v24.4
Changelog UG-Miner 6.2.13 2024/06/30
====================================
Fixes
- Core / Includes.psm1: Functions 'Show-Console' & 'Hide-Console' broken (regression from 6.2.10)
- Core / Includes.psm1: Function 'Write-Config' temporarily removed 'PoolsConfig' property
- Legacy GUI: 'Miners' tab sort order incorrect
Improvements:
- Core: Minor code optimizations
Miner updates:
- BzMiner-v21.3.0
- ZealotEnemy-v2.6.2 (removed - would only work with Nvidia drivers older than 445.*)
Changelog UG-Miner 6.2.12 2024/06/26
====================================
Fixes:
- TeamBlackMiner-v2.25: Invalid command line for dual mining with EvrProgPow
- Various miners: Not creating all possible miner objects (no available devices enumerated)
Improvements:
- Core: Minor code optimizations
Changelog UG-Miner 6.2.11 2024/06/23
====================================
Enhancements:
- Core / Includes.psm1: 'Get-Device' Ignore devices with negative PCIbus
Fixes:
- AutoUpdater: Do not add 'Debug' to configuration items 'LogToFile' & 'LogToScreen' if not set in current config
- Legacy GUI: Not saving windows size and position (regression from 6.2.9)
- ZergPool balances tracker not working
Improvements:
- Core: Minor code optimizations
- Core: Faster watchdog processing, only one watchdog reason per pool or miner
Miner updates:
- RplantCpu-v5.0.40
Changelog UG-Miner 6.2.10 2024/06/20
====================================
Fixes:
- Core: Fix compatibility with WindowsTerminal
- Core: Miner would get suspended even when it succeeded benchmarking on the 3rd attempt
- Core: '$MinerInstancePerDeviceModel' not detected on fresh config
- Core / Includes.psm1: 'Get-DAGdata' &' Update-DAGdata' add support for StakeCube coin (SCC) DAG calculation
- Miners: Change algorithm for Blakecoin to Blake2s
- RrkzCpu-v4.2: Disable mining using an SSL pool connection (not supported by miner)
- Wildrig-v0.40.5: Invalid device selection in mixed GPU scenarios
Miner updates:
- MiniZ-v2.4d
- SRBMinerMulti-v2.5.7
Changelog UG-Miner 6.2.9 2024/06/13
===================================
Enhancements:
- API: Add '/pools/expired' data
- Miners: Comment out obsolete code for better speed
Fixes:
- Core: Do not count dry run miner launches as miner activation
- TTMiner-v2024.2.0: Incorrect command line (double -p)
- Web GUI: Right mouse button context actions for miners broken
Improvements:
- Core: Minor code optimizations when reading miner objects
Miner changes:
- lolMiner-v1.88
- MeowPowMiner-v2.0.0
- XmRig-v6.21.3.15
Changelog UG-Miner 6.2.8 2024/06/08
===================================
Fixes:
- Core / Includes.psm1: Restarting core loop when internet connection is lost
- Core / Includes.psm1: Not stopping running miners when exiting UG-Miner
Improvements:
- Core: Suspend balances tracker und brains when internet connection is lost
Miner changes:
- BzMiner-v21.2.0
- JayddeeCpu-v24.3
- OneZeroMiner-v1.3.4
- Rigel-v1.17.4
- SRBMinerMulti-v2.5.6
- TeamBlackMiner-v2.25
- TeamRedMiner-v0.10.21
- TTMiner-v2024.2.0
Changelog UG-Miner 6.2.7 2024/04/18
===================================
Fixes:
- Core: Watchdog timeout message incorrect (regression from 6.2.5)
Improvements:
- Core: Minor code optimizations
Miner changes:
- lolMiner-v1.87
- TeamBlackMiner-v2.23
- TeamRedMiner-v0.10.20
Changelog UG-Miner 6.2.6 2024/04/14
===================================
Enhancements:
- Core: Optimize code for faster miners object generation
- Core: Unhide console window when '$ShowConfig' is changing to '$true'
- Legacy GUI: Add context menu item 'Enable' for miners
- Web GUI: Add button 'Enable' for miners
Fixes:
- Core: Power usage meassuring not ending when HWiNFO was not available
- Core: Includes.psm1 / Get-Rate did not retrieve exchange rates for all guaranteed payout currencies
- Legacy GUI: 'All miners' table not listing all miners
Miner updates:
- BzMiner-v21.1.1
Changelog UG-Miner 6.2.5 2024/04/07
===================================
Fixes:
- Core: Miners remain in status 'Unavailable' in some scenarions
Improvements:
- Core: Improve watchdog filter for miners & pools
Miner updates:
- BzMiner-v21.0.3
- NanoMiner-v3.9.1
- SRBMinerMulti-v2.5.2
- TeamRedMiner-v0.10.19
Changelog UG-Miner 6.2.4 2024/04/03
===================================
Changes:
- Add algorithm 'HeavyHashKaspa' to list of unprofitable algorithms. Algorithm can be mined with ASICs
- Web GUI: Display a warning when selecting MiningPoolHub. Pool is not longer trustworthy, use at your own risk.
Fixes:
- ZergPool brain: Invalid plus price calculation
Miner changes:
- SRBMinerMulti-v2.5.1
- TeamBlackMiner-v2.22
Changelog UG-Miner 6.2.3 2024/04/02
===================================
Enhancements:
- Support for Fishhash algorithm (Iron coin)
- Core: Support algorithm variant in algorithm selection, e.g. '-Ethash(6Gib)'
- Web GUI: Minor speed improvements
Fixes:
- Core: Miners not getting stopped after benchmarking in some scenarios
- Core: Use all collected samples when storing hashrate & power usage data
Improvements:
- Core: Faster check if miner binaries exist on disk
Miner changes:
- lolMiner-v1.86
- NanoMiner-v3.9.0
- SRBMinerMulti-v2.5.0
Changelog UG-Miner 6.2.2 2024/03/28
====================================
Fixes:
- APIServer: '/functions/stat/disable' removed stat file
- ZergPoolCoins: Calculated earnings 1000x too high
Miner Updates:
- Rigel-v1.15.1
- TTMiner-v2024.1.8
Changelog UG-Miner 6.2.1 2024/03/24
====================================
Enhancements:
- Added configuration item 'ShowShares'
- Core: Minor code optimizations
Fixes:
- Core: Active miner not getting stopped when pool is no longer available
- Core: Not benchmarking running miner (regression from 6.2.0)
Improvements:
- Core: Make stopping miners faster (clean jobs later)
Miner updates:
- lolMiner-v1.85beta
- Rigel-v1.15.1
- TTMiner-v2024.1.7
Changelog UG-Miner 6.2.0 2024/03/19
====================================
Changes:
- Core: Change miner naming to always include algorithm variant, this requires re-benchmarking all miners
Naming convention:
[Miner base name (e.g. 'BzMiner')]-[Miner version (e.g. 'v20.0.0)]-[Device(s) (e.g. '1xGTX1660SUPER6G')]-[Algorithm variant(s) joined by '&', (eg. 'Autolykos2(4GiB)&HeavyHashKaspa')]
E.g.: BzMiner-v20.0.0-1xGTX1660SUPER6GB-Autolykos2(4GiB)&HeavyHashKaspa
Enhancements:
- Core: Added support for algoritm 'MeowPow' (MeowCoin)
- Core: Speed up benchmark & power consumption measurement. End cycle as soon as one miner has collected enough samples.
Fixes:
- Core / Includes.psm1: Running miners not shut down when closing main window
- Brain 'ProHashing': Invalid currency 'Syncroot'
Improvements:
- Miners: Optimize core for faster processing
Miner updates
- SRBMinerMulti-v2.4.9
- TeamBlackMiner-v2.21
- TTMiner-v2024.1.6
Changelog UG-Miner 6.1.15 2024/03/16
====================================
Fixes:
- Core / Includes.psm1: Error when deselecting pool with brain (regression from 6.1.14)
- Core / Includes.psm1: TotalMiningDuration empty (regression from 6.1.10)
- Legacy GUI: Earnings chart corrupt (regression from 6.1.14)
Improvements:
- Minor code optimizations (Core & Miners)
Miner updates:
- CpuMinerAurum-v3.23.1 (new)
- GMiner-v3.44
- MiniZ-v2.3c
- Rigel-v1.15.0
- SRBMinerMulti-v2.4.8
Changelog UG-Miner 6.1.14 2024/03/06
====================================
Fixes:
- Includes.psm1: Mitigate memory leak with runspace handling (regression from 6.1.13)
- Legacy GUI: ToolTips broken on some controls
Improvements:
- UG-Miner.ps1: Remove obsolete code; improve performance
Changelog UG-Miner 6.1.13 2024/02/28
====================================
Changes:
- Rework idle detection & start / pause / stop mechanism for faster response
Miner changes:
- TeamBlackMiner-v2.20
Changelog UG-Miner 6.1.12 2024/02/25
====================================
Improvements:
- Minor code optimizations
- Legacy- & web GUI: Improve button handling and status updates
Miner updates:
- TeamBlackMiner-v2.19
Changelog UG-Miner 6.1.11 2024/02/20
====================================
Miner updates:
- BzMiner-v20.0.0
- TTMiner-v2024.1.3
Changelog UG-Miner 6.1.10 2024/02/15
====================================
Brains:
- ProHashing: Optimize code
- Reduce pool timeout wait time
- When debug output is enabled print previous loop time
Fixes:
- Core: Do not set reason '0 H/s Stat file' until benchmarked
Miner changes:
- lolMiner-v1.84
- TeamBlackMiner-v2.18
- TeamRedMiner-v0.10.18
Pool changes:
- HiveOn, MiningPoolHub & NiceHash: Reduce pool timeout wait time
Changelog UG-Miner 6.1.9 2024/02/11
===================================
Fixes:
- Core: Miner data not available in API data if no available miners
- 'Data/CurrencyAlgorithm.json' incomplete (regression from 6.1.8)
Miner changes:
- OneZeroMer-v1.3.0: Error mining SSL
- TeamRedMiner-v2.4.7: Creating duplicate miner objects
Changelog UG-Miner 6.1.8 2024/02/10
===================================
Changes:
- API: Renamed '/miners/mostprofitable' to 'miner/optimal'
- Legacy & Web GUI: Rename 'Most profitable miners' to 'Optimal miners'
Fixes:
- Core: Miners with secondary 0 hashrate not marked as unavailable
- Main text window: Miner list not sorting optimal/best miners at the top
Improvements:
- Minor code optimizations
Miner updates:
- BzMiner-v19.3.1
- OneZeroMiner-v1.3.0
- SRBMinerMulti-v2.4.7
Changelog UG-Miner 6.1.7 2024/02/08
===================================
Enhancements:
- Legacy GUI: Show message box before closing legacy GUI
Fixes:
- Legacy GUI: 'Active miners' & 'Miners' tables: Context menu options broken (regression from 6.0.1)
- Legacy GUI: Update status when loading legacy GUI
- TeamBlackMiner-v2-17: Error invalid parameter 'System.Collections.Hashtable [1]' (regression from 6.1.6)
Changelog UG-Miner 6.1.6 2024/02/03
===================================
Fixes:
- UG-Miner.ps1: Preconfigured BTC donation address needs only one default value
Improvements:
- Minor code optimizations
Miner updates:
- GMiner-3.43: Support more dual algorithm combinations
- OneZeroMiner-v1.2.9
Changelog UG-Miner 6.1.5 2024/02/01
===================================
Miner changes:
- NanoMiner-v3.8.12
- Rigel-v1.14.1
- TeamBlackMiner-v2.17
- TeamRedMiner-v0.10.17
Changelog UG-Miner 6.1.4 2024/01/28
===================================
Enhancements:
- Support for EthashSHA256 algorithm (Abelian [ABEL])
Fixes:
- Core: '$MinCycle' not enforced for dual algorithm miners
- UG-Miner.ps1: Fix typo
- UG-Miner.ps1: Not reverting UIstyle to 'normal' when benchmarking / measuring powerusage is complete and $Config.UIstyle -eq $true
- Brains 'ZergPool': Not removing pool objects when pool variant changes from/to *Coins
Miner changes:
- Rigel-v1.14.1
Changelog UG-Miner 6.1.3 2024/01/26
===================================
Fixes:
- APIServer: Enable/Disable devices not updating device status colors in Web GUI.
- BalancesTracker.ps1: DailyEarnings broken (regression from 6.1.1)
- Includes.psm1/Write-Config: Do not remove 'PoolsConfig' property from $Config
Improvements:
- Minor code optimizations
Miner updates:
- BzMiner-v19.3.0
- NanoMiner-v3.8.11
- SRBMinerMulti-v2.4.6
Pool & Brain changes:
- Reset price history if PlusPrice is not within +/- 1000% of LastPrice
- ZPool: Prefer currencies that can be converted
Changelog UG-Miner 6.1.2 2024/01/20
===================================
Fixes:
- Core / Includes.psm1: Get-Stat not setting 'Name' property (regression from 6.1.1)
- No profitable miners found if only one miner is available
Improvements:
- Brains: Reset history when stat gets reset
Miner updates:
- BzMiner-v19.2.3
- FrkHashMiner-v1.3.14 (new)
- NanoMiner-v3.8.10
- Rigel-v1.13.2
Changelog UG-Miner 6.1.1 2024/01/17
===================================
Changes:
- Core: Minor code optimizations
- Core: Remove obsolete code
Miner changes:
- Rigel-v1.13.1
Changelog UG-Miner 6.1.0 2024/01/15
===================================
Changes:
- Core: Renamed algorithm 'kHeavyHash' to 'HeavyHashKaspa"
- Include.psm1: Remove obsolete code
- README.MD: Fix typo
Fixes:
- Core: Miners not using updated pool data when pool variant changes
- Miners: Algorithm 'KarlsenHash' not working in some combinations or devices
Miner changes:
- NanoMiner-v3.8.9
- Rigel-v1.13.0
Changelog UG-Miner 6.0.4 2024/01/10
===================================
Fixes:
- Includes.psm1 / ConvertTo-Hash: Converted values 1000 to high
- LegacyGUI: Fix errors in line 58: Exception setting "Backcolor": "Cannot convert null to type "System.Drawing.Color"."
- LegacyGUI: Fix errors in line 141: The property 'Enable' cannot be found on this object.
- Main text window: Invalid best miner listed when '$IgnorePowerCost -eq $true'