forked from gtalusan/reolink-fw-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
firmwares_live.json
4827 lines (4827 loc) · 214 KB
/
firmwares_live.json
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
[
{
"version": "v3.0.0.1388_22100600",
"filename": "Reolink_Duo_PoE_221006",
"updated_at": "2022-10-11 10:09:51+08:00",
"note": "Recommendation for upgrade: Because there are many updates in this version, it is recommended to check the Reset Configuration option when upgrading.",
"firmware_id": 314,
"model": "Reolink Duo PoE",
"hw_ver": "IPC_528B174MP",
"changelog": [
"1. Update the web version",
"2. Optimize the AI detection function",
"a. Upgrade AI model to support pets",
"b. Improve the recognition accuracy of people, cars, and pets, and optimize static AI false positives",
"c. Increase the AI delay alarm function, which can reduce the dynamic misjudgment caused by flying insects, rain and other reasons by adjusting the delay gear",
"d. Optimize the problem of false alarms caused by day and night switching and lighting changes, and solve the problem that white lights are repeatedly turned on and off in some scenes",
"3. Optimize night vision images",
"4. Increase the AI detection type of intelligent white light",
"5. Add gop setting function",
"6. Add night vision frame drop function",
"7. Optimized related network protocols and some known bugs"
],
"display_time": "2022-10-11 00:00:00+08:00",
"sha256_pak": "d80c89fe78011a7eca6e6b4f98c4c4714ce91959a3cad4aef83217b0e7397817",
"source": "live"
},
{
"version": "v3.0.0.1388_22100601",
"filename": "Reolink_Duo_WiFi_221006",
"updated_at": "2022-10-11 10:09:21+08:00",
"note": "Recommendation for upgrade: Because there are many updates in this version, it is recommended to check the Reset Configuration option when upgrading.",
"firmware_id": 315,
"model": "Reolink Duo WiFi",
"hw_ver": "IPC_528B174MP",
"changelog": [
"1. Update the web version",
"2. Optimize the AI detection function",
"a. Upgrade AI model to support pets",
"b. Improve the recognition accuracy of people, cars, and pets, and optimize static AI false positives",
"c. Increase the AI delay alarm function, which can reduce the dynamic misjudgment caused by flying insects, rain and other reasons by adjusting the delay gear",
"d. Optimize the problem of false alarms caused by day and night switching and lighting changes, and solve the problem that white lights are repeatedly turned on and off in some scenes",
"3. Optimize night vision images",
"4. Increase the AI detection type of intelligent white light",
"5. Add gop setting function",
"6. Add night vision frame drop function",
"7. Optimized related network protocols and some known bugs"
],
"display_time": "2022-10-11 00:00:00+08:00",
"sha256_pak": "81151fb4aeb754fc1afc88a78528f811f33a33dda5aa5990e53b26d76162c23e",
"source": "live"
},
{
"version": "v3.0.0.1337_22091901",
"filename": "Reolink_Duo_2_WiFi_220919",
"updated_at": "2023-01-17 15:55:04+08:00",
"note": "Note: This firmware will not work with your Reolink Duo Floodlight PoE or Reolink Duo Floodlight WiFi, if you need new firmware of Reolink Duo Floodlight PoE or Reolink Duo Floodlight WiFi, please contact Reolink support to help.",
"firmware_id": 313,
"model": "Reolink Duo 2 WiFi",
"hw_ver": "IPC_529B17B8MP",
"changelog": [
"1. Solved the problem of AI probabilistic failure under night vision",
"2. Solved the problem of failure to capture picture by alert email in complex scenarios",
"3. Optimized the search strategy for playback",
"4. Optimized the MD sensitivity under night vision",
"5. Solved the problem that the number of WiFi signals cannot display on Reolink Client when the camera is connected by WiFi",
"6. Solved the problem that there is no pet mark in playback after enabling pet detection",
"7. Optimized the lighting speed of the spotlight under night vision"
],
"display_time": "2022-09-22 00:00:00+08:00",
"sha256_pak": "5e94157f68640939d580db375c720a0ef7ec7e791a0eb6a846d95c945cc90f85",
"source": "live"
},
{
"version": "v3.0.0.1337_22091900",
"filename": "Reolink_Duo_2_POE_220919",
"updated_at": "2023-01-17 15:55:36+08:00",
"note": "Note: This firmware will not work with your Reolink Duo Floodlight PoE or Reolink Duo Floodlight WiFi, if you need new firmware of Reolink Duo Floodlight PoE or Reolink Duo Floodlight WiFi, please contact Reolink support to help.",
"firmware_id": 312,
"model": "Reolink Duo 2 POE",
"hw_ver": "IPC_529B17B8MP",
"changelog": [
"1. Solved the problem of AI probabilistic failure under night vision",
"2. Solved the problem of failure to capture picture by alert email in complex scenarios",
"3. Optimized the search strategy for playback",
"4. Optimized the MD sensitivity under night vision",
"5. Solved the problem that the number of WiFi signals cannot display on Reolink Client when the camera is connected by WiFi",
"6. Solved the problem that there is no pet mark in playback after enabling pet detection",
"7. Optimized the lighting speed of the spotlight under night vision"
],
"display_time": "2022-09-22 00:00:00+08:00",
"sha256_pak": "ae22d6821124c8e0181ea0fbcc2f4a02a620443c12e2ac11dd29da7046ec10fd",
"source": "live"
},
{
"version": "v3.0.0.205_22091310",
"filename": "RLN36_205_22091310",
"updated_at": "2022-09-14 11:44:23+08:00",
"note": "Recommendation for upgrade: Because there are many updates in this version, it is recommended to check the Reset Configuration option when upgrading.",
"firmware_id": 311,
"model": "RLN36",
"hw_ver": "N5MB01",
"changelog": [
"1.Optimize the interface and interaction.",
"2.Add the function of keeping video recordings for the latest 2days, 3days, 7 days, 14 days and 30 days.",
"3.Adapt to more new models, such as: Duo series, Duo2 series, TrackMix series, etc.",
"4.Update web client.",
"5.Added person, vehicle and pet options for Spotlight Auto Night mode.",
"6.Added configuration options of Fixed Frame Rate and Auto Frame Rate.",
"7.Update IO Alarm related settings.",
"8.Fix other known bugs."
],
"display_time": "2022-09-14 00:00:00+08:00",
"sha256_pak": "f675d9bb0fb45ae1d463aeb1c06df797cdda3e628fc88450282485df72fd40f8",
"source": "live"
},
{
"version": "v3.0.0.183_21012815",
"filename": "firmware_D500_v300183_21012815",
"updated_at": "2021-01-12 00:00:00+00:00",
"note": "If your cameraD500's hardware version does not begin with IPC_515B8M5M, please wait for the new firmware release.",
"firmware_id": 41,
"model": "D500",
"hw_ver": "IPC_515B8M5M",
"changelog": [
"1. Optimize the effect of the day and night switch.",
"2. Optimize network transmission.",
"3. Optimize the alert caused by the Day and Night switching.",
"4. When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"5. Fixed the bug that IPC failed to reconnect to the NVR after powering off when setting certain time zones.",
"6. Fixed some known bugs."
],
"display_time": "2021-01-12 00:00:00+00:00",
"sha256_pak": "2c95202efcf55af35e97bab10805189cf864b91514b13ee05c161b5dce188f3f",
"source": "live"
},
{
"version": "v3.0.0.183_21012815",
"filename": "firmware_D500_v300183",
"updated_at": "2021-02-02 00:00:00+00:00",
"note": "If your cameraD500's hardware version does not begin with IPC_5158M5M, please wait for the new firmware release.",
"firmware_id": 43,
"model": "D500",
"hw_ver": "IPC_5158M5M",
"changelog": [
"1. Optimize the effect of the day and night switch.",
"2. Optimize network transmission.",
"3. Optimize the alert caused by the Day and Night switching.",
"4. When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"5. Fixed some known bugs."
],
"display_time": "2021-02-02 00:00:00+00:00",
"sha256_pak": "d2c809a33cd0921d2118eee15abd21158e3dafe1b9ead0a11bb28d641ec55c5c",
"source": "live"
},
{
"version": "V3.0.0.136_20121102",
"filename": "firmware_RLC_410W_5MP_v300136",
"updated_at": "2020-12-11 00:00:00+00:00",
"note": "If your camera's hardware version does not begin with IPC_51516M5M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 53,
"model": "RLC-410W",
"hw_ver": "IPC_51516M5M",
"changelog": [
"1. Optimized day and night switching effect.",
"2. Optimized network transmission protocol to improve network security.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web.",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"6. Solved other known bugs"
],
"display_time": "2020-12-11 00:00:00+00:00",
"sha256_pak": "201bf2e54112b25b57eea21581fae5c440e8a00771055fe96b44536c1d3a62f1",
"source": "live"
},
{
"version": "V3.0.0.136_20121102",
"filename": "firmware_RLC_410W_V300136",
"updated_at": "2020-12-11 00:00:00+00:00",
"note": "This firmware is ONLY for RLC-410W-5MP(with hardware version IPC_515B16M5M)\n If you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 63,
"model": "RLC-410W",
"hw_ver": "IPC_515B16M5M",
"changelog": [
"1. Optimized day and night switching effect",
"2. Optimized network transmission.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment.",
"6. Solved other known bugs"
],
"display_time": "2020-12-11 00:00:00+00:00",
"sha256_pak": "e22710548fa25bf0159314a90be92fb1fe71e2184760f7e32df83e933e766f92",
"source": "live"
},
{
"version": "V3.1.0.739_22042505",
"filename": "RLC_410W_22042505",
"updated_at": "2022-04-26 00:00:00+00:00",
"note": "This firmware is ONLY for RLC-410W(with hardware version IPC_30K128M4MP)\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 281,
"model": "RLC-410W",
"hw_ver": "IPC_30K128M4MP",
"changelog": [
"1.Fixed a random configuration loss issue caused by restarts",
"2. Fixed some other bugs"
],
"display_time": "2022-04-26 00:00:00+00:00",
"sha256_pak": "8ace86bdc1549e7a943db390bcb351d9834ea2d09fcb1ab5bc74a804b33b93e2",
"source": "live"
},
{
"version": "v3.1.0.764_21121712",
"filename": "RLC_510WA_21121712",
"updated_at": "2022-01-07 00:00:00+00:00",
"note": "1. Due to the addition of new functions and the modification of some functions, it's suggested to check the Update Configuration File option when upgrading, or restore the camera after the firmware upgrading",
"firmware_id": 206,
"model": "RLC-510WA",
"hw_ver": "IPC_523128M5MP",
"changelog": [
"1. Optimized AI detection function",
"a. Upgraded the AI model to improve the recognition accuracy of people, cars, and pets (the new features of 8MP models), and optimized static AI false alarm issue",
"b. Increased the AI delay alarm function, which can reduce dynamic misjudgments caused by flying insects, rain, etc. by adjusting the delay gear",
"c. Optimized the alarm area settings to reduce false alarms in the shielded area",
"d. Optimized the AI sensitivity setting: It will not send AI alarm when the AI detection sensitivity is 0",
"e. Optimized the false alarms caused by day and night switching and lighting changes, and solved the problem that the spotlight will repeatedly turn on and off in some scenes",
"f. Optimized the automatic tracking function to solve the chaotic tracking problem of the camera in some scenarios",
"g, Added the vertical tracking function for RLC- 523WA, RLC-823A",
"2. Added AI smart detection type option for spotlight, so you can choose AI type for the smart spotlight",
"3. Optimized FTP function",
"a. Supported FTPS encryption to improve the security of FTP transfer files",
"b. Optimized the FTP transfer file type:You can choose to transfer only video, only pictures, and transfer both videos and pictures to the FTP server",
"c. Increased Overwrite function for picture only and video only function",
"d. Added 2s/5s/10s interval options for FTP capture picture",
"e. Optimized the upload file directory function: You can choose to folder by day/month, or save all files in the same folder",
"4. Optimized the push function and increased the push interval setting function",
"5. Increased the Test error code function for the Email, FTP, push settings, which could help find the cause of the error",
"6. Added switch for RTSP, ONVIF, HTTP, HTTPS service. Users can turn on and off the corresponding network services as needed",
"7. Increased the function of locking the device: The device will be locked for 2 seconds after logging in with an incorrect password to improve login security and prevent malicious attacks",
"8. Added web certificate import function",
"9. Updated RTSP version",
"10. Optimized the AF algorithm to solve the problem of unclear focus in some scenes",
"11. Optimized pre-record time of videos and solved the problem of too long pre-record time in some scenes",
"12. Added day and night switching threshold adjustment function"
],
"display_time": "2022-01-07 00:00:00+00:00",
"sha256_pak": "ed32bf8241d26da48ca5f7c53d65f335a6dfff689a34403b4e141704827de455",
"source": "live"
},
{
"version": "v3.0.0.183_21012801",
"filename": "firmware_D800_v300183",
"updated_at": "2021-02-01 00:00:00+00:00",
"note": "If your camera D800's hardware version does not begin with IPC_5158MP8M, please wait for the new firmware release.",
"firmware_id": 39,
"model": "D800",
"hw_ver": "IPC_5158MP8M",
"changelog": [
"1. Optimize the effect of the day and night switch.",
"2. Optimize network transmission.",
"3. Optimize the alert caused by the Day and Night switching.",
"4. When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"5. Fixed the bug that IPC failed to reconnect to the NVR after powering off when setting certain time zones.",
"6. Fixed some known bugs."
],
"display_time": "2021-02-01 00:00:00+00:00",
"sha256_pak": "5855910708f8e07aba48604c7bebe1aea8970b2f58850afdab34aa5753f8b9d1",
"source": "live"
},
{
"version": "v3.0.0.183_21012814",
"filename": "firmware_B500_v300183",
"updated_at": "2021-01-12 00:00:00+00:00",
"note": "If your camera B500's hardware version does not begin with IPC_515B8M5M, please wait for the new firmware release.\n.If you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 40,
"model": "B500",
"hw_ver": "IPC_515B8M5M",
"changelog": [
"1. Optimize the effect of the day and night switch.",
"2. Optimize network transmission.",
"3. Optimize the alert caused by the Day and Night switching.",
"4. When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"5. Fixed the bug that IPC failed to reconnect to the NVR after powering off when setting certain time zones.",
"6. Fixed some known bugs."
],
"display_time": "2021-01-12 00:00:00+00:00",
"sha256_pak": "52b8898f3fb567b4461f03b0d2aed44e62b985247c7925b80ed331b00d1e2517",
"source": "live"
},
{
"version": "v3.0.0.183_21012814",
"filename": "firmware_B500_v300183",
"updated_at": "2021-02-02 00:00:00+00:00",
"note": "If your camera B500's hardware version does not begin with IPC_5158M5M, please wait for the new firmware release.",
"firmware_id": 42,
"model": "B500",
"hw_ver": "IPC_5158M5M",
"changelog": [
"1. Optimize the effect of the day and night switch.",
"2. Optimize network transmission.",
"3. Optimize the alert caused by the Day and Night switching.",
"4. When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"5. Fixed the bug that IPC failed to reconnect to the NVR after powering off when setting certain time zones.",
"6. Fixed some known bugs."
],
"display_time": "2021-02-02 00:00:00+00:00",
"sha256_pak": "dc9878f1a373a8d625ae5d906e27d7247057bf039910db95bf06630d800aa541",
"source": "live"
},
{
"version": "v3.0.0.183_21012800",
"filename": "firmware_B400_v300183_21012800",
"updated_at": "2021-03-15 00:00:00+00:00",
"note": "If your camera B400's hardware version does not begin with IPC_5128M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 36,
"model": "B400",
"hw_ver": "IPC_5128M",
"changelog": [
"1. Optimize the effect of the day and night switch.",
"2. Optimize network transmission.",
"3. Optimize the alert caused by the Day and Night switching.",
"4. When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"5. Fixed the bug that IPC failed to reconnect to the NVR after powering off when setting certain time zones.",
"6. Fixed some known bugs."
],
"display_time": "2021-03-15 00:00:00+00:00",
"sha256_pak": "906359a46350a91ea0413040b7d813ed1b76afd1df3963963adb922590348dcf",
"source": "live"
},
{
"version": "v3.0.0.183_21012801",
"filename": "firmware_D400_v300183",
"updated_at": "2021-01-12 00:00:00+00:00",
"note": "If your camera D400's hardware version does not begin with IPC_5128M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 37,
"model": "D400",
"hw_ver": "IPC_5128M",
"changelog": [
"1. Optimize the effect of the day and night switch.",
"2. Optimize network transmission.",
"3. Optimize the alert caused by the Day and Night switching.",
"4. When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"5. Fixed the bug that IPC failed to reconnect to the NVR after powering off when setting certain time zones.",
"6. Fixed some known bugs."
],
"display_time": "2021-01-12 00:00:00+00:00",
"sha256_pak": "d2d4095ebe08c6cb2127e4f2cbbaf94484be2a265800bb1accafd60b5d9c42d6",
"source": "live"
},
{
"version": "v3.0.0.183_21012800",
"filename": "firmware_B800_v300183",
"updated_at": "2021-03-15 00:00:00+00:00",
"note": "If your camera B800's hardware version does not begin with IPC_5158MP8M, please wait for the new firmware release.\n.If you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 38,
"model": "B800",
"hw_ver": "IPC_5158MP8M",
"changelog": [
"1. Optimize the effect of the day and night switch.",
"2. Optimize network transmission.",
"3. Optimize the alert caused by the Day and Night switching.",
"4. When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"5. Fixed the bug that IPC failed to reconnect to the NVR after powering off when setting certain time zones.",
"6. Fixed some known bugs."
],
"display_time": "2021-03-15 00:00:00+00:00",
"sha256_pak": "78ad5cb247ad69ef02d253a5a4683e9608818b500370dddda6bcf93fa19e8973",
"source": "live"
},
{
"version": "v3.0.0.200_22081549",
"filename": "RLN16_410_22081549",
"updated_at": "2022-08-17 18:11:29+08:00",
"note": "Recommendation for upgrade: Because there are many updates in this version, it is recommended to check the Reset Configuration option when upgrading.",
"firmware_id": 299,
"model": "RLN16-410 (NVR)",
"hw_ver": "H3MB18",
"changelog": [
"1.Solved the problem of pixelated image in complex scenes.",
"2.Optimize the interface and interaction.",
"3.Add the option to enable or disable the status reminder icon displayed on the preview screen.",
"4.Solve the problem that the login box input will disappear automatically after 30s.",
"5.Add the function of setting IPC Day/Night switching thresholds.",
"6.Add the function of setting a siren schedule for IPC camera.",
"7.Add the function of customizing the siren of the camera connected to the NVR through the Reolink App",
"8.Add push test and the settings for the interval time",
"9.Optimize network related settings",
"10.Add zoom function on the playback page, and add full-screen playback function",
"11.Fix bug in Hebrew",
"12.Add Portuguese",
"13.Add the function of keeping video recordings for the latest 2days, 3days, 7 days, 14 days and 30 days",
"14.Adapt to more new models, such as: Duo series, Duo2 series, TrackMix series, etc.",
"15.Support multi-screen display mode, which adapts to connect multiple (Duo series, TrackMix) series IPCs to the NVR, but the total number of cameras cannot exceed 16 devices respectively",
"16.Update web client",
"17.Update to support using ONVIF to access NVR's H.256 bit rate",
"18.Supporting picture-in-picture preview for Reolink Trackmix camera",
"19.Added person, vehicle and pet options for Spotlight Auto Night mode",
"20.Added configuration options of Fixed Frame Rate and Auto Frame Rate",
"21.Fix other known bugs"
],
"display_time": "2022-08-17 00:00:00+08:00",
"sha256_pak": "a726449570daf591bc9a7c3f49d4892d59afd95eec9d19cc0a078cdcce156e25",
"source": "live"
},
{
"version": "v3.0.0.201_22082208",
"filename": "RLN16_410_22082208",
"updated_at": "2022-08-26 18:36:03+08:00",
"note": "Recommendation for upgrade: Because there are many updates in this version, it is recommended to check the Reset Configuration option when upgrading.",
"firmware_id": 310,
"model": "RLN16-410 (NVR)",
"hw_ver": "N6MB01",
"changelog": [
"Optimize the interface and interaction.",
"Support RTSP url access with the h264 field.",
"Update web client.",
"Add the function of keeping video recordings for the latest 2days, 3days, 7 days, 14 days and 30 days.",
"Added three full-screen playback modes for TrackMix series.",
"Added person, vehicle and pet options for Spotlight Auto Night mode.",
"Added configuration options of Fixed Frame Rate and Auto Frame Rate.",
"Solved the adaptation problem of TrackMix series and Duo 2 series.",
"Fix other known bugs."
],
"display_time": "2022-08-26 00:00:00+08:00",
"sha256_pak": "7d1ca5c187e5523e0271108a69a59fa4a17727bf43d68878ae8a272b7ba8ca37",
"source": "live"
},
{
"version": "v3.1.0.951_22041567",
"filename": "RLC_510A_22041567",
"updated_at": "2022-04-18 00:00:00+00:00",
"note": "1.Due to the addition of new functions and the modification of some functions, it's suggested to check the Update Configuration File option when upgrading, or restore the camera after the firmware upgrading",
"firmware_id": 273,
"model": "RLC-510A",
"hw_ver": "IPC_523128M5MP",
"changelog": [
"1.Upgraded ONVIF protocol to version 21.06",
"2. Solved the issue of no audio output on some platforms using ONVIF",
"3. Added the fixed FPS setting: The FPS won't be reduced automatically at night",
"4. Added multiple selection for the iFrame setting",
"5. Solved the problem that FTP parameters do not take effect under WEB access",
"6. Upgraded AI model to reduce false negatives and false positives",
"7. Added the function of synchronously prohibiting Push after disabling the UID",
"8. Added the security policy of login lockout",
"9. Solved some bugs of FTP",
"10. Solved some bugs of Email alert",
"11. Solved the problem of failing to adjust the threshold setting",
"12. Modified the display script of anti-flicker"
],
"display_time": "2022-04-18 00:00:00+00:00",
"sha256_pak": "1c73858591aaf2edfce62b459164c492952830fed252523800cea76b66251991",
"source": "live"
},
{
"version": "v3.1.0.951_22041566",
"filename": "RLC_520A_22041566",
"updated_at": "2022-04-18 00:00:00+00:00",
"note": "1.Due to the addition of new functions and the modification of some functions, it's suggested to check the Update Configuration File option when upgrading, or restore the camera after the firmware upgrading",
"firmware_id": 274,
"model": "RLC-520A",
"hw_ver": "IPC_523128M5MP",
"changelog": [
"1.Upgraded ONVIF protocol to version 21.06",
"2. Solved the issue of no audio output on some platforms using ONVIF",
"3. Added the fixed FPS setting: The FPS won't be reduced automatically at night",
"4. Added multiple selection for the iFrame setting",
"5. Solved the problem that FTP parameters do not take effect under WEB access",
"6. Upgraded AI model to reduce false negatives and false positives",
"7. Added the function of synchronously prohibiting Push after disabling the UID",
"8. Added the security policy of login lockout",
"9. Solved some bugs of FTP",
"10. Solved some bugs of Email alert",
"11. Solved the problem of failing to adjust the threshold setting",
"12. Modified the display script of anti-flicker"
],
"display_time": "2022-04-18 00:00:00+00:00",
"sha256_pak": "0a4c6899169caca1407c004eec82dc38691b7a3a216cc87dce6e7ec7386ee1c7",
"source": "live"
},
{
"version": "v3.1.0.956_22041503",
"filename": "RLC_810A_22041503",
"updated_at": "2022-04-18 00:00:00+00:00",
"note": "1.Due to the addition of new functions and the modification of some functions, it's suggested to check the Update Configuration File option when upgrading, or restore the camera after the firmware upgrading",
"firmware_id": 275,
"model": "RLC-810A",
"hw_ver": "IPC_523128M8MP",
"changelog": [
"1.Upgraded ONVIF protocol to version 21.06",
"2. Solved the issue of no audio output on some platforms using ONVIF",
"3. Added the fixed FPS setting: The FPS won't be reduced automatically at night",
"4. Added multiple selection for the iFrame setting",
"5. Solved the problem that FTP parameters do not take effect under WEB access",
"6. Upgraded AI model to reduce false negatives and false positives",
"7. Added the function of synchronously prohibiting Push after disabling the UID",
"8. Added the security policy of login lockout",
"9. Solved some bugs of FTP",
"10. Solved some bugs of Email alert",
"11. Solved the problem of failing to adjust the threshold setting",
"12. Modified the display script of anti-flicker"
],
"display_time": "2022-04-18 00:00:00+00:00",
"sha256_pak": "a60a4e05fdb4533509ae9e935d313e96850cb6b2a05be52e0e171aaab15900e7",
"source": "live"
},
{
"version": "v3.1.0.956_22041501",
"filename": "RLC_820A_22041501",
"updated_at": "2022-04-18 00:00:00+00:00",
"note": "1.Due to the addition of new functions and the modification of some functions, it's suggested to check the Update Configuration File option when upgrading, or restore the camera after the firmware upgrading",
"firmware_id": 276,
"model": "RLC-820A",
"hw_ver": "IPC_523128M8MP",
"changelog": [
"1.Upgraded ONVIF protocol to version 21.06",
"2. Solved the issue of no audio output on some platforms using ONVIF",
"3. Added the fixed FPS setting: The FPS won't be reduced automatically at night",
"4. Added multiple selection for the iFrame setting",
"5. Solved the problem that FTP parameters do not take effect under WEB access",
"6. Upgraded AI model to reduce false negatives and false positives",
"7. Added the function of synchronously prohibiting Push after disabling the UID",
"8. Added the security policy of login lockout",
"9. Solved some bugs of FTP",
"10. Solved some bugs of Email alert",
"11. Solved the problem of failing to adjust the threshold setting",
"12. Modified the display script of anti-flicker"
],
"display_time": "2022-04-18 00:00:00+00:00",
"sha256_pak": "abecc1810bcd0fe27775acf0cce0050808d2edd975573f6846d899da8502c77b",
"source": "live"
},
{
"version": "v3.0.0.200_22081500",
"filename": "RLN8_410_22081500",
"updated_at": "2022-08-17 18:26:37+08:00",
"note": "Recommendation for upgrade: Because there are many updates in this version, it is recommended to check the Reset Configuration option when upgrading.",
"firmware_id": 300,
"model": "RLN8-410 (NVR)",
"hw_ver": "N3MB01",
"changelog": [
"1.Solved the problem of pixelated image in complex scenes.",
"2.Optimize the interface and interaction.",
"3.Add the option to enable or disable the status reminder icon displayed on the preview screen.",
"4.Solve the problem that the login box input will disappear automatically after 30s.",
"5.Add the function of setting IPC Day/Night switching thresholds.",
"6.Add the function of setting a siren schedule for IPC camera.",
"7.Add the function of customizing the siren of the camera connected to the NVR through the Reolink App",
"8.Add push test and the settings for the interval time",
"9.Optimize network related settings",
"10.Add zoom function on the playback page, and add full-screen playback function",
"11.Fix bug in Hebrew",
"12.Add Portuguese",
"13.Add the function of keeping video recordings for the latest 2days, 3days, 7 days, 14 days and 30 days",
"14.Adapt to more new models, such as: Duo series, Duo2 series, TrackMix series, etc.",
"15.Support multi-screen display mode, which adapts to connect multiple (Duo series, TrackMix) series IPCs to the NVR, but the total number of cameras cannot exceed 8 devices respectively",
"16.Update web client",
"17.Update to support using ONVIF to access NVR's H.256 bit rate",
"18.Supporting picture-in-picture preview for Reolink Trackmix camera",
"19.Added person, vehicle and pet options for Spotlight Auto Night mode",
"20.Added configuration options of Fixed Frame Rate and Auto Frame Rate",
"21.Fix other known bugs"
],
"display_time": "2022-08-17 00:00:00+08:00",
"sha256_pak": "dc58fce29ec92c33fbfd0243a671f0ab703fbe6db8e95b9057dde22965c996bf",
"source": "live"
},
{
"version": "v3.0.0.200_22081548",
"filename": "RLN8_410_22081548",
"updated_at": "2022-08-17 18:18:23+08:00",
"note": "Recommendation for upgrade: Because there are many updates in this version, it is recommended to check the Reset Configuration option when upgrading.",
"firmware_id": 301,
"model": "RLN8-410 (NVR)",
"hw_ver": "N2MB02 or H3MB18",
"changelog": [
"1.Solved the problem of pixelated image in complex scenes.",
"2.Optimize the interface and interaction.",
"3.Add the option to enable or disable the status reminder icon displayed on the preview screen.",
"4.Solve the problem that the login box input will disappear automatically after 30s.",
"5.Add the function of setting IPC Day/Night switching thresholds.",
"6.Add the function of setting a siren schedule for IPC camera.",
"7.Add the function of customizing the siren of the camera connected to the NVR through the Reolink App",
"8.Add push test and the settings for the interval time",
"9.Optimize network related settings",
"10.Add zoom function on the playback page, and add full-screen playback function",
"11.Fix bug in Hebrew",
"12.Add Portuguese",
"13.Add the function of keeping video recordings for the latest 2days, 3days, 7 days, 14 days and 30 days",
"14.Adapt to more new models, such as: Duo series, Duo2 series, TrackMix series, etc.",
"15.Update web client",
"16.Update to support using ONVIF to access NVR's H.256 bit rate",
"17.Supporting picture-in-picture preview for Reolink Trackmix camera",
"18.Added person, vehicle and pet options for Spotlight Auto Night mode",
"19.Added configuration options of Fixed Frame Rate and Auto Frame Rate",
"20.Fix other known bugs"
],
"display_time": "2022-08-17 00:00:00+08:00",
"sha256_pak": "f09a88fe4603daa502f827146a81b0efb1d0b8c83378fa1a6db327ab8db2e3f6",
"source": "live"
},
{
"version": "V3.0.0.136_20121100",
"filename": "firmware_RLC_410_v300136_20121100",
"updated_at": "2020-12-11 00:00:00+00:00",
"note": "If your camera's hardware version does not begin with IPC_51316M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 45,
"model": "RLC-410",
"hw_ver": "IPC_51316M",
"changelog": [
"1. Added the new web terminal that supports HTML5 player, which mainly solved the Flash expiring problem.",
"2. Added the SD card 7*24 hours recording function.",
"3. Optimized network transmission protocol to improve network security.",
"4. Optimized P2P connection.",
"5. Solved the problem that FTP recording doesn't have pre-recorded function.",
"6. Solved the problem of email test with an empty password and some mail sending bugs.",
"7. Solved the problem that FTP test failed and unable to upload pictures under Linux system.",
"8. Solved the problem of two default routes, mainly to solve the problem that the camera cannot be connected to the VPN network when it's connected to WiFi",
"9. Solved the false alert issue which is caused when using PTZ function.",
"10. Optimized day and night switching effect.",
"11. Solved the problem that the DHCP hostname is eth0 on the router.",
"12. Solved the problem that there is no email interval in the email setting on the web.",
"13. Solved the problem of copywriting in the received email when only pictures are configured as email attachment.",
"14. Solved other known bugs"
],
"display_time": "2020-12-11 00:00:00+00:00",
"sha256_pak": "cef97b10c603b0d5c96136d3d3dcebb03de05e687f1fd77071eea182df6f2307",
"source": "live"
},
{
"version": "V3.0.0.136_20121100",
"filename": "firmware_RLC_410_5MP_v300136",
"updated_at": "2020-12-11 00:00:00+00:00",
"note": "If your camera's hardware version does not begin with IPC_51516M5M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 46,
"model": "RLC-410",
"hw_ver": "IPC_51516M5M",
"changelog": [
"1. Optimized day and night switching effect.",
"2. Optimized network transmission protocol to improve network security.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web.",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment.",
"6. Solved other known bugs"
],
"display_time": "2020-12-11 00:00:00+00:00",
"sha256_pak": "28807f175605154adb2c364ca60411e15dc7b69e9bf61b56f802d196ab40e828",
"source": "live"
},
{
"version": "V3.0.0.136_20121100",
"filename": "firmware_RLC_410_5MP_v300136",
"updated_at": "2021-03-15 00:00:00+00:00",
"note": "This firmware is ONLY for RLC-410-5MP(with hardware version IPC_515B16M5M)\n If you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 62,
"model": "RLC-410",
"hw_ver": "IPC-515B16M5M",
"changelog": [
"1. Optimized day and night switching effect",
"2. Optimized network transmission.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solve the problem that there is no interval in the email settings on the web.",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment.",
"6. Solved other known bugs"
],
"display_time": "2021-03-15 00:00:00+00:00",
"sha256_pak": "8d3dfbbedc95ea6e2ab81a8566b335d1bd62facc1a0c3ea5086872709d7df4f1",
"source": "live"
},
{
"version": "V3.0.0.136_20121101",
"filename": "firmware_RLC_42_v300136",
"updated_at": "2020-12-11 00:00:00+00:00",
"note": "If your camera's hardware version does not begin with IPC_51316M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 47,
"model": "RLC-420",
"hw_ver": "IPC_51316M",
"changelog": [
"1. Added the new web terminal that supports HTML5 player, which mainly solved the Flash expiring problem.",
"2. Added the SD card 7*24 hours recording function.",
"3. Optimized network transmission protocol to improve network security.",
"4. Optimized P2P connection.",
"5. Solved the problem that FTP recording doesn't have pre-recorded function.",
"6. Solved the problem of email test with an empty password and some mail sending bugs.",
"7. Solved the problem that FTP test failed and unable to upload pictures under Linux system.",
"8. Solved the problem of two default routes, mainly to solve the problem that the camera cannot be connected to the VPN network when it's connected to WiFi",
"9. Solved the false alert issue which is caused when using PTZ function.",
"10. Optimized day and night switching effect.",
"11. Solved the problem that the DHCP hostname is eth0 on the router.",
"12. Solved the problem that there is no email interval in the email setting on the web.",
"13. Solved the problem of copywriting in the received email when only pictures are configured as email attachment.",
"14. Solved other known bugs"
],
"display_time": "2020-12-11 00:00:00+00:00",
"sha256_pak": "b0009b865c4a0a13b74c68e4bd7928f48c0c82cb5500f4c0741dc7bb9128d220",
"source": "live"
},
{
"version": "V3.0.0.136_20121101",
"filename": "firmware_RLC_420_5MP_v300136",
"updated_at": "2020-12-11 00:00:00+00:00",
"note": "If your camera's hardware version does not begin with IPC_51516M5M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 49,
"model": "RLC-420",
"hw_ver": "IPC_51516M5M",
"changelog": [
"1. Optimized day and night switching effect.",
"2. Optimized network transmission protocol to improve network security.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web.",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment.",
"6. Solved other known bugs"
],
"display_time": "2020-12-11 00:00:00+00:00",
"sha256_pak": "bda696c9cf38c96ee709042772eeafa43ea488d13e8f19ee79d73da4b825783b",
"source": "live"
},
{
"version": "V3.0.0.136_20121101",
"filename": "firmware_RLC_420_5MP_v300136",
"updated_at": "2021-03-15 00:00:00+00:00",
"note": "This firmware is ONLY for RLC-420-5MP(with hardware version IPC_515B16M5M)\n If you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 65,
"model": "RLC-420",
"hw_ver": "IPC_515B16M5M",
"changelog": [
"1. Optimized day and night switching effect",
"2. Optimized network transmission.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment.",
"6. Solved other known bugs"
],
"display_time": "2021-03-15 00:00:00+00:00",
"sha256_pak": "b941b21b67ee3dddef1c47356fd1379b5c01a1fc77b2a6585d5e8762f52e957d",
"source": "live"
},
{
"version": "V3.0.0.136_20121105",
"filename": "firmware_RLC_422_v300136",
"updated_at": "2022-04-25 00:00:00+00:00",
"note": "If your camera's hardware version does not begin with IPC_51516M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 48,
"model": "RLC-422",
"hw_ver": "IPC-51516M",
"changelog": [
"1. Optimized day and night switching effect.",
"2. Optimized network transmission protocol to improve network security.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web.",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment.",
"6. Solved other known bugs"
],
"display_time": "2022-04-25 00:00:00+00:00",
"sha256_pak": "f98c8f5bd16c7d1c95df940c03e4ca6801f52779bfc7c32b526db4a3e13e972d",
"source": "live"
},
{
"version": "V3.0.0.136_20121112",
"filename": "firmware_RLC_520_v300136",
"updated_at": "2020-12-11 00:00:00+08:00",
"note": "If your camera's hardware version does not begin with IPC_51516M5M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 51,
"model": "RLC-520",
"hw_ver": "IPC_51516M5M",
"changelog": [
"1. Optimized day and night switching effect.",
"2. Optimized network transmission protocol to improve network security.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web.",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"6. Solved other known bugs"
],
"display_time": "2020-12-11 00:00:00+08:00",
"sha256_pak": "072d43b1969f540c76b92a24463bf11236ca6a55415ca5497c14c1ea70add664",
"source": "live"
},
{
"version": "V3.0.0.136_20121112",
"filename": "firmware_RLC_520_v300136",
"updated_at": "2021-04-03 00:00:00+00:00",
"note": "This firmware is ONLY for RLC-520(with hardware version IPC_515B16M5M)\n If you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 64,
"model": "RLC-520",
"hw_ver": "IPC_515B16M5M",
"changelog": [
"1. Optimized day and night switching effect",
"2. Optimized network transmission.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment.",
"6. Solved other known bugs"
],
"display_time": "2021-04-03 00:00:00+00:00",
"sha256_pak": "eef1317f79126b69d67d05f8630e90f45c9e9a3be8c4aa4cdbe7b40c7409e0b2",
"source": "live"
},
{
"version": "V3.0.0.136_20121111",
"filename": "firmware_RLC_522_v300136",
"updated_at": "2021-03-15 00:00:00+00:00",
"note": "If your camera's hardware version does not begin with IPC_51516M5M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 52,
"model": "RLC-522",
"hw_ver": "IPC_51516M5M",
"changelog": [
"1. Optimized day and night switching effect.",
"2. Optimized network transmission protocol to improve network security.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web.",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"6. Solved other known bugs"
],
"display_time": "2021-03-15 00:00:00+00:00",
"sha256_pak": "2904f8bdf712532b490a77dbf82597910bea2877e90f327d5f6acea6ceb011dc",
"source": "live"
},
{
"version": "V3.0.0.142_20121804",
"filename": "firmwareRLC_511W_v300142_20121804",
"updated_at": "2021-03-15 00:00:00+00:00",
"note": "If your camera's hardware version does not begin with IPC_51516M5M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 54,
"model": "RLC-511W",
"hw_ver": "IPC_51516M5M",
"changelog": [
"1. Optimized day and night switching effect.",
"2. Optimized network transmission protocol to improve network security.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web.",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"6. Solved other known bugs"
],
"display_time": "2021-03-15 00:00:00+00:00",
"sha256_pak": "6df6769349d0cffc082e4f23d9f57f79209bbadc81eeda799580e344fd5fd433",
"source": "live"
},
{
"version": "V3.0.0.136_20121106",
"filename": "firmware_RLC_422W_v300136",
"updated_at": "2021-03-15 00:00:00+00:00",
"note": "If your camera's hardware version does not begin with IPC_51516M5M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 55,
"model": "RLC-422W",
"hw_ver": "IPC_51516M5M",
"changelog": [
"1. Optimized day and night switching effect.",
"2. Optimized network transmission protocol to improve network security.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web.",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"6. Solved other known bugs"
],
"display_time": "2021-03-15 00:00:00+00:00",
"sha256_pak": "cf9d33025d8c2832df2d023e1e9b2180b7f0afdf4d60a0ef681f7af9eaa0afce",
"source": "live"
},
{
"version": "V3.0.0.142_20121803",
"filename": "firmware_RLC_511_v300142_20121803",
"updated_at": "2021-03-15 00:00:00+00:00",
"note": "If your camera's hardware version does not begin with IPC_51516M5M, please wait for the new firmware release.\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 56,
"model": "RLC-511",
"hw_ver": "IPC_51516M5M",
"changelog": [
"1. Optimized day and night switching effect.",
"2. Optimized network transmission protocol to improve network security.",
"3. Solved the problem that the DHCP hostname is eth0 on the router.",
"4. Solved the problem that there is no email interval in the email setting on the web.",
"5. Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"6. Solved other known bugs"
],
"display_time": "2021-03-15 00:00:00+00:00",
"sha256_pak": "bc9d39ae4f251995e9c35587f8cead94de1bc8d4aad8f7bf96eba612ac1812c8",
"source": "live"
},
{
"version": "V3.0.0.115_20102200",
"filename": "firmware_E1_115_20102200",
"updated_at": "2021-03-15 00:00:00+00:00",
"note": "This firmware is ONLY for E1(with hardware version IPC_517SD5).\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 57,
"model": "E1",
"hw_ver": "IPC_517SD5",
"changelog": [
"1. Added the preset feature.",
"2. Fixed the problem that the email test fails when the email password is blank.",
"3. Optimized cloud transmission performance.",
"4. Optimized the network transmission protocol.",
"5. Fixed some known bugs."
],
"display_time": "2021-03-15 00:00:00+00:00",
"sha256_pak": "542b998827ec1fbd893c12aa511126e4463dcb02e7090f37f3b627712e82e075",
"source": "live"
},
{
"version": "V3.0.0.716_21112404",
"filename": "E1_Pro_v30021112404_IPC_513SD5",
"updated_at": "2021-11-24 00:00:00+00:00",
"note": "This firmware is ONLY for E1 Pro(with hardware version IPC_513SD5).\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 190,
"model": "E1 Pro",
"hw_ver": "IPC_513SD5",
"changelog": [
"1. Modify the initialization process, prompting the scan to be modified from the sound effect to five languages.",
"2. Optimize the P2P connection and modify the P2P connection failure problem in some scenarios.",
"3. Modify the blueish problem of the image in some specific scenes."
],
"display_time": "2021-11-24 00:00:00+00:00",
"sha256_pak": "9a29424e1c880446942bea4f9e8cb89185e9d4d82ee8db71356504b9fb67939f",
"source": "live"
},
{
"version": "V3.0.0.716_21112413",
"filename": "E1_Pro_v30071621112413_IPC_515SD5",
"updated_at": "2021-11-29 00:00:00+00:00",
"note": "This firmware is ONLY for E1 Pro(with hardware version IPC_515SD5).\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 191,
"model": "E1 Pro",
"hw_ver": "IPC_515SD5",
"changelog": [
"1. Modify the initialization process, prompting the scan to be modified from the sound effect to five languages.",
"2. Optimize the P2P connection and modify the P2P connection failure problem in some scenarios.",
"3. Modify the blueish problem of the image in some specific scenes."
],
"display_time": "2021-11-29 00:00:00+00:00",
"sha256_pak": "c846692811f01e51661fd2085f565a0070641c370ac2f172ac65c1cb8933dd9e",
"source": "live"
},
{
"version": "v3.0.0.1107",
"filename": "E1_ZOOM_22070508_IPC_515SD6",
"updated_at": "2022-07-08 07:11:13+00:00",
"note": "This firmware is ONLY for E1 Zoom(with hardware version IPC_515SD6)\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 289,
"model": "E1 Zoom",
"hw_ver": "IPC_515SD6",
"changelog": [
"Optimized related network protocols and fixed some known bugs"
],
"display_time": "2022-07-08 07:11:13+00:00",
"sha256_pak": "07f04003ea436388543d30bd0230cab397533e9210f864814172942302f724dd",
"source": "live"
},
{
"version": "v3.0.0.1107",
"filename": "E1_ZOOM_22070508_IPC_515BSD6",
"updated_at": "2022-07-08 07:10:54+00:00",
"note": "This firmware is ONLY for E1 Zoom(with hardware version IPC_515BSD6)\nIf you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 290,
"model": "E1 Zoom",
"hw_ver": "IPC_515BSD6",
"changelog": [
"Optimized related network protocols and fixed some known bugs"
],
"display_time": "2022-07-08 07:10:54+00:00",
"sha256_pak": "d25951f7c01e0f3096777e47728f63d0dda50bfd705d62344e9dc580cb78cfd7",
"source": "live"
},
{
"version": "V3.0.0.146_20122309",
"filename": "firmware_RLC_423_v300146_20122309",
"updated_at": "2021-03-18 00:00:00+00:00",
"note": "This firmware is ONLY for RLC-423(with hardware version IPC_51516M5M)\n If you don't want to restore your camera settings to factory status, please uncheck/ don't enable the\" update configuration File\" option.",
"firmware_id": 66,
"model": "RLC-423",
"hw_ver": "IPC_51516M5M",
"changelog": [
"1. Added the new web terminal that supports the HTML5 player, which mainly solved the Flash expiring problem.",
"2. Added the SD card 7*24 hours recording function.",
"3. Optimized network transmission.",
"4. Optimized P2P connection.",
"5. Solved the problem that FTP recording doesn't have pre-recorded function.",
"6. Solved the problem of email test with an empty password and some mail sending bugs.",
"7. Solved the problem of two default routes, mainly to solve the problem that the camera cannot be connected to the VPN network when the it's connected to WiFi.",
"8. Solved the problem that the DHCP hostname is eth0 on the router.",
"9. Solved the problem that there is no email interval in the email setting on the web.",
"10. Solved the problem of copywriting in the received email when only pictures are configured as an email attachment.",
"11. Solved other known bugs."
],
"display_time": "2021-03-18 00:00:00+00:00",
"sha256_pak": "6cedf7bb418d0195100018bc613bad6845269add789b8c4f45848dd6027b19fa",
"source": "live"
},
{
"version": "v3.1.0.861_22030104",
"filename": "RLC_1210A_22030104",
"updated_at": "2022-03-04 00:00:00+00:00",
"note": "1.Due to the addition of new functions and the modification of some functions, it's suggested to check the Update Configuration File option when upgrading, or restore the camera after the firmware upgrading",
"firmware_id": 220,
"model": "RLC-1210A",
"hw_ver": "IPC_523128M12MP",
"changelog": [
"1. Optimize the problem of screen flickering under high color temperature, such as under snow illumination",
"2. Optimize some other bugs"
],
"display_time": "2022-03-04 00:00:00+00:00",
"sha256_pak": "e54bdf2e1bb0feab255fe87f2a2098c3c53ef2dcc62a2f0ef010c20f54e7c913",
"source": "live"
},
{