forked from nemosminer/NemosMiner
-
Notifications
You must be signed in to change notification settings - Fork 5
/
ChangeLog.txt
2690 lines (1995 loc) · 83.6 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
Breaking changes (from 3.8.x.x code base):
- Brain files are not backwards compatible
- Miner files are not backwards compatible
- Pool files are not backwards compatible
- PowerShell 7.x is required, older PowerShell versions are not supported
- Balances & Earnings files from versions older than 3.9.9.18 are not compatible, new files will be created instead
If you are coming from 3.8.x.x it is highly recommended that you install NemosMiner 5.x.x.x to a new directory
Known issues:
- Balance Tracker / Earnings Graph: Date change take does not respect local time zone (accumulated data is calculated in UTC time)
ChangeLog NemosMiner 5.0.2.6 2023/12/28
=======================================
Miner updates:
- BzMiner-v19.0.2
- NanoMiner-v3.8.7
- Rigel-v1.12.0
- Wildrig-v0.40.5
ChangeLog NemosMiner 5.0.2.5 2023/12/26
=======================================
Changes:
- Remove all references to NemosMiner web page and rig monitor (web page is down, cannot contact Nemo)
Enhancements:
- Core: Minor speed optimizations
Fixes:
- Core: Benchmarking / Power consumption measuring miner count incorrect (Regression from 5.0.2.3)
- Core: Error 'Miner data reader exited unexpectedly' (no more thread jobs available)
- Main text window: Fix hash rate formatting of previously run miners
- Legay GUI: Fix hash rate formatting of previously run miners
Miner changes:
- OneZeroMiner-v1.2.8
- TeamRedMiner-v0.10.15
- Wildrig-v0.40.4
ChangeLog NemosMiner 5.0.2.4 2023/12/20
=======================================
Enhancements:
- Pools: Add 'PoolUri' property with link to algorithms web page
Fixes:
- PhoenixMiner: Did not create single algorithm miner objects (Regression from 5.0.0.0)
Miner updates:
- lolMiner-v1.81
- Rigel-v1.11.0
- SRBMinerMulti-v2.4.4
- TeamBlackMiner-v2.16
- Wildrig-v0.40.2a
ChangeLog NemosMiner 5.0.2.3 2023/12/13
=======================================
Fixes:
- Legacy GUI: Running miner list empty (Regression from v5.0.2.1)
Miner changes:
- BzMiner-v19.0.1
- Rigel-v1.10.1
- SRBMinerMulti-v2.4.3
ChangeLog NemosMiner 5.0.2.2 2023/12/11
=======================================
Fixes:
- Core: Keep only best coin per algorithm (Regression from 5.0.2.1)
Miner updates:
- BzMiner-v19.0.0
- GMiner-v3.43
- lolMiner-v1.80a
- TeamBlackMiner-v2.14
- Wildrig-v0.39.9c
ChangeLog NemosMiner 5.0.2.1 2023/12/08
=======================================
Changes:
- Disable Rig Monitor (www.nemosminer.com is down)
Enhancements:
- Brains: Minor speed optimizations
- Core: Minor speed optimizations
- Miners: Minor speed optimizations
- Pools: Minor speed optimizations
- Web GUI / Configuration editor: Add & remove wallets functionality
Fixes:
- Core / Include.psm1: 'Update-ConfigFile' error (Regression from 5.0.1.3)
- Core: failed to remove stats that no longer exist on disk (Regression from 5.0.1.6)
- Core: Did not detect when MinerDataReader job had failed
- XMRig-v6.20.0: Miner did not create miner objects
Miner changes:
- GMiner-v3.42
- JayddeeCpu-v23.15
- lolMiner-v1.79
- NanoMiner-v3.8.6
- Rigel-v1.10.0
- SRBMinerMulti-v2.4.2
- TeamBlackMiner-v2.1
- TTMiner-v2023.4.3
- Wildrig-v0.39.8
Pool changes:
- ZergPool: Added *Coins pool option
ChangeLog NemosMiner 5.0.2.0 2023/11/12
=======================================
Brains:
- Fix warning 'No data received from pools' when all miners failed
Changes:
- Core & Pools: Change pool properties 'Name' -> 'Variant' & 'BaseName' -> 'Name'
- Core: Change evaluation criteria for unreal pool price to use average price of all pools
Enhancements:
- Include.psm1: Minor code optimizations
- Core: Rework unreal pool price detection. Compare prices for pools with same algorithm AND currency
Fixes:
- TTMiner: Created broken miner objects with orrupt miner command line (Regression from v5.0.1.9)
Miner changes:
- JayddeeCpu-v23.7
- lolMiner-v1.77b
- Rigel-v1.9.2
- TeamBlackMiner-v2.08
- Wildrig-v0.38.3
Pool changes:
- HiveOn: Add kHeavyHash to list of supported algorithms
- MiningDutch: Workaround for API data inconsistency (workers & hashrate = 0)
- ZergPool: Create a pool object for each currency
ChangeLog NemosMiner 5.0.1.10 2023/11/06
========================================
Fixes:
- Core / FireIce.api: Not building config files
- Core: Do not save 0 stat files when miner is dry running (Regression from 5.0.1.8)
Miner changes:
- Wildrig-v0.38.1
ChangeLog NemosMiner 5.0.1.9 2023/11/04
=======================================
Fixes:
- Core: Warning 'No data received from pools' when all miners failed
- Web GUI / API: Remove all miners from list when re-benchmarking / power usage / disabling
Miner changes:
- TeamBlackMiner: Workaround for KawPow@ZPool (https://github.com/sp-hash/TeamBlackMiner/issues/404)
- TTMiner-v2023.4.1: Set memory requirement for Ghostrider to 2GiB
ChangeLog NemosMiner 5.0.1.8 2023/11/03
=======================================
Enhancements:
- Web GUI: Enable MinerUri hyperlink to 'BaseName' & 'MinerStatus' columns
Fixes:
- Core: Not saving hashrate & power usage when not benchmarking (Regression from 5.0.1.6)
ChangeLog NemosMiner 5.0.1.7 2023/11/01
=======================================
Enhancements:
- Core: Minor code optimizations
Fixes:
- Core: Use [Math]::Floor for proper [Int] down rounding
- Core / Include.psm1: Get-EpochLength returning incorrect values for some currencies
Miner updates:
- JayddeeCpu-v23.6
- TeamBlackMiner-v2.07
Pool changes:
- HashCryptos: Update guaranteed payout currencies
ChangeLog NemosMiner 5.0.1.6 2023/10/26
=======================================
Changes:
- Delay starting brains until miners have been read
Enhancements:
- Core: Minor code optimizations
Fixes:
- Core: Error 'Collection was modified; enumeration operation may not execute'
Miner changes:
- JayddeeCpu-v23.5
- TeamBlackMiner-v2.06
- Wildrig-v0.37.2
ChangeLog NemosMiner 5.0.1.5 2023/10/22
=======================================
Changes:
- Core: Use miner name instead of device name for Benchmarking / Power usage measuring group naming.
Enhancements:
- Miner definition files: Use arrays instead of PSCustomObjects for better performance
Fixes:
- Core: Not propertly detecting failed miners in some scenarios
- Miners 'BzMiner' & 'WildRig': ExcludeGPUModel filter broken (Regression from v5.0.1.1)
Miner changes:
- Wildrig-v0.37.1
ChangeLog NemosMiner 5.0.1.4 2023/10/19
=======================================
Enhancements:
- Legacy GUI: Optimize 'Switching Log' sort order
Fixes:
- Legacy GUI: Retain 'Switching Log' coloring when re-sorting
Miner changes:
- BzMiner-v17.0.1b1: Disable kHeavyHash@ProHashing as secondary algorithm (https://github.com/bzminer/bzminer/issues/281)
- SRBMinerMulti-v2.3.9
Pool changes:
- HashCryptos: Support TLS port numbers
ChangeLog NemosMiner 5.0.1.3 2023/10/19
=======================================
Changes:
- Core: Removed configuration item 'MinDataSampleAlgoMultiplier'
Enhancements:
- Core: Minor code optimizations
- Web GUI / Pool stat remove / enable / disable: Sort pool list in modal dialog
Fixes:
- Core: Benchmarking & Power measuring miner count too small (Regression from 5.0.1.2)
Miner changes:
- SRBMinerMulti-v2.3.8
- TeamBlackMiner-v2.05
Pool changes:
- HashCryptos: Fix SSL hostname
ChangeLog NemosMiner 5.0.1.2 2023/10/11
=======================================
Changes:
- Core: Replace function calls to 'Start-ThreadJob' with 'Start-Job' (hopefully this reduces memory leaks)
Enhancements:
- Core: Minor code optimizations
- Core: Added Region 'India'
Fixes:
- Core: Benchmarking & Power Measuring miner count too large (Regression from 5.0.0.0)
- Web GUI / API: Incorrect pool data reset list
Miner changes:
- TeamBlackMiner-v2.03
- TTMiner-v2023.4.1: Fix fees
Pool changes:
- MiningDutch: Add region 'India'
ChangeLog NemosMiner 5.0.1.1 2023/10/06
=======================================
Enhancements:
- Core: Minor code optimizations
- Core / Includes.psm1: Optimze functions 'Get-GPUArchitectureAMD' & 'Get-GPUArchitectureNvidia'
- Web GUI / Devices: Use colors for status
Fixes:
- Core: Extend wait time to build DAG if CPU mining
- Core: Error 'Collection was modified; enumeration operation may not execute'
- Miners / JayddeeCpu-v3.23.3: Update download link
- Miners / Raptor3umCpu-v2.0: SSL is not supported
- Miners / Rigel-v1.9.1: Only apply tuning parameter to Pascal GPUs
ChangeLog NemosMiner 5.0.1.0 2023/10/05
=======================================
Changes:
- Core: Added configuration item 'DisableCpuMiningOnBattery'
- Core: Use separate stat files for DAG based algorithms (e.g. Ethash-2GiB, Ethash-3GiB) also for DAG sizes larger than 3GB
- Web GUI: 'All Miners' & 'Unavailable Miners' are now grouped by name, algorithm & pool
Enhancements:
- ZPool: Add currency (zap=[currency]) to password field
Fixes:
- Core: Status message for failed miners empty (e.g. seen in Web dashboard)
- Web GUI: Dashboard / Active miners: href to API data broken
Improvements:
- Core: Extend DAG creation time by 90 seconds when computer is on battery
Miner changes:
- BzMiner-v17.0.1b1
- JayddeeCpu-v3.23.3
- MiniZ-v2.2c: Fix EvrProPow algorithm (regression from 5.0.0.5)
- OneZeroMiner-v1.2.5
- Rigel-v1.9.1
- SRBMinerMulti-v2.3.7
ChangeLog NemosMiner 5.0.0.5 2023/09/26
=======================================
Fixes:
- Main text window: Previously run miner list not shown (Regression from 5.0.0.3)
Miner changes
- HellMiner-v0.59.1
- JayddeeCpu-v3.23.2
- MiniZ-v2.2c
- Rigel-v1.8.1
ChangeLog NemosMiner 5.0.0.4 2023/09/22
=======================================
Enhancements:
- Core: Minor code optimizations
Fixes:
- Main text window: Miner list not shown for 2nd, 3rd... device group (Regression from 5.0.0.3)
- Main text window: Hotkey [v] (Show all available miners) broken
Miner updates
- Rigel-v1.7.3
- TeamBlackMiner-v2.00
ChangeLog NemosMiner 5.0.0.3 2023/09/15
=======================================
Enhancements:
- Optimize miner code for NanoMiner, Rigel & SRBMinerMulti
Fixes:
- Error in file Includes\Include.psm1 line 2071 detected. Restarting core
Miner updates:
- JayddeeCpu-v3.23.1
- TTMiner-v2023.4.1
ChangeLog NemosMiner 5.0.0.2 2023/09/08
=======================================
Enhancements:
- Core: Minor code optimizations, clear miner data when miner is stopped
- Legacy GUI: Make mining summary output multi-line
- Legacy GUI: Sort switching log descending
Fixes:
- Web GUI & Legacy GUI: 'Re-Measure Powerusage' not working (Regression from 5.0.0.0)
Miner updates:
- OneZeroMiner-v1.2.4
- TTMiner-v2023.4.0
ChangeLog NemosMiner 5.0.0.1 2023/09/05
=======================================
Enhancements:
- Core: Do not create multiple miners per algorithm for CPU miners
- Core: Minor code optimizations
Fixes:
- Web GUI: Rig monitor not working (Regression from 5.0.0.0)
ChangeLog NemosMiner 5.0.0.0 2023/09/05
=======================================
Changes:
- Core: Added configuration item 'Currency', moved existing configuration item to 'MainCurrency'
- Core / Include.psm1: Remove properties 'PNP' and 'Reg' from devices (reduce memory footprint)
- Web GUI: Dashboard / Launched miners: Combine 'Miner' & 'Info' columns to 'Status Message' column
Enhancements:
- API Server: Optimize miner queries
- Core: Add miner version to added firewall rules
- Core: Add coin name to miner info
- Core: Minor code optimizations
- Core: New configuration item 'MinerUseBestPoolsOnly'
- Core: Pool data invalid for pools with multiple currencies (e.g. Ethash@MiningPoolHub)
- Core: Rework donation randomizations (older versions did start donation just after midnight)
- Core: Use separate stat files for DAG based algorithms (e.g. Ethash-2GiB, Ethash-3GiB)
- Web GUI / Launched Miners: Show power usage live value
- Web GUI: Fix 'web page is not responding' error if there are many records in a table
- Web GUI: Launched Miners & Devices: Renamed column 'Status Message' to 'Status Info'
Fixes:
- BzMiner miner APIs: Invalid power usage reported when more one GPU is installed
- 'CcminerKlausT-v8.25' not creating miner objects
- 'CcminerVerusGpu-v3.8.3' Intensity not reduced for low mem GPUs
- 'ZergPool' brain not updating algorithm & coin name database
Miner updates:
- BzMiner-v16.0.5
- EthMiner-v0.19.0.18: Invalid download link
- GMiner-v2.75: Update download link
- JayddeeCpu-v3.23.0
- PhoenixMiner-v6.2c: Fix intensities for dual algorithm mining
- Rigel-v1.7.2
- RplantCpu-v5.0.34
- SRBMinerMulti-v2.3.5
- TeamBlackMiner-v1.99
- TTMiner-v2023.3.0: Add support for SSL/TLS connections
ChangeLog NemosMiner 4.3.6.2 2023/08/25
=======================================
Enhancements:
API Server: Optimize miner queries
Core: Miner code optimizations
Core: Rework donation randomizations (older versions did start donation just after midnight)
Fixes:
'CcminerKlausT-v8.25' not creating miner objects
'ZergPool' brain not updating algorithm & coin name database
Miner changes:
BzMiner-v16.0.2
Rigel-v1.7.1
SRBMinerMulti-v2.3.5
TeamBlackMiner-v1.96
ChangeLog NemosMiner 4.3.6.1 2023/08/18
=======================================
Enhancements:
- Legacy GUI: Refresh data when 'F5' key is pressed
- WebGUI: Show cached balances data until first balance tracker interval is over
Fixes:
- BalancesTracker not getting payout threshold information for some pools
- Core: Not writing stat data after 4 benchmark Intervals
Improvements:
- Core: Minor code optimizations
- Core: Mitigate memory leak
- Core: New configuration item 'ShowConsole'
Miner changes:
- BzMiner-v16.0.0
- CcminerKlausT-v8.25: Remove broken 'Whirlpool' algorithm
- CcminerKlausT-v8.26x2: Remove broken 'Whirlpool' algorithm
- NanoMiner-v3.8.5
- PhoenixMiner-v6.2c: Only works up to DAG epoch 602 (302 for EtcHash)
- Rigel-v1.7.0
- SRBMinerMulti-v2.3.4
Pool changes:
- ZergPool: Disable TLS port for all DAG miners (TLS @ pool is broken)
ChangeLog NemosMiner 4.3.6.0 2023/07/31
=======================================
Changes:
- API: Change '/balancedata' to '/balancesdata'
- Core & Miners: Remove all references to EthashLowMem
- Miner APIs: Read power usage from miner API where available (not all miners and GPUs allow this)
Fixes:
- API: '/miners' returning corrupt compressed JSON
- Core: Mitigate memory leak
- Include.psm1 / Update-DAGData: DAG size for FiroPowSCC was 0
- Legacy GUI / Earnings graph: Sums were based on rounded values
- Miners: Invalid miner name when '$MinerInstancePerDeviceModel -eq false' (Regression from v4.3.3.0)
- NosuchCpu-v3.8.8.1 miner: Remove SSL (not supported)
- Web GUI: 'Re-Measure Power Usage' buttons removing hashrate stat instead of powerusage
Improvements:
- Core: Minor code optimizations
- Core: Minor speed optimizations (use hashtables where applicable)
- Core: Always update DAG data on script start
- Include.psm1: Speed up function 'Get-CurrencyFromAlgorithm'
- Include.psm1: Speed up function 'Get-EquihashCoinPers'
- Include.psm1: Speed up function 'Get-Median'
- Include.psm1: Speed up function 'Get-Stat'
- Miners: Better detection of CUDA devices
- Pools (using Brains): Better detection of active pools
Miner changes:
- BzMiner-v15.4.3
- lolMiner-v1.76a
- Miniz-v2.1c
- OneZeroMiner-v1.2.2
- Rigel-v1.6.4
- SRBMinerMulti-v2.3.1
- TeamBlackMiner-v1.95 (Keep TeamBlackMiner-v1.94 for KawPow with Nvidia)
- TTMiner-v2023.3.0
ChangeLog NemosMiner 4.3.5.1 2023/07/08
=======================================
Fixes:
- Core: Miner benchmark not ending when miner crashed in warmup phase after first data sample
Improvements:
- Core: Only check network status when no new pools or a miner failed
- Web GUI / Pools: Make 'Protocol' a dropdown list
- Web GUI: Update 'FontAwesome' to version 6.40
- Web GUI: Update 'jQuery' to version 3.70
Miner changes:
- BzMiner-v15.4.1
- GMiner-v3.41
- NanoMiner-v3.8.4
- Rigel-v1.6.2
- RplantCpu-v5.0.33a: Algorithm 'APEPEPoW' only (most other algos are broken: https://github.com/rplant8/cpuminer-opt-rplant/issues/45)
- TeamRedMiner-v0.10.14
- Wildrig-v0.36.10
- XmRig-v6.20.0
Pool changes:
- Remove reason 'Plus price -eq 0'
ChangeLog NemosMiner 4.3.5.0 2023/07/01
========================================
Improvements:
- Core: minor code optimizations
- Include.psm1 / Get-Rate: Do not query exchange rates on each interval if no exchange is available for some currencies
Fixes:
- Include.psm1 / Update-ConfigFile: Enforce valid values for $Region
Miner updates:
- BzMiner-v15.4.0 (New)
- Rigel-v1.6.0
- XmRig-v6.19.3
Pool changes:
- NiceHash: Improve compatibility with some coins (only use currency & coin name if there is only one coin available per algorithm)
ChangeLog NemosMiner 4.3.4.12 2023/06/27
========================================
Changes:
- Core: minor code optimizations
Miner updates:
- CcminerMemeHash-v2.5.5.9: Set dev fee to 4%
- JayddeeCpu-v3.22.3
- KawpowMiner-v1.2.4: Exclude pool 'MiningDutch'
- SRBMinerMulti-v2.3.0
- TTMiner-v2023.2.2
ChangeLog NemosMiner 4.3.4.11 2023/06/25
========================================
Changes:
- Core: minor code optimizations
- Include.psm1 / Get-Rate: Add message if API quota is exceeded
Miner updates:
- lolMiner-v1.76: Add intensities for dual mining
- Rigel-v1.5.3
- TTMiner-v2023.2.0
ChangeLog NemosMiner 4.3.4.10 2023/06/11
========================================
Miner updates:
- NanoMiner-v3.8.3 (Enabled DAG & VerusHash algorithms)
- Rigel-v1.5.2
- SRBMinerMulti-v2.2.9
- TeamRedMiner-v0.10.13
ChangeLog NemosMiner 4.3.4.9 2023/05/29
=======================================
Enhancements:
- Core: Add regions 'Russia' & 'Singapore'
Fixes:
- BalancesTracker: PoolsLastEarnings not updated
- Miners: Hyperlinks to miner web GUIs not shown
- SRB Miner API: Workaround for https://github.com/doktor83/SRBMiner-Multi/issues/283
Miner changes:
- CcminerMemeHash-v2.5.5.9
- CcminerVerusCpu-v3.8.3
- CcminerVerusGpu-v3.8.3
- NanoMiner-v3.8.1: Disabled VerusHash algorithm (https://github.com/nanopool/nanominer/issues/389)
- NanoMiner-v3.8.1: Disabled DAG algorithms (https://github.com/nanopool/nanominer/issues/387)
- NheqMiner-v0.8.2.ps1 (removed, mainnet has changed, miner is no longer compatible)
- Rigel-v1.4.8
- SRBMinerMulti-v2.2.8
Pool changes:
- MiningDutch: Add stratums for Hongkong, Russia & Singapore, remove algorithm from stratum url
ChangeLog NemosMiner 4.3.4.8 2023/05/21
=======================================
Changes:
- Core: Renamed miner property 'Cycle' to 'ContinousCycle'
Enhancements
- Core: Only print one error message per failed miner
- Web GUI: Add more tooltips
Fixes:
- Core: If a miner does not send data on time do not stop collecting benchmark data for other miners
- Core: Fixed a 'Failed to add miner' condition
- Legacy GUI: Configuration item 'ShowPool' not showing pool column
- Web GUI: Keep currency in column header when reordering column order
Miner changes:
- NanoMiner-v3.8.1
- SRBMinerMulti-v2.2.7
Pool updates:
- ZergPool: Removed workaround for pool sending changing DAG information when mining with option 2 (issue @ pool is fixed)
ChangeLog NemosMiner 4.3.4.7 2023/05/13
=======================================
Enhancements:
- Core: Mitigate memory leak
- Core: Read miner data after getting pool data; this will allow for more stable hash stats
Miner updates:
- GMiner-v3.40
- NanoMiner-v3.8
- Rigel-v1.4.7
- SRBMinerMulti-v2.2.6
Pool changes
- HashCryptos: Use 'stratum1.hashcryptos.com' for all algorithms
- ProHashing: Add region 'ASIA'
- ZergPool: Workaround for pool sending changing DAG information when mining with option 2 (static coin)
ChangeLog NemosMiner 4.3.4.6 2023/05/03
=======================================
Changes:
- Core: Use Price_Bias (instead of StablePrice) for best pool selection
Enhancements:
- Core: Faster code for best pool selection
Fixes:
- Core: $MinerInstancePerDeviceModel -eq $false not working (Regression from 4.3.3.0)
ChangeLog NemosMiner 4.3.4.5 2023/04/30
=======================================
Fixes:
- Core & Miners: AMD GPU architecture CGN[1234] renamed to GCN[1234]
- Core: Limit benchmarking to max. $WatchdogCount+1 attempts
- Pool data: Update pool when currency changes
Miner updates:
- GMiner-v3.37
- Rigel-v1.4.5
- SRBMinerMulti-v2.2.5
- TeamBlackMiner-v1.94: Remove workaround for https://github.com/sp-hash/TeamBlackMiner/issues/369 (issue is fixed in miner)
- TeamRedMiner-v0.10.12
ChangeLog NemosMiner 4.3.4.4 2023/04/26
=======================================
Changes:
- Core / Include.psm1: Remove redundant code
Enhancements:
- Brains: Workaround for some div/0 errors
- Core / Include.psm1: Optimize function 'Add-CoinName'
- Legacy GUI: Add balance currency tool tips
Miner updates:
- lolMiner-v1.75
- TeamBlackMiner-v1.94: Adjust memory limits
ChangeLog NemosMiner 4.3.4.3 2023/04/23
=======================================
Changes:
- Core: Renamed algorithm 'Blake3Ironfish' to 'IronFish'
Enhancements:
- Brains: Add error logging
- Core / Include.psm1: Optimize Get-Rate (less disk reads)
- Legacy & Web GUI / Pool data: Show Price in mBTC when $UsemBIT -eq $true
- Legacy GUI: Optimize table draw speed
- Web GUI: Add 'Primary Pool (Variant)' & 'Secondary Pool (Variant)' columns to miner tables (hidden by default)
Fixes:
- BalanceTracker not updating PoolsLastEarnings data (regression from 4.3.0.0)
- Brains: Convert null values to 0
- Brains: Convert numeric string values to numbers
- Brains: Invalid Plus price calculation (Regression from v4.3.4.1)
- Core: Core crash when receiving $null from DataReaderJob
Miner updates:
- GMiner-v3.34
- Rigel-v1.4.4
- TeamRedMiner-v0.10.11
ChangeLog NemosMiner 4.3.4.2 2023/04/18
=======================================
Fixes:
- BalancesTracker: Crash when using HashCrypto or MiningDutch pools
- Brains / ZergPool: Change sort order to select best paying currency
- Brains / ZergPool: Default pool fee not set (Regression from 4.3.4.1)
- Brains: Invalid Plus price calculation (Regression from v4.3.4.1)
- Core / Include.psm1: Add-CoinName not updating data files
Miner updates:
- GMiner-v3.33
- Rigel-v1.4.1
ChangeLog NemosMiner 4.3.4.1 2023/04/16
=======================================
Enhancements:
- Brains: Speed up pool data collection
- Brains / ZPool: Auto-add CoinName to CoinName.json
- Pools / MiningPoolHubCoins: Make pool unavaliable if 0 hashrate
Fixes:
- Core: Invalid / double Currency & CoinName assigned to some pools
- Miner APIs: TeamBlackMiner API broken (Regression from 4.3.2.1)
- SRBMinerMulti-v2.2.4: Could not generate miner objects for CryptoHashing pool
Pools:
- MiningPoolHub: Removed MiningPoolHubCoin variant, renamed MiningPoolHubCoins to MiningPoolHub
- MiningPoolHub: Added MiningPoolHubPlus variant
Miner updates:
- GMiner-v3.32
- lolMiner-v1.73
- Rigel-v1.3.12
- TeamBlackMiner-v1.94
ChangeLog NemosMiner 4.3.4.0 2023/04/08
=======================================
Changes:
- Core: Set '$ErrorActionPreference = "Continue"' to show suppressed error messages
- Core: Replace Runspace pool with separate runspaces for brains
Enhancements:
- Pools: Make pools unavailable instead of blocking them when loading pool data
Fixes:
- Core: Dump when miner crashed immediately after launch
- Core: Fix Equihash 1445 pers values (for some miners, e.g. miniZ, they are case sensitive)
- Core: Fix cosmetic errors (error messages were hidden beacuse of '$ErrorActionPreference = "SilentlyContinue"')
Miner updates:
- JayddeeCpu-v3.22.2
- MiniZ-v2.0c5
ChangeLog NemosMiner 4.3.3.2 2023/04/05
=======================================
Enhancements:
- Legacy GUI: Add more tooltips
- Legacy GUI: Optimize SwitchingLog table titles and colums widths
Fixes:
- Core: CPU detected as INTEL device if $MinerInstancePerDeviceModel -eq $false (Regression from 4.3.3.0)
- Legacy GUI: Fix window size save/restore and element arrangement
- Legacy GUI: Pools Table 'BTC/GH/Day (Biased)' value was 1024^3 to small
Miner updates:
- Rigel-v1.3.11
ChangeLog NemosMiner 4.3.3.1 2023/04/02
=======================================
Changes:
- Legacy GUI: Enhance colour contrast in earnings graph
- Revert 'Merge Config & PoolsConfig file' (introduced in revoked 4.3.3.0)
Enhancements:
- BalancesTracker: Keep Earnings data for 365 days
- Core: Minor performance optimizations
- Legacy GUI: Improve table scrolling speed when $UseColorForMinerStatus -eq $true
Fixes:
- Core: Not updating miner names when $MinerInstancePerDeviceModel changing from $false
- Web GUI / Balances Data: 'Remove Entry' button not updating balances data file
Miner updates:
- GMiner-v3.31
- JayddeeCpu-v3.22.1
- lolMiner-v1.72
- Rigel-v1.3.10
- SRBMinerMulti-v2.2.4
ChangeLog NemosMiner 4.3.3.0 2023/03/27 (revoked)
=================================================
Changes:
- Core: Merge Config & PoolsConfig file
Enhancements:
- BalancesTracker: Keep Earnings data for 365 days
- Core: Minor performance optimizations
Fixes:
- Core: Not updating miner names when $MinerInstancePerDeviceModel changing from $false
- Web GUI / Balances Data: 'Remove Entry' button not updating balances data file
Miner updates:
- GMiner-v3.31
- JayddeeCpu-v3.22.1
- lolMiner-v1.72
- Rigel-v1.3.10
ChangeLog NemosMiner 4.3.2.1 2023/03/22
=======================================
Changes:
- TeamBlackMiner API: Make v1.40 default
Enhancements:
- Core: Minor performance optimizations
Fixes:
- Legacy GUI: GUI objects misaligned in some scenarios
Miner updates
- GMiner-v3.30
- SRBMinerMulti-v2.2.3
ChangeLog NemosMiner 4.3.2.0 2023/03/20
=======================================
Fixes:
- Core: CUDAVersion property not set on Nvidia devices
Enhancements:
- Core: Minor performance optimizations
- Legacy GUI: Make it DPI aware and remove font fuzzyness
- Legacy GUI: Improve display speed
Miner updates:
- JayddeeCpu-v3.21.5
- lolMiner-v1.71
- EvrProgPow-v1p3p0 (new)
- SRBMinerMulti-v2.2.2
ChangeLog NemosMiner 4.3.1.3 2023/03/12
=======================================
Enhancements:
- Core: MinDataSampleAlgoMultiplier for algorithm 'DynexSolve' set to 3
- Core: Minor code optimizations
Miner updates:
- lolMiner-v1.70
- MiniZ-v2.0c4
- Rigel-v1.3.9
- SRBMinerMulti-v2.2.0
ChangeLog NemosMiner 4.3.1.2 2023/03/06
=======================================
Enhancements:
- Web GUI: Moved 'Balances' to 'Earnings and Balances' page
- Web GUI: Moved 'System log' to 'System Status' page
- Web GUI / System Status: Optimize 'Status' column text
Fixes:
- BalanceTracker 'MiningPoolHub': Reduce number of API calls (Regression from 4.2.3.0)
- Core: '<Ctrl><Alt>P' no longer triggers a 'Core cycle is stuck - restarting...' message
- Web GUI / Devices: Could not enable disabled devices (button not getting enabled)
Miner updates:
- JayddeeCpu-v3.21.2
- lolMiner-v1.69
ChangeLog NemosMiner 4.3.1.1 2023/03/04
=======================================
Enhancements:
- BalanceTracker for 'MiningDutch' gets available coins from pool API
- Web GUI: Update fontawesome to version 6.3.0
- Web GUI: Optimize table coloring
Fixes:
- Legacy GUI: Earnings / Payout Threshold calculation wrong for some pools
- Web GUI: Support for variable BTC address length from 26 to 35 characters (https://github.com/Minerx117/NemosMiner/issues/95)
Miner updates:
- Rigel-v1.3.8
ChangeLog NemosMiner 4.3.1.0 2023/03/02
=======================================
Enhancements:
- API: Adjusted miner sort order (best miners are always first, then sort by device names)
- Core: Display modal message box on terminating errors
- Legacy GUI: Update tables when mining status changes
- Legacy GUI: Use colors for tables (same as in Web GUI)
- Legacy GUI: Keep table colors after sorting
Fixes:
- 'MiningDutch' BalanceTracker blocking all other balances if pool is down
Miner updates:
- NanoMiner-v3.7.7
ChangeLog NemosMiner 4.3.0.2 2023/02/25
=======================================
Enhancements:
- Core: Improved $MinerWarmupTimes handling for more accurate hash rate reading
- Core: Minor code optimizations
- Core: MinDataSampleAlgoMultiplier for algorithm 'Mike' set to 3
- Core: Re-read static data files whenever mining status changes (start / pause / stop)
- Pools: List pools as unavailable if no configured wallet or user name
Fixes:
- Core: Incorrect hash rate stored if miner failed when re-benchmarking
- Core / Include.psm1: Get-SortedObject not sorting recursively
- GMiner-v3.28: Incorrect miner name for dual algorithm mode
Miner updates:
- CcminerSha3d-v1 (Removed, algorithm is ASIC mineable)
- lolMiner-v1.68
- MiniZ-v2.0c3
- Rigel-v1.3.7
- TeamBlackMiner-v1.91
- TeamRedMiner-v0.10.9
- TTMiner-v2023.1.7
Pool changes: