-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Changelogs.html
1998 lines (1995 loc) · 58.2 KB
/
Changelogs.html
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
<!-- Copyright (C) 2018-2022 Kataiser & https://github.com/Kataiser/tf2-rich-presence/contributors -->
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>
TF2 Rich Presence changelogs
</title>
<meta charset="utf-8">
<link href="https://github.com/Kataiser/tf2-rich-presence/raw/master/TF2%20Rich%20Presence/tf2_logo_blurple_small.ico" rel="shortcut icon" type="image/x-icon">
<style>
body {
text-align: center;
font-family: sans-serif;
background: #111314;
}
.column {
background: white;
width: 1000px;
margin: 0 auto;
text-align: left;
padding: 0px 20px 20px 20px;
border: 4px solid #7289DA;
}
h4 {
font-weight: normal;
border-bottom: 1px solid #99AAB5;
padding-top: 30px;
font-size: 1.5em;
color: rgba(0, 0, 0, 0.8);
-webkit-margin-before: 0;
}
a {
text-decoration: none;
}
h3 {
padding-left: 20px;
}
ul {
padding-left: 60px;
}
p {
padding-left: 20px;
}
.version_a {
font-size: 1.25em;
vertical-align: middle;
}
img {
width: 1em;
height: 1em;
vertical-align: middle;
padding-bottom: 0.3em;
}
h1 {
-webkit-margin-after: 0;
}
.underlined_link {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="column">
<h1>
<a href="https://github.com/Kataiser/tf2-rich-presence">
<img src="https://github.com/Kataiser/tf2-rich-presence/raw/master/TF2%20Rich%20Presence/tf2_logo_blurple_small.ico"/>
TF2 Rich Presence
</a>
changelogs
</h1>
<div>Generated from <a class="underlined_link" href="https://github.com/Kataiser/tf2-rich-presence/releases">releases</a></div>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1.11">
v2.1.11
</a>
(2024-12-17)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Smissmas 2024 maps
<ul>
<li>
Overcast, Fortezza, Penguin Peak, Patagonia, Cutter, and Maul
</li>
</ul>
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1.10">
v2.1.10
</a>
(2024-10-13)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Scream Fortress 2024 maps
<ul>
<li>
Toxic, Darkmarsh, Freaky Fair, Dynamite, Circus, Outburst, and Blazehattan
</li>
</ul>
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1.9">
v2.1.9
</a>
(2024-07-18)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Summer 2024 maps
<ul>
<li>
Embargo, Odyssey, Megaton, Cachoeira, Overgrown, Hadal, Applejack, Atom Smash, Canaveral, and Burghausen
</li>
</ul>
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1.8">
v2.1.8
</a>
(2024-04-18)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for tf_win64.exe
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed ctf_turbine's gamemode being prop hunt
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1.7">
v2.1.7
</a>
(2023-12-07)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Smissmas maps
<ul>
<li>
Snowtower, Krampus, Haarp, Brew, Hacksaw, Turbine Center, Carrier, Galleria, Emerge, and Camber
</li>
</ul>
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1.6">
v2.1.6
</a>
(2023-10-12)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Scream Fortress maps
<ul>
<li>
Perks, Slime, Lava Pit, Mannsylvania, Sandcastle, Spineyard, Corruption, Murky, Atoll, Woods, Sanitarium, and Devastation
</li>
</ul>
</li>
<li>
Added current map name as a rich presence line option
</li>
<li>
Added --launch command line flag to automatically launch TF2 when opening the program
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1.5">
v2.1.5
</a>
(2023-07-12)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Summer 2023 maps
<ul>
<li>
Sharkbay, Rotunda, Phoenix, Cashworks, Venice, Reckoner, Sulfur, Hardwood, Pelican Peak, Selbyen, VSH Tiny Rock, VSH Distillery, VSH Skirmish, and VSH Nucleus
</li>
</ul>
</li>
<li>
Updated the localization files (thanks DznDani for Spanish improvements)
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed an offscreen window position being saved when closing the program while minimized
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1.4">
v2.1.4
</a>
(2022-12-07)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
(From v2.1.3) Added support for the new Smissmas maps
<ul>
<li>
Frostwatch, Frostcliff, Rumford, Frosty, and Coal Pit
</li>
</ul>
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed ctf_frosty being labelled as Snowfall instead of Frosty
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1.3">
v2.1.3
</a>
(2022-12-06)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Smissmas maps
<ul>
<li>
Frostwatch, Frostcliff, Rumford, Frosty, and Coal Pit
</li>
</ul>
</li>
<li>
Slightly improved performance
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a game state detection bug when changing maps
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1.2">
v2.1.2
</a>
(2022-10-06)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Scream Fortress maps
<ul>
<li>
Soul-Mill, Helltrain, Bonesaw, Crasher, Ghoulpit, and Spookeyridge
</li>
</ul>
</li>
<li>
Added server name as a possible rich presence line
</li>
<li>
Removed custom gamemodes from localization
</li>
<li>
Open console.log in Explorer instead of an editor
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a startup crash when running as administrator
</li>
<li>
Fixed a freeze when sending activity to Discord
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1.1">
v2.1.1
</a>
(2021-12-04)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Smissmas maps
<ul>
<li>
Altitude, Bread Space, Cascade, Chilly, Doublefrost, and Polar
</li>
</ul>
</li>
<li>
Added a button to open console.log
</li>
<li>
Updated the localization files (thanks Blueberryy for Russian improvements)
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a crash when getting server data
</li>
<li>
Fixed a crash when playing a non-TF2 hl2.exe game
</li>
<li>
Fixed a game state detection error
</li>
<li>
Fixed console.log cleanup issues
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.1">
v2.1
</a>
(2021-10-05)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Scream Fortress maps
<ul>
<li>
Farmageddon, Sinthetic, Los Muertos, Erebus, Terror, and Graveyard
</li>
</ul>
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a few game state detection bugs
</li>
<li>
Fixed a crash when looking for the TF2 installation
</li>
<li>
Fixed a crash when getting server data
</li>
<li>
Fixed a crash when parsing localconfig.vdf
</li>
<li>
Fixed a crash when scanning processes
</li>
<li>
Fixed a logger crash
</li>
<li>
Fixed a warning when user has no TF2 launch options
</li>
<li>
Fixed several minor errors logs
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v2.0">
v2.0
</a>
(2021-08-17)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added an actual GUI, no more ugly command window
</li>
<li>
Added map images instead of just gamemodes
</li>
<li>
Large code rewrite: easier to work on, less buggy, more reliable
</li>
<li>
Added an installer
</li>
<li>
Added a button to launch TF2 directly, no need to add -condebug to launch options
</li>
<li>
Improved custom functionality interface
</li>
<li>
Updated the localization file (thanks Kotoki1337 for Chinese improvements)
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a crash when scanning Steam configs
</li>
<li>
Fixed a crash when scanning processes
</li>
<li>
Fixed a case where closed processes wouldn't be detected after relaunching
</li>
<li>
Fixed server data possibly being blank instead of unknown on timeout
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.15">
v1.15
</a>
(2021-01-01)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Can now get match player count or number of kills from server
<ul>
<li>
Second line options are now player count, time on map, kills, and class
</li>
<li>
Player count is the new default, but your previous settings won't be changed
</li>
</ul>
</li>
<li>
Removed custom map gamemode API lookup from teamwork.tf, now exclusively uses file name
<ul>
<li>
It was very rarely used at this point, slow, often wrong, and not worth maintaining
</li>
</ul>
</li>
<li>
The trim console.log setting now removes some common errors, fixing game state detection bugs
</li>
<li>
Updated the localization file
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a crash regarding Windows username
</li>
<li>
Fixed issues when setting number settings to blank
</li>
<li>
Fixed cases where disabling log reporting would be ignored
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.14.6">
v1.14.6
</a>
(2020-12-12)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a settings window crash when settings have been added across versions
</li>
<li>
Fixed various crashes related to log files
</li>
<li>
Fixed a failure to detect TF2 if the install path is capitalized incorrectly
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.14.5">
v1.14.5
</a>
(2020-12-03)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Smissmas maps
<ul>
<li>
Pier, Snowfall, SnowVille, and Wutville
</li>
</ul>
</li>
<li>
Added a setting for refresh delay when TF2 and Discord aren't running
</li>
<li>
Removed 600 small unnecessary files from the installation
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a couple game state detection bugs (chat messages and canceling loading)
<ul>
<li>
Canceling loading is still not always detected, unsure if a fix is possible
</li>
</ul>
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.14.4">
v1.14.4
</a>
(2020-10-02)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for the new Scream Fortress maps
<ul>
<li>
Megalo, Bloodwater, Hassle Castle, and Moldergrove
</li>
</ul>
</li>
<li>
Added support for another zombie gamemode
</li>
<li>
Minor performance improvements
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Attempt to handle a rare game state detection bug (class without map)
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.14.3">
v1.14.3
</a>
(2020-09-22)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added support for some zombie gamemodes
</li>
<li>
Better support for several other custom gamemodes
</li>
<li>
"Limit console.log's size" setting now also controls removing empty lines (bot spam usually)
</li>
<li>
Minor performance improvements
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a crash when scanning for the game process
</li>
<li>
Fixed a crash when compressing old logs
</li>
<li>
Fixed several crashes involving file writing
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.14.2">
v1.14.2
</a>
(2020-09-07)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Use proper map name in window title
</li>
<li>
Preserve settings window position when changing language
</li>
<li>
Performance improvements
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a game state detection bug (failing to connect to a server)
</li>
<li>
Fixed console.log size limiting
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.14.1">
v1.14.1
</a>
(2020-08-29)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added background01 and devtest to supported vanilla maps
</li>
<li>
Minor performance improvements
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a game state detection bug when disconnecting from some matches
</li>
<li>
Fixed a missing output when class is unselected
</li>
<li>
Fixed a freeze when pressing "Restore defaults" in settings
</li>
<li>
Fixed a probably possible freeze on networking errors
</li>
<li>
Fixed a rare crash when loading custom maps
</li>
<li>
Fixed custom functionality
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.14">
v1.14
</a>
(2020-08-11)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Don't assume queueing for a game means "in menus"
</li>
<li>
Immediately update the settings menu when the language is changed
</li>
<li>
Added Korean, Japanese (thanks hinataaki), and Chinese localization
<ul>
<li>
Require a Windows terminal setting change, instructions are included
</li>
</ul>
</li>
<li>
Changed Portuguese into Brazilian Portuguese
</li>
<li>
Russian localization improvements (thanks Mia0013)
</li>
<li>
Minor performance improvements
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Many game state detection bugs fixed
</li>
<li>
Fixed a crash when DB.json fails to load
</li>
<li>
Fixed a crash when handling a minor error
</li>
<li>
Fixed several crashes when installed files are missing
</li>
<li>
Fixed an elapsed time formatting bug
</li>
<li>
Fixed unselected radio buttons when restoring default settings
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.13.2">
v1.13.2
</a>
(2020-04-25)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Minor performance improvements
</li>
<li>
Updated the localization file
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed two crashes and an error when a setting fails to load
</li>
<li>
Fixed some other miscellaneous crashes
</li>
<li>
Fixed another case where a server disconnect wasn't detected
</li>
<li>
Fixed detecting the state from the last time the game was open (again)
</li>
<li>
Actually call custom.loop_middle()
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.13.1">
v1.13.1
</a>
(2020-04-01)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Show the current state in the window title
</li>
<li>
Added some custom functionality support, see resources\custom.py
</li>
<li>
Small performance improvements
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed a crash when Steam couldn't be detected
</li>
<li>
Fixed a crash as TF2, Discord, or Steam are closed
</li>
</ul>
<p>
Thank you all for 1000 downloads! <3
</p>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.13">
v1.13
</a>
(2020-03-12)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added detection for hosting a server
</li>
<li>
Reversed the order of "class" and "time on map" in the console
</li>
<li>
Don't say "restart TF2" in the -condebug instructions if it's not running
</li>
<li>
Performance improvements
</li>
<li>
Moved the license file
</li>
<li>
Updated the localization file
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed detecting the state from the last time the game is open while it's loading
</li>
<li>
Fixed the settings menu not always opening in the center of the screen
</li>
<li>
Fixed main menu output when using a language that isn't English
</li>
</ul>
<h4>
<a class="version_a" href="https://github.com/Kataiser/tf2-rich-presence/releases/tag/v1.12">
v1.12
</a>
(2020-01-15)
</h4>
<div class="markdown-heading">
<h3 class="heading-element">
Changes
</h3>
</div>
<ul>
<li>
Added a setting to trim console.log's size, for performance
</li>
<li>
Elapsed time is now based on TF2's start time, not TF2 Rich Presence's
</li>
<li>
Reduced file size of old logs
</li>
</ul>
<div class="markdown-heading">
<h3 class="heading-element">
Fixes
</h3>
</div>
<ul>
<li>
Fixed custom map gamemode finding using way too much internet
</li>
<li>
Fixed some potential crashes not getting reported
</li>
</ul>
<h4>