-
Notifications
You must be signed in to change notification settings - Fork 12
/
ChangeLog
2665 lines (1710 loc) · 84.1 KB
/
ChangeLog
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
Jun 21, 2015: Artem Vorotnikov <artem@vorotnikov.me>
* switch build system from autotools to cmake
* allow out-of-tree compilation
* generate games.c from games.xml at build time
* add libxml2 as build dependency (needed by games.c generation)
* add gettext as build dependency
* add minizip as dependency
* remove bzip2 support
* add GTK+3 build switch (allow to work on GTK+3 support, not yet usable)
* add deprecated disabling switch (allow to track down them)
* clean the repository from mistakenly tracked files
Jun 20, 2015: Thomas Debesse <xqf@illwieckz.net>
* move game launch option to appear before exit option
Jun 19, 2015: Thomas Debesse <xqf@illwieckz.net>
* remove xmms support
Jun 17, 2015: Artem Vorotnikov <artem@vorotnikov.me>
* remove trayicon
Jun 16, 2015: Artem Vorotnikov <artem@vorotnikov.me>
* add PO template generation script
* update PO template
Jun 16, 2015: Zack Middleton <zturtleman@gmail.com>
* fix World of Padman gametype names
Jun 10, 2015: Zack Middleton <zturtleman@gmail.com>
* fix OpenArena protocol list
* fix Quake3 memory settings
Jun 7, 2015: Artem Vorotnikov <artem@vorotnikov.me>
* port text widgets from GTK+1
* remove broken GTK+2 classes
Feb 16, 2015: Jordi Mallach <jordi@sindominio.net>
* install icons in the correct hicolor per-size paths.
Feb 11, 2015: IR4 <gutzu@gmx.ch>
* fix German translation
Feb 10, 2015: Jordi Mallach <jordi@sindominio.net>
* remove i18n.h and use on GLib's gi18n.h instead
* use unicode copyright symbol
Feb 9, 2015: Artem Vorotnikov <artem@vorotnikov.me>
* remove individual GLib/GTK includes
Feb 7, 2015: Artem Vorotnikov <artem@vorotnikov.me>
* migrate translations to Transifex
* fix Russian translation
Jan 23, 2015: Artem Vorotnikov <artem@vorotnikov.me>
* add gettext template
* remove GTK+1 support
* fix automake warnings
* remove splash
Jan 18, 2015: Thomas Debesse <xqf@illwieckz.net>
* fix Wolf:ET and ET:Legacy empty server query
Nov 25, 2014: Zack Middleton <zturtleman@gmail.com>
* fix Q3Rally and Warsow support
Nov 14, 2014: Thomas Debesse <xqf@illwieckz.net>
* recognize some OpenArena games hosted with Q3Arena and Q3Arena games
hosted by OpenArena
Nov 8, 2014: Thomas Debesse <xqf@illwieckz.net>
* add some Wolf:ET and ET:Legacy mods (like TrueCombat mods)
* filter escape codes in Call Of Duty gametypes
Nov 7, 2014: Thomas Debesse <xqf@illwieckz.net>
* synchronize translation files to source tree
* fix some translations
Nov 4, 2014: Arnaud Bonatti <arnaud.bonatti@gmail.com>
* use GtkBuilder for main window and toolbar
* use GtkAboutDialog
Nov 3, 2014: Thomas Debesse <xqf@illwieckz.net>
* update master server list
Nov 2, 2014: Thomas Debesse <xqf@illwieckz.net>
* fix Unvanquished, Turtle Arena, Xonotic and Urban Terror LAN server browsing
Nov 1, 2014: Zack Middleton <zturtleman@gmail.com>
* fix gametype strings for a few games
* fix ioquake3 and iostvef basegame gametype strings
Oct 31, 2014: Thomas Debesse <xqf@illwieckz.net>
* improve French translation
Oct 27, 2014: Thomas Debesse <xqf@illwieckz.net>
* fix gamesxml2c compilation warnings
Oct 26, 2014: Jordi Mallach <jordi@sindominio.net>
* fix a build issue related to the Savage hack
Oct 26, 2014: Thomas Debesse <xqf@illwieckz.net>
* use a new Savage hack to query Savage master server
* filter Savage color codes
Oct 25, 2014: Zack Middleton <zturtleman@gmail.com>
* fix some errors with Turtle Arena, a mismatch of server_type enum and games
array, plus missing qstat config
Oct 24, 2014: Zack Middleton <zturtleman@gmail.com>
* fix debug build compiling using clang
* fix gamesxml2c compilation
Oct 24, 2014: Thomas Debesse <xqf@illwieckz.net>
* fix another overflow in q3_unescape when the string ends with an escape code
* filter more color codes from Wolfenstein: Enemy Territory
Oct 23, 2014: Witold Piłat <witold.pilat@gmail.com>
* fix Jedi Outcast support
Oct 23, 2014: Thomas Debesse <xqf@illwieckz.net>
* fix an overflow in q3_unescape (14+ years old bug)
Oct 22, 2014: Thomas Debesse <xqf@illwieckz.net>
* workaround non ASCII characters in servers strings
* rewrite stat_master_input_callback and stat_servers_input_callback
Oct 16, 2014: Thomas Debesse <xqf@illwieckz.net>
* use Gstatus to check GIOChannel reads
Oct 15, 2014: Thomas Debesse <xqf@illwieckz.net>
* reuse mod and gametype descriptions for similar games
* rewrite deprecated gdk_pixbuf_*ref calls
Oct 14, 2014: Thomas Debesse <xqf@illwieckz.net>
* add the Turtle Arena game (thanks to Zack Middleton help)
* rewrite deprecated g_str* calls, and g_basename calls
Oct 13, 2014: Thomas Debesse <xqf@illwieckz.net>
* fix Quake 2 game properties
Oct 11, 2014: Thomas Debesse <xqf@ilwieckz.net>
* port obsolete fd handling code to GIOChannel (many thanks to Chris Vine for
his precious and generous help)
* fix the "source id not found" bug due to "g_source_remove" duplication
Oct 10, 2014: Thomas Debesse <xqf@illwieckz.net>
* add ZEQ2 Lite game
Oct 02, 2014: Thomas Debesse <xqf@illwieckz.net>
* add Jedi Outcast (JK2) game (VictorBE patch)
Oct 01, 2014: Thomas Debesse <xqf@illwieckz.net>
* fix Unvanquished status packet
* detect some Wolf:ET server with unusual version name
Sep 30, 2014: Thomas Debesse <xqf@illwieckz.net>
* add Enemy Territory:Legacy game
Sep 28, 2014: Thomas Debesse <xqf@illwieckz.net>
* distinguish Tremulous, Tremulous GPP and TremFusion
* some cleaning (id tech 3 derivatives are not described as tremulous anymore)
* rename tremulous server qstat variable to 'gamename'+'s' like others
* master server for Urban Terror updated
Nov 11, 2013: Thomas Debesse <xqf@illwieckz.net>
* follow XDG Base Directory Specification for user configuration directory
and migrate old directory to the new one
Nov 10, 2013: Thomas Debesse <xqf@illwieckz.net>
* add World of Padman game
Nov 06, 2013: Thomas Debesse <xqf@illwieckz.net>
* filter Unvanquished extended color codes
Nov 01, 2013: Thomas Debesse <xqf@illwieckz.net>
* complete French translation (100%)
Oct 31, 2013: Thomas Debesse <xqf@illwieckz.net>
* detect more ioquake3 variant as ioquake3
* launch some Quake3 derivatives as ioquake3 mod if standalone isn't installed
* add another master for Xonotic (dpmaster.tchr.no)
Oct 30, 2013: Thomas Debesse <xqf@illwieckz.net>
* recognize Urban Terror in Quake3 server list even if engine is bare ioquake3
* update and improve French translation (near 100%),
use French typography (thin space, apostrophe, French quote, etc.)
Oct 27, 2013: Thomas Debesse <xqf@illwieckz.net>
* add Alien Arena, Reaction and Q3 Rally games
* add LAN broadcast for Nexuiz, Xonotic, Warsow, Tremulous, Unvanquished,
OpenArena, Q3 Rally, Urban Terror, Reaction, Smokin' Guns and Alien Arena
* update Warsow protocol version and improve Warsow icon
* detect ioquake3 server as Quake3 server
Oct 26, 2013: Thomas Debesse <xqf@illwieckz.net>
* add Unvanquished, Xonotic and Smokin' Guns games
Oct 25, 2013: Thomas Debesse <xqf@illwieckz.net>
* fix "dlsym" compilation problem
* fix spelling (Debian patch, Jordi Mallach)
* fix intltool compilation problem (Debian patch, Jordi Mallach)
* fix redline check (Debian patch, Sven Joachim)
* fix autotools (Debian patch, Jordi Mallach)
* disable GTK+ 1.2 support (Debian patch, Jordi Mallach)
* fix X11 build dependency (Debian patch, Jordi Mallach)
* fix desktop file (Debian patch, Jordi Mallach)
* fix steam applaunch (Debian patch, Jo Shields)
* fix Voyager Elite Force xpm path file (Debian patch, Jordi Mallach)
* fix missing pixmap file opening (Debian patch, Lars Wirzenius)
Dec 21, 2010: Ludwig Nussel <l-n@users.sourceforge.net>
* add hack for systems without gtk1
Apr 25, 2009: Ludwig Nussel <l-n@users.sourceforge.net>
* increase buffer size for qstat version check
Jan 11, 2009: Ludwig Nussel <l-n@users.sourceforge.net>
* launch q3ut4 as Quake3 mod if ioUrbanTerror isn't configured
Nov 23, 2008: Ludwig Nussel <l-n@users.sourceforge.net>
* add ioUrbanTerror as separate game
(#2330187, patch by Alexander Hambalgo)
Sep 13, 2008: Ludwig Nussel <l-n@users.sourceforge.net>
* add OpenArena as separate game
Jan 13, 2008: Ludwig Nussel <l-n@users.sourceforge.net>
* add master for OpenArena (#1869975)
* add support for OpenTTD (#1254682)
Jan 11, 2008: Ludwig Nussel <l-n@users.sourceforge.net>
* fix busy loop when client exits
Nov 04, 2007: Ludwig Nussel <l-n@users.sourceforge.net>
* close fds before launching games
Nov 03, 2007: Ludwig Nussel <l-n@users.sourceforge.net>
* offer more q4 and etqw versions in preferences dialog
Oct 25, 2007: Ludwig Nussel <l-n@users.sourceforge.net>
* print only one single warning if gdk-pixbuf isn't installed
* add hexenworld master server support (Patch by O. Sezer)
* add support for ETQW
May 06, 2007: Ludwig Nussel <l-n@users.sourceforge.net>
* display user specified comment about why a server sucks when
trying to connect
Apr 06, 2007: Ludwig Nussel <l-n@users.sourceforge.net>
* add q3ut4 game types (#1693170)
Jan 09, 2007: Ludwig Nussel <l-n@users.sourceforge.net>
* use g_object_unref instead of gtk_object_unref for GTK2 (#1629598)
Jan 06, 2007: Ludwig Nussel <l-n@users.sourceforge.net>
* remove check for baseq3 directory (#1629221)
* fix reference counting of a GtkPixbuf when showing a map preview
(#1629309)
* add Urban Terror master server (#1629226)
Nov 04, 2006: Ludwig Nussel <l-n@users.sourceforge.net>
* bump version to 1.0.5
Oct 28, 2006: Jordi Mallach <jordi@sindominio.net>
* fix Polish and reenable
Oct 28, 2006: <l-n@users.sourceforge.net>
* update qstat.cfg from qstat
* disable Polish translation, file is broken
* add Warsow master protocol version 8
* update documentation
Oct 26, 2006: Jordi Mallach <jordi@sindominio.net>
* add Polish translation by Miłosz Kosobucki
* update Catalan translation
* tweak to desktop file
Jun 18, 2006: <l-n@users.sourceforge.net>
* split Half-Life support into old and new version
* fix saving of Half-Life player information
* allow to also delete servers that are not in the Favorites list
* display Warsow team colors (suggested by Tomasz Kalkosiński)
* fix compilation of stand alone rcon tool (patch by O. Sezer)
* filter QuakeWorld namefun characters in rcon (patch by Jorge Hodge)
Apr 08, 2006: <l-n@users.sourceforge.net>
* add Tremulous support
* do not pass -steam option to hl2
* strip newline when reading the doom3 version file
Jan 05, 2006: <l-n@users.sourceforge.net>
* fix cursor navigation in server list (thanks Simon Philips)
Jan 04, 2006: <l-n@users.sourceforge.net>
* add -Wl,--export-dynamic to LDFLAGS as xqf relies on it
Jan 03, 2006: <l-n@users.sourceforge.net>
* add TC:E game types (patch by Steffen Pankratz)
* remove AMS from qstat.cfg, it's native now
Dec 28, 2005: <l-n@users.sourceforge.net>
* add CoD protocol 6
Dec 25, 2005: <l-n@users.sourceforge.net>
* allow to copy server info values
Dec 13, 2005: <l-n@users.sourceforge.net>
* add new armyops master server
Nov 19, 2005: <l-n@users.sourceforge.net>
* fix SOF2 query (thanks to Wiesław Młynarski for reporting)
Nov 12, 2005: <l-n@users.sourceforge.net>
* clean up code duplication in pref.c
* add support for warsow level shots
Nov 01, 2005: <l-n@users.sourceforge.net>
* add gslist Q4 master
* add initial Warsow support, partially broken
Oct 27, 2005: <l-n@users.sourceforge.net>
* unescape Q4 clan tags (thanks Gonzalo Nemmi for reporting)
Oct 26, 2005: <l-n@users.sourceforge.net>
* make "Show only configured games" button reappear
* require qstat 2.10
Oct 23, 2005: <l-n@users.sourceforge.net>
* fix Q4 rcon
* change Q4 main mod to q4base
* set rcon password correctly when launching Q4
* bump version to 1.0.4.1
Oct 20, 2005: <l-n@users.sourceforge.net>
* bump version to 1.0.4
Oct 18, 2005: <l-n@users.sourceforge.net>
* use Q4 clan name if it exists
Oct 17, 2005: <l-n@users.sourceforge.net>
* add x86_64 to statistics page
* fix Q4 master server protocol prefs
Oct 09, 2005: <l-n@users.sourceforge.net>
* update NEWS
* show anti-cheat icon for Doom3 and Quake4 (thanks Timothee Besset for
reporting)
* try to support Quake4 map previews
Oct 07, 2005: <l-n@users.sourceforge.net>
* add initial Quake 4 support (thanks to Timothee Besset for providing
the necessary info)
Sep 20, 2005: Jordi Mallach <jordi@sindominio.net>
* update Catalan transaltion
Sep 13, 2005: <l-n@users.sourceforge.net>
* remove libtool
* set version to 1.0.3.1
* fix gensyms.pl, another attempt to finally fix gensyms.pl
Sep 12, 2005: <l-n@users.sourceforge.net>
* fix integer overflow in TGA loader
Sep 09, 2005: <l-n@users.sourceforge.net>
* fix some typos in German translation
Sep 07, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* update documentation and cleanup master server list by Steffen Pankratz
Aug 23, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* fix redial dialog not honoring private clients (reported by Julien
Langer)
Aug 20, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* fix gamespy and descent exec functions (reported by Steffen
Pankratz)
Aug 14, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* fix saving of server filters (reported by Steffen Pankratz)
Aug 07, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* add script install button
* add multiple sort modes per column (#1253101)
* fix compiler warnings
* add delete button for quickfilter
* update German translation
Aug 01, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* add demo script
Jul 03, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* add support for plugin scripts
Jun 04, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* move generic code for running a program into util.c
* add Nexuiz support
* check for q3 based gametypes before parsing the server info
Jun 01, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* add doom3 protocol 1.40 to menu (Steffen Pankratz)
Apr 29, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* honor setting to ignore bots when copying server info to clipboard
Apr 15, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* add q3a Excessive Plus gametypes (patch by Jason Santos)
Apr 04, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* add Finish translation by Sami Laitinen
Mar 24, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* use separate server type for ut2004
* add epic's second ut2004 master
Mar 22, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* change default ET protocol to 84, fix qstat.cfg
Mar 06, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* update NEWS file for 1.0.3
Feb 22, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* fix ut2k4 and doom3 master query not working after starting xqf
Feb 20, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* fix logic for applying colors
Feb 19, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* use GTK2 colors and Raleigh theme by default in GTK1 version
* update German translation
* reorder some structs to reduce size
Feb 18, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* fix use of wrong server type when adding servers (#1143801, thanks roerich
and kracho for helping to debug this)
Feb 05, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* make all icons themeable
* make yellow man actually yellow instead of green
Feb 04, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* add --nomapscan option
* add ET Gslist master
* mark q3 servers with protocol different from master as incompatible
Feb 03, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* update Danish translation (Morten Brix Pedersen)
Jan 30, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* remove quakeforge specials
* remove no longer needed ssam notes
* fix saving of quake2 passwords (#1112381)
Jan 25, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* add Half Life2 support (untested)
Jan 21, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* add highly experimental: optionally use DT_AUXILIARY stub libraries to
not depend on libGeoIP and libgdk_pixbuf at runtime
Jan 12, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* split get_new_defaults into game specific functions
* fix doom3 protocol detection (#1092165)
Jan 11, 2005: Ludwig Nussel <l-n@users.sourceforge.net>
* fix crashes due to wrong return type of callbacks (#1098910, patch by Jochen
Baier)
* fix q1/qw/q2 skin list update
Dec 23, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* do not try to scan home directories for maps if the directory
doesn't exist (reported by Steffen Pankratz)
Dec 22, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* prepare for 1.0.2
* set TF_U2_NAMES qstat flag for armyops
* require qstat 2.7
Dec 19, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* fix manpage
* add Netpanzer master
Nov 26, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add gslist master for UT, remove Epic one
* bump version to 1.0.1
Nov 22, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* update German translation because of typo
* set window type of splash screen in gtk2 version
Nov 22, 2004: Jordi Mallach <jordi@sindominio.net>
* fix typo: Soure -> Source
* update Catalan and Spanish translations
Nov 21, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* fix compatability issues with gcc 2.95
* remove unneeded tray icon animation frames
Nov 17, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* use non-blocking socket for rcon
* add small timeout to catch replies with multiple packets in xqf-rcon
* make xqf-recon optionally read the rcon passwort from the environment
variable XQF_RCON_PASSWORD
* honor osmask of Doom3 servers and check for Linux support
(suggested by TTimo)
* update German translation
Nov 13, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* update German translation
* add wolfmp as main mod of rtcw (reported by Ruediger Meier)
Nov 11, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add options for qstat source ip and port range (feature #1034631)
Nov 06, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add progress bar to splash screen when clicking the "scan now" button
Nov 01, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add country statistics
* use an empty flag for countries without flag for proper alignment
* add "clear servers" menu item for master servers
* delete HL WON servers as they are switched off
Oct 17, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add UT2004 master server support, needs qstat from CVS
Oct 14, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add descent3 server listing from d3.descent.cx. Thanks Esa for providing a
format suitable for XQF!
Oct 10, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* show UT200[34] mutators as tree like dmflags
* add gslist master for RTCW
Oct 09, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* fix descent3: use Gamespy protocol instead of PXO protocol, remove no longer
working masters, use custom launch function (uses --directip), fix saving of
player info
Oct 04, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* fix segfault at doom3 version detection (reported by Steffen Pankratz)
Oct 02, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add automatically detection for doom3 network protocol version
* add support for Netpanzer (> 0.1.6). Thanks Matze Braun for the patch.
Sep 26, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add support for gslist. Thanks to Luigi Auriemma for making this
possible!
* remove broken master servers, add some new ones for quake2
* update German translation
* bump version to 1.0.0.2
Sep 12, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* fix UT99 master server listing
* allow to completely overwrite the qstat master argument via config file
Aug 22, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* set default master protocol version for COD to 5
Aug 18, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* apply brightness correction to mapshots
Aug 17, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* fix usage of AC_ARG_ENABLE (#1010440). Thanks Mike Frysinger for reporting.
Aug 16, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* fix quickfilter not working when pressing backspace or delete in the empty
textentry (thanks Ruediger Meier for spotting this one).
* add new tray icons from Jochen Baier
* bump version to 1.0.0.1
Aug 15, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* fix compile with gcc 2.95 (patch by Thomas Zajic)
* fix --add when one server without type is specified whose port matches
exactly one game.
Aug 15, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* bump version to 1.0
Aug 14, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* use TGA loader from quake2 if gdk-pixbuf fails to load a mapshot. Useful for
at least Q3, RTCW, ET and Doom3 mapshots.
* require qstat version 2.6
Aug 13, 2004: Jordi Mallach <jordi@sindominio.net>
* update Catalan and Spanish translations
* fix Makevar so intltool works ok
* remove updateonepo, use intltool-update instead.
Aug 13, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add Doom 3 rcon support
Aug 12, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* fix properly detection for installed Doom 3 maps. No preview though since
gdk-pixbuf doesn't support the TGA format used by id :-(
Aug 09, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* remove some obsolete stuff from documentation, update list of supported games
Aug 07, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add initial Doom 3 support
Aug 01, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add support multiple words in quick filter (AND)
* update German translation
Jul 24, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* new feature: quick filter
Jul 18, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* do not set fs_game if mod is a 'main mod'
Jul 14, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* fix NULL pointer dereference when sorting rule/value columns with subtress
(#990692)
Jul 13, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* update German translation
Jul 12, 2004: Jordi Mallach <jordi@sindominio.net>
* update Catalan translation.
Jul 04, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* rename xml tags suggest_commands -> command, main_mods -> main_mod
* make command a NULL terminated string list
* clean up some file dialog handling
* fix sound test button not playing sound before pressing ok
Jun 28, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* make Copy and Copy+ menu items also copy to CLIPBOARD instead of only PRIMARY
to allow paste via Ctrl-v
Jun 19, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* use separate types for ET and RTCW so update from master doesn't throw away
all servers. Today's qstat cvs version required.
* add gametypes for World of Padman Q3A mod
* add support for Jedi Academy (wine game, patch by Steffen Pankratz)
* add an animated tray icon for the GTK2 version (patch by Jochen Baier)
Jun 06, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* update Danish translation (Morten Brix Pedersen)
Jun 01, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add support for Americas Army 2.1. Still no master, old version no longer
supported, requires recent qstat from cvs (gs2 protocol)
May 29, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add AlienSwarm custom arguments for UT2004, also specify separate log file
for each mod (patch by Andreas Schneider)
May 24, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add Troopers custom arguments for UT2004 (patch by Andreas Schneider)
May 23, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* enable custom args for all games
* add RedOrchestra custom arguments for UT2004
May 16, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* replace no longer working Tribes2 master server addresses with
current ones (#954570)
May 09, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* create LaunchInfo.txt by default
* fix executable path: when suggesting a command, don't add full path (since
it will be found in $PATH anyway)
* clean up resolve_path. Let it do path and tilde expansion and don't suggest
directories in $PATH.
* fix some minor memory leaks
* export the variables XQF_SERVER_NAME, XQF_SERVER_MAP, XQF_SERVER_HOSTNAME and
XQF_SERVER_GAME when launching a game (suggested by Ruediger Meier)
* do not inherit some tags from base game, e.g. suggested commands
* use steam1.steampowered.com and steam2.steampowered.com as steam master
May 08, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add support for Half-Life steam master. Nasty hack, hopefully doesn't break
other stuff.
* set anti-cheat flag for VAC (secure != 0)
* increase version to 0.9.14.1
* redial also when only private slots are free and no password is set
(suggested by John Stotler)
* add default_home and main_mods (e.g. baseq3) tags in games.xml
* add support for custom config in all Q3A based games (suggested by Ruediger
Meier)
* fix fs_game for RTCW, offer it for ET (reported by Ruediger Meier)
Mar 30, 2004: Jordi Mallach <jordi@sindominio.net>
* add Russian translation by Dan Korostelev <dan@ats.energo.ru>.
Mar 22, 2004: Jordi Mallach <jordi@sindominio.net>
* fix clean rule in toplevel Makefile.am.
Mar 21, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* bump version to 0.9.14
Mar 20, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* load GeoIP.dat from location specified in environment variable xqf_GEOIPDAT
Mar 16, 2004: Jordi Mallach <jordi@sindominio.net>
* update Catalan and Spanish translations.
Mar 14, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* redesign about dialog to include logo
* unify summary in .desktop and .spec file
* bump version to 0.9.13.2
Feb 17, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add LAN master for ut2004
* detect whether a server is ut2003 or ut2004
* update ut2004 icon
Feb 16, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* do not unset game if it's baseq3 to be able to filter for it
Feb 14, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* also check GamePassword rule which is used by UT2004
* add multiplay.co.uk server listing
Feb 13, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* move suggest_commands into xml file
* add support for UT2004. Someone please tell me a master server for it!
Feb 09, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* introduce GAME_ADMIN which allows to enter an rcon password without actually
supporting rcon
* fix launching savage with password, support rcon password. Thanks Andreas
Schneider for reporting.
Feb 08, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* allow tga as q3 mapshot
Feb 02, 2004: Jordi Mallach <jordi@sindominio.net>
* switch to intltoolize
* add desktop file for GNOME and KDE
* update Catalan translation
Jan 17, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add g_gear flags of Urban Terror 3.2
Jan 15, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* update Danish translation (Morten Brix Pedersen)
* update German translation
Jan 14, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* fix GTK2 application icon
Jan 12, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add support for BF1942 (wine game). Uses EYE protocol, no official master,
LAN browsing doesn't work.
* load game icons by name via dlsym to reduce number of c&p operations when
adding new games
* rename "pix" tag in xml to "icon"
* use config_is_valid_generic for ET
Jan 08, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* move struct games into games.c which is now generated from games.xml by
gamesxml2c
* do not pass tribes2 name if empty
* add --dontlaunch parameter for internal use
* add exec function to hexenworld (anyone ever played that game??)
* make sof2 master protcol configurable
* support password on savage servers. Thanks Andreas Schneider for reporting.
Jan 07, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* check props pointer before dereferencing it…
Jan 05, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add comment and "this server sucks" properties for servers
Jan 02, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* add lan masters per default
* fix lan browsing for Americas Army
Jan 01, 2004: Ludwig Nussel <l-n@users.sourceforge.net>
* remove multiplay.co.uk AA master
* fix some function prototypes
* add --add command line option to just add a server to favorites without
launching a game
Dec 27, 2003: Ludwig Nussel <l-n@users.sourceforge.net>
* add support for postal2, no master.
Dec 18, 2003: Ludwig Nussel <l-n@users.sourceforge.net>
* fix LAN browsing. Only worked by luck.
Dec 15, 2003: Ludwig Nussel <l-n@users.sourceforge.net>
* fix crash caused by wrong reference counting of uservers
* use mkstemp instead of pid based temporary file to avoid symlink attacks
Dec 14, 2003: Ludwig Nussel <l-n@users.sourceforge.net>
* fix --launch to now guesses the type from the port if only one argument
is given. If not enough information is given (no type, no port) it will
prompt the user to choose the type. This way, it should be possible to
use --launch now e.g. from within IRC clients where you don't know the
type before.
* add second argument to add_server_dialog() to preset the address
* make combo_set_vals() work with empty str argument
Dec 02, 2003: Ludwig Nussel <l-n@users.sourceforge.net>
* convert server names from iso-8859-1 to UTF-8 if needed
Nov 30, 2003: Ludwig Nussel <l-n@users.sourceforge.net>
* new function create_server_type_menu creates a GtkOptionMenu with all games