forked from skulidropek/Rust-Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlogPosts.json
More file actions
3956 lines (3956 loc) · 182 KB
/
Copy pathBlogPosts.json
File metadata and controls
3956 lines (3956 loc) · 182 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"Link": "https://rust.facepunch.com/news/stay-alert",
"Description": "New tin can alarm, zipline improvements, item buoyancy, vendor price adjustments, & more QoL!",
"Date": "Thursday, August 1, 2024",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-262",
"Description": "50% off Rust, Lootroom 3D Printed Merch, fan-made Rust lego sets, Twitch drops, and more!",
"Date": "Tuesday, July 16, 2024",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/road-renegades",
"Description": "Motorbikes have arrived! Bicycles are available too. Plus, check out handcuffs and prisoner hoods, the traveling vendor event, and much more.",
"Date": "Thursday, July 4, 2024",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-261",
"Description": "Creator Collab Deskpads, Skin Contests, Global Warfare, Art, & more!",
"Date": "Monday, June 24, 2024",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/seismicshift",
"Description": "This month, we bring you more meta & QOL gameplay changes, the Seismic Sensor item, barricades deployable in monuments, instant server rejoin, Tech Tree combining, and much more.",
"Date": "Thursday, June 6, 2024",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/meta-madness",
"Description": "Meta gameplay changes are here! Aimcone reduction, weapon buffs and changes to  weapon attachments, safe zone recyclers, PvP walls, Cargo Ship docking, Launch Site and much, much more.",
"Date": "Thursday, May 2, 2024",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-260",
"Description": "Amusement Parks, Fight Clubs, Music Parodies, Cosplay, and Twitch drops maybe?",
"Date": "Thursday, April 25, 2024",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/waves-of-change",
"Description": "So many changes! We've updated Harbor/Cargo, Oilrig, Bradley, Electricity, & Patrol Heli. Adding our first Retro TC Skin & a minigun, plus much more!",
"Date": "Thursday, April 4, 2024",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/easter-2024",
"Description": "Check out this year's clucking Easter update.  ",
"Date": "Thursday, March 21, 2024",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/lighting-the-way",
"Description": "This month we bring you Tutorial Island, Night time visibility, Vendor UI refresh, Item Store rework, and much more!",
"Date": "Thursday, March 7, 2024",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-259",
"Description": "Giant calculators, global stats, creator program, and LOTS of art!",
"Date": "Tuesday, February 27, 2024",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/lunar-new-year-2024",
"Description": "Celebrate the 2024 Lunar new year, the Year of the Dragon with a dragon rocket launcher, spear, sky lanterns, gongs and more!",
"Date": "Wednesday, February 7, 2024",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/bags-to-riches",
"Description": "This month's Rust update brings you backpacks, player remains, metal detector, weapon changes, QOL, performance improvements and much more!",
"Date": "Thursday, February 1, 2024",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/surviving-a-decade",
"Description": "Servers are now wiped, Santa is packing up and clearing out the bodies, we hope you enjoyed the Holiday Season. In this blog, we recap 2023 and reveal some upcoming changes.",
"Date": "Thursday, January 4, 2024",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/merry-rustmas-23",
"Description": "Season's beatings! It's that wonderful time of the year again. The Xmas event is now enabled, gingerbread houses, and Rustmas base decorating competition!",
"Date": "Saturday, December 16, 2023",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/10-years-of-rust",
"Description": "This month we celebrate Rust's 10th birthday. Birthday event, throw back items to Rust Legacy, new weapon, twitch drops, 20 QOL features, and much more!",
"Date": "Thursday, December 7, 2023",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-258",
"Description": "Steam Awards, Multiple Cinematics, Global Warfare, Youtube Achievements, Support a Streamer Event, and more!",
"Date": "Monday, November 27, 2023",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/steamawards2023",
"Description": "This year's Steam Awards sees Rust enter for the 'Labour of Love' category. After 10 years of the game, it's updates, and content, we are officially putting our hat in the ring!",
"Date": "Tuesday, November 21, 2023",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/coupling-the-rails",
"Description": "The surface and underground rail networks are now linked, train signals have been added. Base decor pack released and a bunch of QOL and fixes",
"Date": "Thursday, November 2, 2023",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-257",
"Description": "Halloween Trailers, Breast Cancer Charity, Project Lazarus Event, & more!",
"Date": "Thursday, October 26, 2023",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/happy-halloween-23",
"Description": "A darkness is falling upon Rust, monsters are awakening, portals are opening, and skulls are breaking. Enter if you dare.",
"Date": "Monday, October 23, 2023",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/solid-foundations",
"Description": "QoL Updates, Brutalist Building Skin, Weather Events, Turret System Adjustments, SMG buff and more! ",
"Date": "Thursday, October 5, 2023",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-256",
"Description": "Charitable Rust, Upcoming Twitch Drops, Rust miniatures, Speedpaints, and more!",
"Date": "Friday, September 22, 2023",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/airborne",
"Description": "Attack Helicopter, Homing Missiles, Parachutes, Armored Hot Air Balloons, Weapon Rack Item Pack, Twitch Drops, & more!",
"Date": "Thursday, September 7, 2023",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-255",
"Description": "Twitch Drops, Skin Contests, Reddit Insights, IRL Weapon Racks, and more!",
"Date": "Tuesday, August 22, 2023",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/wounded",
"Description": "This month's Rust update includes an updated wounded UI, Chat emoji support, brick-building skin, burst module buff, and the usual fixes and improvements.",
"Date": "Thursday, August 3, 2023",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-254",
"Description": "Rustopia Invitational Tournament, Shark Bait, Tactical Plays, Music Videos, and more!",
"Date": "Thursday, July 27, 2023",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/deep-sea",
"Description": "This month's Rust update brings you an updated water system, drivable Tugboat with a buildable area, Abyss Item pack, Ferry terminal monument, and the usual fixes and improvements.",
"Date": "Thursday, July 6, 2023",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-253",
"Description": "Amazing cinematics, Community-driven events, Rust discounts and more!",
"Date": "Friday, June 30, 2023",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/bags-to-battles",
"Description": "This month's update brings you respawn changes, the Shipping Container-building skin, creation-building effects & many improvements and fixes.",
"Date": "Thursday, June 1, 2023",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-252",
"Description": "Creator Program, parodies, tattoos, solo events, remixes, and more!",
"Date": "Saturday, May 27, 2023",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/r-u-s-t",
"Description": "Repopulation Unit Survival Test has begun, again? This Month's update brings the new Missile silo monument, lore, wipe events, SMG weapon buffs, building skins and much more.  ",
"Date": "Thursday, May 4, 2023",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-251",
"Description": "Upcoming Twitch Drops, Teaser Trailers, New Test Environments, IRL Turrets, Cool 3D Art, and more!",
"Date": "Friday, April 21, 2023",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/make-your-mark",
"Description": "More map markers, pings, double saddles, along with the usual fixes and improvements.   ",
"Date": "Thursday, April 6, 2023",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/eye-in-the-sky",
"Description": "RF devices have received an upgrade! Player-controlled drones, remote detonated C4, new CCTV camera and Industrial Improvements, along with the usual fixes and improvements.  ",
"Date": "Thursday, March 2, 2023",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-250",
"Description": "Charity Success, Industrial Update Brainstorming, Great Twitch Moments, community made Hapis & more!",
"Date": "Monday, February 20, 2023",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/industrial-update",
"Description": "Is it just a pipe dream? No! The era of automation is here! ",
"Date": "Thursday, February 2, 2023",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-249",
"Description": "Trust in Rust Tournament, Twitch Drops, Xmas Base Decoration winners, Cobalt Recruitment Propaganda, Deskmats, and more!",
"Date": "Friday, January 13, 2023",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/surviving-10-years",
"Description": "Servers are now wiped, Santa is packing up and clearing out the bodies, we hope you enjoyed the Holiday Season. In this blog, we recap 2022 and reveal some upcoming changes.",
"Date": "Thursday, January 5, 2023",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/christmas-2022",
"Description": "Season's beatings! It's that wonderful time of the year again. The Xmas event is now enabled, new cosmetic DLC, gingerbread houses? And Rustmas base decorating competition!",
"Date": "Thursday, December 15, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/the-big-qol-update",
"Description": "The big quality of life update, over 90 improvements and fixes. Rust is turning 9 years old, and Christmas is coming! ",
"Date": "Thursday, December 1, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-248",
"Description": "Twitch Drops, IRL storage box, cRust, PAX Cosplay, Rust's upcoming Birthday, and more!",
"Date": "Wednesday, November 16, 2022",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/prototype-17",
"Description": "This month we bring you a new pistol, caboose, blackjack, and Twitch drops, along with more fixes and improvements. ",
"Date": "Thursday, November 3, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-247",
"Description": "Charity Events, Low Poly Rust, Rivals Wars, real life workbench and more! ",
"Date": "Thursday, October 27, 2022",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/halloween-2022",
"Description": "A darkness is falling upon Rust, monsters are awakening, portals are opening, and skulls are breaking. Enter if you dare.",
"Date": "Thursday, October 20, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/the-lumberjack",
"Description": "New Lumberjack pack, furnace UI, server browser improvements, hardcore mode development and more!",
"Date": "Thursday, October 6, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-246",
"Description": "Charitable Rust Skin Contest, Hemp Base Empires, Rust Pro's, Penguins, and more! ",
"Date": "Friday, September 16, 2022",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/hardcore",
"Description": "This month we bring you hardcore game mode, revamped cooking and furnace UIs, storage buff along with more fixes and improvements. ",
"Date": "Friday, August 26, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-245",
"Description": "Rivals Recap, Raid Cams, Under water tricks, Speed painting and more!",
"Date": "Monday, August 22, 2022",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/trainyard-unloading",
"Description": "Trainyard unloading event, flash bang and molotov cocktail, improved cliff collision, performance, lighting improvements, Twitch Rivals and much more ",
"Date": "Thursday, August 4, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-244",
"Description": "Twitch Rivals, Real world salvage hammers, player made monuments, swanky desk mats, and more!",
"Date": "Thursday, July 21, 2022",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/july-2022-update",
"Description": "Combat balance, faster load times, chat filter and much more!  ",
"Date": "Thursday, July 7, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-243",
"Description": "Custom desk mats, Mars monuments, thoughtful poetry, and more!",
"Date": "Wednesday, June 15, 2022",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/the-combat-update",
"Description": "The biggest gunplay update since Rust's initial release, Hapis Island is back, Handmade LMG added, and scientists now patrol the Launch site along with a huge amount of other improvements and fixes.",
"Date": "Thursday, June 2, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-242",
"Description": "Staging updates, 3D Art, Rust painting, hotel funnies, and more!",
"Date": "Tuesday, May 24, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-242",
"Description": "Staging updates, 3D Art, Rust painting, hotel funnies, and more!",
"Date": "Tuesday, May 24, 2022",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/above-ground-trains-update",
"Description": "This month we bring you above-ground trains and tweaks to the ziplines along with more fixes and improvements. ",
"Date": "Thursday, May 5, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-241",
"Description": "Charity tournaments, teaser trailer, amazing artwork, shark attacks, and more!",
"Date": "Thursday, April 21, 2022",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/easter-2022",
"Description": "The Easter Egg hunt has begun!",
"Date": "Thursday, April 14, 2022",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/zipline-update",
"Description": "Above ground rail network, ziplines, achievements and more plus the usual bug fixes and improvements ",
"Date": "Thursday, April 7, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-240",
"Description": "Hotels, cool rust art, freaky animations, IFTTT, and more!",
"Date": "Wednesday, March 16, 2022",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/march-2022",
"Description": "New Monument lighting, world models, Soundtrack release, QOL changes, fixes and more.  ",
"Date": "Thursday, March 3, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/arctic-update",
"Description": "This months update brings a new monument, the Arctic Research Base, snowmobiles, polar bears, AI update, spray can item, QOL changes and much more!",
"Date": "Thursday, February 3, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/lunar-new-year-2022",
"Description": "Celebrate the 2022 Lunar new year, the year of the Tiger with a festive Tiger mask, craftable firecrackers, sky lantern, gong and more!",
"Date": "Friday, January 28, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/onwards-and-upwards",
"Description": "Servers are now wiped, Santa is packing up and clearing out the bodies, we hope you enjoyed the Holiday Season. In this blog, we recap 2021 and reveal some upcoming changes.",
"Date": "Thursday, January 6, 2022",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/christmas-2021",
"Description": "It's the most wonderful time of the year!",
"Date": "Thursday, December 16, 2021",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-239",
"Description": "Merry Rustmas!  Base decorating contest, Prop Hunt, Birthday fun, Rick Rolling, and more!",
"Date": "Tuesday, December 14, 2021",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/december-update-2021",
"Description": "Excavator changes, AI tweaks, some weapon balancing and the usual bug fixes and improvements",
"Date": "Thursday, December 2, 2021",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-237",
"Description": "Steam Awards, Charity Recaps, Blueprint Wipes, and more!",
"Date": "Friday, November 26, 2021",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/permanent-store",
"Description": "Store changes, Nomad suit and more",
"Date": "Thursday, November 18, 2021",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/mlrs-and-desert-base-update",
"Description": "This month's update introduces the Military Desert base monument containing the MLRS missile launcher system!",
"Date": "Thursday, November 4, 2021",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/halloween-2021",
"Description": "A darkness is falling upon Rust, monsters are awakening. Enter if you dare.",
"Date": "Thursday, October 28, 2021",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/missions-and-qol",
"Description": "This month's update brings the foundation of the mission system, huge amount of quality of life improvements, a camper vehicle module and much more!",
"Date": "Thursday, October 7, 2021",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-236",
"Description": "Charitable Rust, Skin contest, Dark Horse RP Server, and more!",
"Date": "Friday, October 1, 2021",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-236",
"Description": "Charitable Rust, Skin contest, Dark Horse RP Server, and more!",
"Date": "Friday, October 1, 2021",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/september-update-2021",
"Description": "Underwater Lab & submarine changes, crawling health reduced, improvements and more! ",
"Date": "Thursday, September 2, 2021",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/going-deep",
"Description": "This month's update brings Procedural Underwater Labs, Submarines, Torpedoes, Fishing, Sharks, Speargun, Updated underwater Ambience and much more!",
"Date": "Thursday, August 5, 2021",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-235",
"Description": "Map contest winners, Reporting tools, Commercials, and more!",
"Date": "Monday, July 26, 2021",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/wounding-and-voice-props",
"Description": "This month's update brings an updated wounding system, Nvidia DLSS, countryside tunnel entrances, monument AI, Voice props DLC, birds, improvements and more!",
"Date": "Thursday, July 1, 2021",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-234",
"Description": "Custom Map Contest, IFTTT Setups, Incoming DLC content, and more!",
"Date": "Friday, June 25, 2021",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/contacts-update",
"Description": "This month brings the new contact system, a complete AI rework along with updated animal models and Rust+ IFTTT integration.",
"Date": "Thursday, June 3, 2021",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-233",
"Description": "Custom Map Contest, Live Action Rust, Crane fights, and more!",
"Date": "Friday, May 28, 2021",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/world-revamp",
"Description": "This month's update brings a complete overhaul to Rust's graphics including some changes to monuments, Nvidia Reflex for reduced latency and the usual tweaks, fixes and improvements.",
"Date": "Thursday, May 6, 2021",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-232",
"Description": "Trust in Rust recap, Woodworking, Gmod crossovers, Hotels, and more!",
"Date": "Monday, April 26, 2021",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-232",
"Description": "Trust in Rust recap, Woodworking, Gmod crossovers, Hotels, and more!",
"Date": "Monday, April 26, 2021",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/gestures-update",
"Description": "This month's update brings Gestures so you can visually communicate with other players, poker tables to complete the Bandit Camp Casino, the Easter week event and the usual fixes and improvements.",
"Date": "Thursday, April 1, 2021",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/freight-transit-line",
"Description": "This month we've added an underground transit system, slot machines, a new round of Twitch drops and more improvements and fixes.",
"Date": "Thursday, March 4, 2021",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-231",
"Description": "Salvage yards with a DJ, Sci-Fi Maps, Roller Coasters, and Crabs!",
"Date": "Monday, February 22, 2021",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/lunar-new-year-2021",
"Description": "Celebrate the 2021 Lunar new year, the year of the Ox with a festive Metal Ox mask, craftable firecrackers, Fireworks, Gong and more!",
"Date": "Thursday, February 11, 2021",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/softcore-gamemode-update",
"Description": "This month we launch the Softcore Gamemode to soften the Rust experience for those that want it, a new automated drone delivery service for your vending needs, work on the Hapis revamp as well as the usual fixes and improvements.",
"Date": "Thursday, February 4, 2021",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-230",
"Description": "Rust RP, Rustpunk 2077, Map Tools, and ...fish?",
"Date": "Thursday, January 21, 2021",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/january-update",
"Description": "Santa is packing up and clearing out the bodies, we hope you enjoyed the Holiday Season. We're getting back to work after a couple of weeks off which is why this is a light blog and we are looking forward to the journey ahead in 2021!",
"Date": "Thursday, January 7, 2021",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-229",
"Description": "What a weird year!",
"Date": "Thursday, December 31, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/christmas-2020",
"Description": "It's the most wonderful time of the year!",
"Date": "Thursday, December 17, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/tech-tree-update",
"Description": "This month we have added the tech tree which will give you the choice of how you unlock your blueprints, this has also led to a huge update on item crafting recipes, tiers and the loot you will find in airdrops and heli/bradley crates.",
"Date": "Thursday, December 3, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-228",
"Description": "Twitch drops, Split rad, Elevator action, raves & more!",
"Date": "Wednesday, November 18, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/rust-twitch-drop",
"Description": "Twitch Drops have been enabled for all Rust Streamers! There are 3 exclusive items to be earned so what are you waiting for?",
"Date": "Thursday, November 12, 2020",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/stables-update",
"Description": "This month's update brings horse stables to purchase your trusty steeds, a new telephone system you can add to your base or find public phones along the roads and at monuments, a Taxi module for vehicles along with changes to vehicle costs, crafting and balancing along with the usual improvements and fixes and a moustache ??",
"Date": "Thursday, November 5, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/halloween-2020",
"Description": "",
"Date": "Monday, October 26, 2020",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/elevator-update",
"Description": "This update brings an elevator for easy travel between floors of your base, A real life Rust chair that gives you an exclusive in game chair too, The Spacesuit skin for the Hazmat outfit, changes to roads and added trails as well as the usual balancing and optimisations",
"Date": "Thursday, October 1, 2020",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-227",
"Description": "New merch launch, demons, puppets, and insanity!",
"Date": "Friday, September 25, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/boat-vendor-update",
"Description": "This month's update brings fishing villages to purchase boats including the new kayak blueprint, a storage monitor for use with the Rust+ app, some changes to electrified items and other improvements and optimisations.",
"Date": "Thursday, September 3, 2020",
"Category": "DEVBLOG"
},
{
"Link": "https://rust.facepunch.com/news/community-update-226",
"Description": "Charity hype, Rust on Mars, Lighthouse recreations, and more!",
"Date": "Friday, August 28, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-226",
"Description": "Charity hype, Rust on Mars, Lighthouse recreations, and more!",
"Date": "Friday, August 28, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/mixing-table-update",
"Description": "We've added a mixing table to create teas which provide time limited boosts as well as other items to craft, conditional roof tiles, a wooden barricade and an armoured passenger module for the vehicles along with various other fixes and improvements.",
"Date": "Thursday, August 6, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-225",
"Description": "Trust in Rust Charity, Pool Parties, Car Races, and more!",
"Date": "Friday, July 17, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/sunburn-dlc",
"Description": "Relax by the pool and let your loot worries drift away with our new Summer themed DLC",
"Date": "Thursday, July 9, 2020",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/vehicles-update",
"Description": "The modular vehicles are here along with changes to how you obtain air transport and other optimizations and improvements!",
"Date": "Thursday, July 2, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-224",
"Description": "Rust+, upcoming vehicles, gun tutorials, & more!",
"Date": "Thursday, June 25, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/companion-app-update",
"Description": "Rust+, smart devices, and a ton of new building blocks!",
"Date": "Thursday, June 4, 2020",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-223",
"Description": "Rust weddings, gear heads, movies, & more!",
"Date": "Thursday, May 28, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/vehicles-beta-branch",
"Description": "Vehicles Beta Branch Now Live",
"Date": "Monday, May 18, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/night-vision-update",
"Description": "This update brings Night Vision Goggles, Electric Heaters, Farming 2.0 additions and balances as well as other improvements and fixes.",
"Date": "Thursday, May 7, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-222",
"Description": "Trust in Rust COVID Charity Tournament, wholesome content creators, & AT-AT Walkers?",
"Date": "Wednesday, April 22, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/easter-2020",
"Description": "The Easter Egg hunt event has been enabled!",
"Date": "Thursday, April 9, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/farming-update",
"Description": "This update brings a whole revamp to the farming system along with new items to help you keep your crops in perfect condition as well as other improvements and fixes.",
"Date": "Thursday, April 2, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/cctv-update",
"Description": "This update brings CCTV Cameras and Computer Stations for all your surveillance needs as well as various optimizations and improvements.",
"Date": "Thursday, March 5, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-221",
"Description": "Hazzy artwork, solo plays, and vending machines with attitudes.",
"Date": "Friday, February 21, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/february-2020",
"Description": "Place any gun in your turret to defend your base, A new ring road around the island to lead you to your favourite monument, Steam Rich Presence on your friends list and life stats added to the death screen as well as various other optimizations and improvements.",
"Date": "Thursday, February 6, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-220",
"Description": "Dioramas, databases, and ...The End?",
"Date": "Wednesday, January 29, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/lunar-new-year-2020",
"Description": "To celebrate the start of the Lunar New Year (not that we like moonlight in Rust), we made some stuff!",
"Date": "Thursday, January 23, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/happynewyear",
"Description": "",
"Date": "Thursday, January 2, 2020",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/happynewyear",
"Description": "",
"Date": "Thursday, January 2, 2020",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/community-update-219",
"Description": "Happy Holidays!",
"Date": "Tuesday, December 31, 2019",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/xmas-2019",
"Description": "The most wonderful time of the year!",
"Date": "Wednesday, December 18, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/instrument-update",
"Description": "This month we introduce the Rust Instruments DLC as well as the usual optimizations and improvements and yes, you do have legs!",
"Date": "Thursday, December 5, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-218",
"Description": "Big announcements this month! Rust console is coming, Instrument DLC, Charitable Rust, and submarines?",
"Date": "Thursday, November 21, 2019",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/instrument-pack-dlc",
"Description": "Introducing our musical instrument DLC",
"Date": "Tuesday, November 19, 2019",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/november-update",
"Description": "Halloween is over, trees are fixed and more optimizations, fixes and improvements.",
"Date": "Thursday, November 7, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-217",
"Description": "Charitable Rust, Halloweenies, Electrical Masterminds, and more!",
"Date": "Thursday, October 24, 2019",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/halloween-2019",
"Description": "",
"Date": "Friday, October 18, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/october-update",
"Description": "We've added horse equipment, Crafting, Inventory, Map and Death screen improvements and various other fixes, balances and improvements ...",
"Date": "Thursday, October 3, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-216",
"Description": "Rustflix & Chill, Animated shorts, and more!",
"Date": "Thursday, September 19, 2019",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/transport-helicopter-update",
"Description": "The new Transport Helicopter arrives along with changes to auto turrets and various other fixes and optimizations",
"Date": "Friday, August 30, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-215",
"Description": "Community blog returns, charitable Rust and more!",
"Date": "Thursday, August 22, 2019",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/updated-linux-plans",
"Description": "An update to our previous plans for the Linux version of Rust",
"Date": "Thursday, August 15, 2019",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/linux-plans",
"Description": "Explaining our decisions regarding the future of the Linux version of Rust.",
"Date": "Friday, August 9, 2019",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/excavator-update",
"Description": "Excavator monument and more optimizations and fixes",
"Date": "Thursday, August 1, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/july-update1",
"Description": "Horse breeds and hitching posts, client and server optimizations and more",
"Date": "Thursday, July 4, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/chippy-arcade",
"Description": "Players of our game Chippy on Steam will get an exclusive Chippy Arcade machine to play with in game. Plus some optimisations and bug fixes for everyone.",
"Date": "Friday, June 21, 2019",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/june-update",
"Description": "Horseback riding, Balance changes, a New UI and more!",
"Date": "Thursday, June 6, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/smol-update",
"Description": "A smaller than usual 2-week update including a new Hunting Bow Model, Map changes, various bugfixes and more monument lighting changes",
"Date": "Thursday, May 2, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/happy-easter-2019",
"Description": "An easter event is upon us",
"Date": "Friday, April 19, 2019",
"Category": "devblog"
},
{
"Link": "https://rust.facepunch.com/news/qol-update",
"Description": "Fractional Reloading, The large Oilrig, New Weapons, A tonne of Quality of Life updates and more ...",
"Date": "Thursday, April 4, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/oilrig-update",
"Description": "A new oil rig monument, heavy scientists, ocean changes and more.",
"Date": "Thursday, March 7, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/february-update",
"Description": "Minicopters, RF Communications, Performance tweaks and more.",
"Date": "Thursday, February 7, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-214",
"Description": "Lots of tutorials, including how to make a lighthouse; a cartoon, RP, and more.",
"Date": "Tuesday, January 15, 2019",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/community-update-85-208",
"Description": "A new player record, awesome builds, incredible contraptions, and more.",
"Date": "Tuesday, January 8, 2019",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/hny",
"Description": "Santa packs his presents away for another year. We're wiping maps and fixing a few bugs, so here's a short blog as we get back to business.",
"Date": "Thursday, January 3, 2019",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-212",
"Description": "Xmas builds, electric contraptions, the most relaxing Rust video ever, and more.",
"Date": "Tuesday, December 18, 2018",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-212",
"Description": "Xmas builds, electric contraptions, the most relaxing Rust video ever, and more.",
"Date": "Tuesday, December 18, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/season-s-beatings",
"Description": "Santa comes to Rust, and everyone gets presents!",
"Date": "Thursday, December 13, 2018",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-211",
"Description": "Celebrating our 5th birthday with contraptions, art, and more. Thanks for playing!",
"Date": "Tuesday, December 11, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/electric-anniversary",
"Description": "Celebrating Rust's 5th anniversary with a huge update: electricity is here, enabling players to build elaborate defensive contraptions and other amazing devices. 

This patch wipes the servers. Enjoy!",
"Date": "Thursday, December 6, 2018",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-210",
"Description": "Electrical base defenses, maps, raid cams, and more.",
"Date": "Tuesday, December 4, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/community-update-209",
"Description": "Electric contraptions, cool maps, great art, Rust's Wild West, and more.",
"Date": "Tuesday, November 27, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/community-update-208",
"Description": "Ridiculous maps, art, contraptions, and more.",
"Date": "Tuesday, November 20, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/community-update-207",
"Description": "Charitable Rust, art, base tours, maps, and more.",
"Date": "Tuesday, November 13, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/community-update-206",
"Description": "A new concurrent player record, lots of art, bases, maps, and more.",
"Date": "Tuesday, November 6, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/the-hot-air-balloon-update",
"Description": "Up, up and away... Hot Air Balloons are in, along with anti-air missiles to take them down. There's a new type of Cargo Ship, nerfs, and more. This patch wipes the servers. Enjoy!",
"Date": "Thursday, November 1, 2018",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update205",
"Description": "Halloween builds, a working Beancan Grenade, and more.",
"Date": "Tuesday, October 30, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/happy-halloween",
"Description": "Halloween content is live!",
"Date": "Friday, October 19, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/the-cargo-ship-update",
"Description": "All aboard! The Cargo Ship event is live. The CCSC Lazarus patrols the waters, packed with Scientists and loot. We've also added the L96 rifle, a new scope, tactical gloves, and more. 

This patch wipes the servers. Enjoy!",
"Date": "Thursday, October 4, 2018",
"Category": "Devblog"
},
{
"Link": "https://rust.facepunch.com/news/community-update-204",
"Description": "Pyramids, castles, submarines, and more.",
"Date": "Tuesday, October 2, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/community-update-203",
"Description": "Mazes, art, custom maps, and more.",
"Date": "Tuesday, September 25, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/community-update-202",
"Description": "Ape maps, chemists, addiction, and more.",
"Date": "Tuesday, September 18, 2018",
"Category": "Категория не найдена"
},
{
"Link": "https://rust.facepunch.com/news/community-update-201",
"Description": "Floating islands, slingshots, giant crystals, and more.",