forked from Slipyx/Mint-Doom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
6338 lines (3542 loc) · 143 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
2011-05-17 23:51:37 fraggle
Add dependency for INSTALL generation.
2011-05-17 23:06:22 fraggle
Detect chex.deh if it is in the same directory as the IWAD file.
2011-05-14 22:50:46 fraggle
Fix display of ENDOOM screen.
2011-05-14 22:47:12 fraggle
Fix install of screensaver desktop file.
2011-05-14 22:07:55 fraggle
Add freedesktop.org desktop files for chocolate-doom, chocolate-setup
(thanks Adrián Chaves Fernández).
2011-05-14 21:11:26 fraggle
Convert build system to using the PROGRAM_PREFIX system used on
raven-branch.
2011-05-08 19:32:02 fraggle
Update NEWS.
2011-05-08 19:29:46 fraggle
Allow IWAD files to be double-clicked in the finder to set the IWAD
configuration.
2011-05-08 01:31:01 fraggle
Shut up compiler warnings.
2011-05-08 00:52:26 fraggle
Rework OS X launcher package. Include documentation files within the
application bundle and add a help menu with links. Rework .dmg
generation to generate a file with a "fancy" background image and
overall nicer appearance.
2011-04-26 06:49:53 quasar_te
Support for Win32 native OPL output when compiled with Microsoft
Visual C++. Confirmed to work with Aureal Vortex AU8830 in Win98SE by
GhostlyDeath.
2011-04-24 23:22:11 fraggle
Infer -server when -privateserver is specified (thanks Porsche Monty).
2011-04-24 22:39:31 fraggle
Add test button to joystick menu in setup tool (thanks Alexandre
Xavier).
2011-04-18 23:10:16 fraggle
Add test hack for simulating Porsche Monty's scanline emulation (see
comment in file).
2011-04-17 18:33:04 fraggle
Fix libtextscreen window hotkeys to work when shift is held down /
capslock turned on. Fix a similar problem in-game when typing cheat
codes or using menu hotkeys (thanks Alexandre Xavier).
2011-04-17 17:53:47 fraggle
Make Final Doom IWAD labels shorter, so they don't make the launch
windows grow.
2011-04-11 20:49:45 fraggle
Allow the shift key to be held down when changing key/mouse/joystick
bindings to prevent bindings to the same key from being cleared
(thanks myk).
2011-04-09 01:27:13 fraggle
Fix action area minimum width calculation.
2011-04-04 21:30:17 fraggle
Close dropdown list popup windows when clicking outside the window.
2011-04-04 21:12:59 fraggle
Fix crash.
2011-04-04 21:09:42 fraggle
Fix crash.
2011-04-04 21:07:07 fraggle
Change the background color when hovering over widgets.
2011-04-04 19:40:28 fraggle
Change setup tool default sampling rate to 44100Hz to match the game
(thanks Alexandre Xavier).
2011-03-30 20:16:40 fraggle
Add a symlink hack to work around the fact that OS X doesn't like
paths in MANPATH to contain spaces.
2011-03-30 20:00:51 fraggle
On OS X, display a dialog box when exiting with I_Error, like on
Windows.
2011-03-29 00:48:31 fraggle
Remove the BUGS file as it doesn't really contain any useful
information.
2011-03-29 00:39:48 fraggle
Add vim modeline for text wrapping to documentation text files.
2011-03-29 00:33:09 fraggle
Emulate bug with IDMUS cheat when emulating v1.9 (thanks Alexandre
Xavier).
2011-03-28 22:36:00 fraggle
Fix OPL MIDI playback when using an empty .mus / .mid file (thanks
Alexandre Xavier).
2011-03-28 22:32:14 fraggle
Allow .lmp files to be loaded (and demo files to be played back) that
have long filenames (thanks blzut3).
2011-03-28 01:24:47 fraggle
Fix weapon cycling from the shotgun to the chaingun in Doom 1 (thanks
Alexandre Xavier).
2011-03-28 00:45:53 fraggle
Scroll faster in reaction to the scroll wheel.
2011-03-28 00:42:00 fraggle
Change default sfx/music volume in setup tool to 8, to match the game
(thanks Alexandre Xavier).
2011-03-22 21:33:17 fraggle
Switch separator to show "screen mode" or "window size" depending on
whether fullscreen is turned on or not.
2011-03-22 21:08:04 fraggle
Fix scrollbars so that clicks scroll the pane to a location that
matches the clicked location. Interpret mousewheel events so that
scroll panes can be scrolled.
2011-03-22 19:49:31 fraggle
Reorganise the display settings window.
2011-03-17 22:54:33 fraggle
Add back -a option to automake, and remove INSTALL if automake
installs it.
2011-03-17 22:43:56 fraggle
Fix up placement of display settings window.
2011-03-15 22:41:22 fraggle
Fix NEWS entry to list the full name for Alexandre Xavier.
2011-03-10 19:47:14 fraggle
Include Unix manpages in MacOS package, and set MANPATH to point to
them when opening a terminal window.
2011-03-10 19:45:29 fraggle
Minor tweaks to MacOS instructions.
2011-03-10 19:20:10 fraggle
Minor tweak to INSTALL instructions.
2011-03-10 19:03:23 fraggle
Replace the INSTALL file with a template version that is customized to
different platforms.
2011-03-09 19:02:15 fraggle
Add null sector dereference emulation code from Prboom+, to fix desync
with CLNJ-506.LMP (thanks entryway).
2011-03-09 01:06:07 fraggle
Add support for the alternate version of the Final Doom executable
that fixes the demo loop crash (thanks Porsche Monty, Enjay).
2011-03-06 20:59:51 fraggle
Discard very short sound effects and strip lead-in / lead-out samples
that apparently aren't played by Vanilla Doom (thanks Quasar).
2011-03-03 21:41:51 fraggle
Fix Visual Studio build (thanks GhostlyDeath).
2011-02-28 20:48:27 fraggle
Fix autoadjust of pixel depth in setup tool.
2011-02-05 16:50:28 fraggle
Fix bug with libtextscreen where it was not possible to type a '+'
(thanks Alexandre Xavier).
2011-01-31 01:25:47 fraggle
When large numbers of screen resolutions are detected, increase the
number of columns in the mode list to fit them all on-screen. Remove
superfluous left-side spacing from the checkbox and radio button
widgets so that the modes can be packed closer together.
2011-01-23 21:42:09 fraggle
Fix default joystick buttons in setup tool to match Vanilla (thanks
twipley).
2011-01-13 20:34:55 fraggle
In configuration files, use the scan code for right shift, not left
shift, to match Vanilla (thanks AlexXav).
2011-01-12 23:22:20 fraggle
Fix menu navigation when using joystick / joypad (thanks AlexXav).
2011-01-02 18:14:59 fraggle
Update NEWS and ChangeLog, bump version number.
2011-01-02 17:45:24 fraggle
Remove redundant package version label from top of OS X launcher
window.
2011-01-02 02:49:20 fraggle
Restore window title when changing video driver in setup tool (thanks
AlexXav).
2011-01-02 02:31:20 fraggle
Turn off dynamic window resizing feature on OS X, as it adds an ugly
resize handle to the corner of the window that overlaps the view of
the game.
2010-12-28 16:43:41 fraggle
Make demo loop handling of DEMO4 case depend on the executable version
being emulated: the Vanilla versions did not have any conditional
behavior based on gamemode/gamemission. This has the side effect of
causing the game to exit with an error when playing with Final Doom,
but this is Vanilla behavior.
2010-12-25 22:42:40 fraggle
Include NOT-BUGS in rpm packages.
2010-12-25 21:51:24 fraggle
Pass through all command line arguments specified to the setup tool to
the game, to match Vanilla behavior (thanks AlexXav).
2010-12-25 21:04:10 fraggle
Remove the -wart parameter (thanks Sander van Dijk).
2010-12-25 20:55:30 fraggle
Remove the 32 character limit on the lengths of filenames specified to
-record (thanks AlexXav).
2010-12-19 20:15:09 fraggle
Change setup tool skill level names to match Doom's "new game" menu
exactly (thanks AlexXav).
2010-12-18 23:55:07 fraggle
Add a M_CheckParmWithArgs function, that behaves like M_CheckParm but
also checks that extra options were provided on the command line
(thanks Sander van Dijk).
2010-12-14 20:55:30 fraggle
Check that an address is provided to the -query command line option
(thanks Sander van Dijk).
2010-12-12 13:11:11 fraggle
Add -privateserver and -servername options to chocolate-server
manpage. Add server registration option to setup tool (thanks
exp(x)).
2010-12-10 23:56:32 fraggle
Fix memory leak when dynamically resizing window in true color video
modes.
2010-12-10 22:37:29 fraggle
Fix build problem (thanks Proteh).
2010-12-10 22:21:56 fraggle
Remove "Error:" from the message displayed by I_Error, to match
Vanilla.
2010-12-10 20:53:23 fraggle
Update NEWS.
2010-12-10 20:43:05 fraggle
Change alignment of actions in a window's action area so that there is
equal space either side of the center widget. This is more
aesthetically pleasing.
2010-12-10 20:31:46 fraggle
Replace txt_widget_t#selectable with a callback function to query
whether the widget is selectable. This stops the table code from
selecting things that aren't really selectable - eg. empty tables,
scrollpanes containing unselectable widgets, etc. Fixes a bug with
the warp menu (thanks Proteh).
2010-12-10 19:15:37 fraggle
Add "warp" menu to the main menu of the setup tool, like Vanilla
setup.exe (thanks Proteh).
2010-12-10 18:15:12 fraggle
Fix typo (thanks Sander van Dijk).
2010-12-10 17:53:50 fraggle
Specify master server port explicitly, so that server registration
works when using -port.
2010-12-07 23:13:34 rtc_marine
- Update chocolate-server codeblocks project
2010-12-07 22:35:17 fraggle
Assign the oldest client to be the controller, not the first found in
the clients[] array.
2010-12-06 23:37:27 fraggle
Fix -solo-net to actually behave the same as other ports.
2010-12-06 22:38:24 fraggle
Rename -netdemo command line parameter to -solo-net, for consistency
with other ports (-netdemo is still recognised).
2010-12-06 00:04:08 fraggle
Update NEWS.
2010-12-05 14:42:09 fraggle
Allow textscreen font to be overridden using the TEXTSCREEN_FONT
command line variable.
2010-12-04 20:56:04 fraggle
Rename search command line options: -search to search the Internet,
-localsearch to search local LAN.
2010-12-04 20:48:07 fraggle
Add ping time to query output.
2010-12-04 20:40:10 fraggle
Fix formatting for -masterquery to match -search.
2010-12-04 20:34:39 fraggle
Fix bug when running with -server option.
2010-12-02 21:34:51 fraggle
Make multiple query attempts to servers before giving up. Display a
warning if the master server does not respond.
2010-12-02 20:32:52 fraggle
Add -servername parameter to allow the owner to change the name
returned in response to queries (thanks AlexMax).
2010-12-02 20:11:24 fraggle
More refactoring of querying code, to not be specific to the purpose
of printing out a list.
2010-12-02 19:26:05 fraggle
Refactor query code and add a -masterquery command line parameter to
query the master server.
2010-12-02 18:23:09 fraggle
Register servers with Internet master server.
2010-11-30 21:52:38 fraggle
Oops.
2010-11-30 20:44:20 fraggle
Remove "-debugfile" command line option and associated variable.
2010-11-30 20:26:37 fraggle
Update NEWS.
2010-11-30 20:09:22 rtc_marine
- Update codeblocks project
2010-11-30 20:00:06 fraggle
Add support for HACX v1.2 IWAD file.
2010-11-30 01:08:59 fraggle
Add NOT-BUGS file with some common Vanilla gotchas.
2010-11-29 20:18:10 fraggle
Auto-adjust the screen color depth if the configured color depth is
not supported by the hardware.
2010-11-27 23:23:12 fraggle
Add dropdown list to setup tool to select screen BPP.
2010-11-27 19:39:14 fraggle
When generating the texture name lookup hash table, add new entries to
the end of chains. This way, entries earlier in the texture list
trump later entries with the same name. This fixes a bug with the
wrong sky being shown in Spooky01.wad (thanks Porsche Monty).
2010-11-27 15:36:43 fraggle
Fix -timer / -avg options to work like Vanilla when playing demos.
2010-11-26 18:56:45 fraggle
In non-palettized boxed screen modes, don't update the border areas of
the screen. This is more CPU and memory efficient, and also fixes the
"flashing border" bug when palette flashes occur.
2010-11-26 18:36:48 fraggle
Turn double buffering on for non-palettized screen modes, as this may
be the cause of screen tearing reports.
2010-11-24 23:34:18 fraggle
Detect when running on Windows Vista or later, and switch to 32 bpp
screen mode.
2010-11-24 22:43:37 fraggle
Add configuration file parameter and command line option to specify
the screen pixel depth.
2010-11-24 08:09:48 fraggle
Add workaround to stop freezeups with old versions of SDL_mixer.
2010-11-21 15:44:43 fraggle
Add -8in32 command line parameter to make the game run in 32-bit color
mode, scaling up into an intermediate 8-bit buffer first. This should
help with the palette problems experienced by Windows Vista/7 users.
2010-11-09 16:10:52 fraggle
Update Python scripts to work in Python 3.
2010-09-19 21:09:36 fraggle
Read response file in binary mode, to fix incomplete response file
bug.
2010-08-31 21:00:20 fraggle
Add weapon cycling buttons to joystick button list.
2010-08-31 20:59:24 fraggle
Don't double OPL sample values, as it causes horrible things to happen
with the Heretic title screen music.
2010-08-28 19:35:08 fraggle
Update NEWS.
2010-08-28 19:28:05 fraggle
Include INSTALL file in distribution packages.
2010-08-22 18:59:12 fraggle
Shut up compiler warning.
2010-08-22 02:21:27 fraggle
Change span drawing functions to work the same as Vanilla, so that in
screenshots, floors and ceilings are pixel-perfect identical to
Vanilla Doom (thanks Porsche Monty).
2010-08-21 19:49:20 fraggle
Change default mouse acceleration in setup tool to match the game's
default.
2010-08-21 18:47:24 fraggle
"Bug fix".
2010-08-20 14:01:29 fraggle
Remove debug printf().
2010-08-20 13:20:58 fraggle
Align memory allocated by zone memory system to 8 byte boundaries on
64-bit machines. Possibly fixes problems on sparc64?
2010-08-20 12:30:30 fraggle
Extend mouse code to support up to 8 buttons (allows mouse wheel to be
used).
2010-08-15 16:23:28 fraggle
Fix volume multiply; DBOPL now generating output.
2010-08-15 15:57:37 fraggle
Hook DBOPL into OPL library and remove FMOPL. Does not generate any
sound yet.
2010-08-13 19:42:52 fraggle
Add C-converted version of DOSbox OPL emulator.
2010-08-09 18:53:10 fraggle
Add weapon cycling bindings for mouse and joystick buttons. Add
weapon cycling bindings to configuration file and setup tool.
2010-08-07 18:23:09 fraggle
Change back filter frequency. Add debug code to dump resampled sound
effects to WAV files.
2010-08-07 17:07:00 fraggle
Fix sound resampling low pass filter.
2010-08-04 19:25:04 fraggle
Initial code for previous/next weapon switching keys.
2010-08-03 21:12:36 fraggle
When in windowed mode, allow the screen size to be dynamically resized
by dragging the window borders.
2010-07-31 20:25:17 fraggle
Add multiplayer spy key binding.
2010-07-28 21:39:07 fraggle
Add config file parameter to set OPL I/O port.
2010-07-17 01:33:57 fraggle
Check for libm, to fix Fedora compile issues.
2010-07-14 21:36:53 fraggle
Set MACOSX_DEPLOYMENT_TARGET to target 10.4, so that the launcher will
work on older versions.
2010-07-10 17:06:15 fraggle
Update NEWS and ChangeLog, bump version number.
2010-07-10 16:56:18 fraggle
Add key bindings for multiplayer messaging.
2010-07-10 16:27:52 fraggle
Add key binding to change demo recording quit key.
2010-05-30 04:03:44 fraggle
Add INSTALL to all distribution packages, add note in README.
2010-05-30 03:56:58 fraggle
Clarify/update install instructions.
2010-05-14 19:42:32 fraggle
Don't grab the mouse when the demo sequence advances.
2010-05-03 17:47:25 fraggle
Oops.
2010-05-03 16:58:52 fraggle
Update NEWS.
2010-05-01 22:47:26 fraggle
Further sanity checking on use of strcpy() with dehacked string
replacements.
2010-05-01 22:20:30 fraggle
Silence printf(DEH_String(...)) warnings, by providing a DEH_printf
function that checks the format string is a valid replacement. Also
add DEH_fprintf and DEH_snprintf functions to use throughout the code
to do similar checking.
2010-05-01 20:22:52 fraggle
Fix compiler warnings with savegame and response file code.
2010-04-30 20:58:30 fraggle
Merge contents of OPL-TODO into TODO file.
2010-04-30 20:38:24 fraggle
Add textscreen Doxyfile to dist. Add .desktop file to svn:ignore. Add
opl ctags file to localvimrc.
2010-04-25 00:53:03 fraggle
Add -reject_pad_with_ff parameter to allow padding value to be
specified.
2010-04-23 21:46:29 fraggle
Add REJECT buffer overflow emulation, based on code from PrBoom+
(thanks entryway). Fixes YDFEAR25.LMP.
2010-04-22 22:38:51 fraggle
Disable OPL debugging messages.
2010-03-08 18:52:59 fraggle
Add OPL-TODO to dist, set svn:ignore properties.
2010-03-08 18:50:29 fraggle
Use native MIDI music by default.
2010-03-08 01:14:23 fraggle
Merge opl-branch to trunk.
OPL support still isn't perfect, and it certainly isn't complete.
However, for now, it's good enough.
2010-02-10 20:21:21 fraggle
Bump version number, update ChangeLog and NEWS.
2010-01-31 18:21:50 fraggle
Change Windows resource file to use PACKAGE_COPYRIGHT and
PACKAGE_LICENSE macros.
2010-01-30 16:14:04 fraggle
Change directory to home directory before launching the game, so that
recorded demos go somewhere sensible.
2010-01-30 16:04:24 fraggle
Set launch button as default button, so that it is possible to launch
the game by pressing return.
2010-01-30 00:37:17 fraggle
Rename mus2mid functions to be consistent with coding standard.
2010-01-29 23:28:35 fraggle
Remove unused PACKAGE_LONGDESC.
2010-01-29 19:17:56 fraggle
When doing a MUS to MID conversion, allocate MIDI channels so that the
lowest-numbered MIDI channels are used before higher-numbered ones.
Fixes ear-piercing whistle sound in the MAP05 music when playing with
timidity and EAWPATS (thanks entryway / HackNeyed).
2010-01-29 03:55:20 fraggle
Fix indentation/style etc. in mus2mid.c.
2010-01-27 19:16:26 fraggle
Add tags files to svn:ignore properties.
2010-01-26 19:21:18 fraggle
Minor fix of British spelling -> American.
2010-01-26 19:18:18 fraggle
Fix glass hack windows where a linedef is flagged as two sided but has
only one side. Fixes WADs such as OTTAWAU.WAD (thanks Never_Again).
2010-01-23 23:06:45 fraggle
Add menu item to launcher to open a terminal window that can be used
to start the game. Add missing 'edit' menu. Set svn:ignore property
for osx directory.
2010-01-18 19:40:50 fraggle
Fix package source URL.
2010-01-18 19:29:48 fraggle
Tweak package description slightly.
2010-01-18 19:14:54 fraggle
Define project short description, copyright, maintainer and URL in
configure.in. Use these for the Info-gnustep.plist file. Add
generated .spec file for building RPM packages.
2010-01-17 16:58:37 fraggle
Update NEWS.
2010-01-17 16:31:03 fraggle
Restore the original cursor when shutting down video code, this should
hopefully fix the problem with the mouse cursor disappearing when
exiting on Win9x (thanks Janizdreg).
2010-01-16 19:20:11 fraggle
Update TODO file.
2010-01-15 19:29:28 fraggle
Don't open the configuration window when the launcher is first run;
display an error message if the user tries to launch the game without
an IWAD selected.
2010-01-15 19:14:02 fraggle
Fix GNUstep info panel.
2010-01-15 18:51:35 fraggle
Center the launcher window and config window on startup.
2010-01-15 18:40:37 fraggle
Add wadfile.png for GNUstep build.
2010-01-15 18:13:05 fraggle
Extend osx makefile to allow building of a working GNUstep
application, for testing purposes. Add GNUstep version of Info.plist,
remove app-skeleton directory and move contents up.
2010-01-14 18:47:03 fraggle
In Chex Quest, use the radiation suit colormap instead of the red
colormaps that are usually used when taking damage (or using the
berserk pack). This matches the Vanilla chex.exe behavior (thanks
Fuzztooth).
2010-01-12 20:16:25 fraggle
Oops.
2010-01-12 20:15:34 fraggle
Strip executables when building Windows CE packages.
2010-01-12 20:14:11 fraggle
Rearrange order of Makefile generation to alphabetical order.
2010-01-12 20:12:56 fraggle
Move Makefile definitions for CC and STRIP into config.make, use
versions from autoconf.
2010-01-12 20:09:54 fraggle
Set main menu title based on package name, not fixed string.
2010-01-12 20:09:01 fraggle
Place commercial level name strings consecutively in the same array,
so that overflowing the end of one list accesses the start of the
next. This trick is used by pl2.wad for its MAP33 secret level.
2010-01-12 01:32:24 fraggle
Add missing connection for plutonia.wad set button.
2010-01-12 01:20:48 fraggle
Add document icon file and use for file associations.
2010-01-11 19:10:42 fraggle
Insert new files into the command line at the correct location,
allowing multiple files to be opened at once.
2010-01-11 01:35:04 fraggle
When launching a file from the finder, add the new file into the
command line at the appropriate position in the command line string.
2010-01-10 20:46:15 fraggle
Change "@executable_path@" to "@executable_path"
2010-01-10 18:48:21 fraggle
Install docs with a single cp, rather than using a for loop.
2010-01-10 18:42:35 fraggle
Recursively copy library dependencies into destination package.
Identify libraries to be installed based on the path in which they are
located, rather than whether there is "libSDL" in the name. Use
install_name_tool to change the search path so that the system looks
for libraries in @executable_path@ rather than their location on the
machine upon which the program was built.
2010-01-09 21:06:31 fraggle
Clear existing arguments when adding a file.
2010-01-09 20:42:30 fraggle
Add file to command line when opened; add link from AppController to
LauncherManager.
2010-01-09 18:54:04 fraggle
Initial code to identify file type by extension and add file to
command line.
2010-01-09 18:38:48 fraggle
Hook in AppController as delegate for application, add file
associations to property list file.
2010-01-05 17:20:58 fraggle
Add "clean" target to package makefiles.
2010-01-05 15:52:12 fraggle
Move config.make up to pkg/ directory. Use static makefiles to
generate all packages, rather than dynamically generated makefiles.
Add pkg/osx to dist. Make OS X staging directory depend on top level
documentation files. Generate CMDLINE as part of standard build if it
is not already present. Set svn:ignore properties.
2010-01-04 22:53:44 fraggle
Fix single space error when listing libraries.
2010-01-04 22:45:45 fraggle
Copy binaries into app dir along with libraries.
2010-01-04 22:24:48 fraggle
Include documentation files in package.
2010-01-04 22:19:53 fraggle
Fix GNUstep build.
2010-01-04 22:11:11 fraggle
Generate Info.plist and config.make in configure and remove temporary
versions. Include config.h from top level.
2010-01-04 22:01:32 fraggle
Import OS X launcher code to trunk.
2010-01-03 03:49:11 fraggle
Add quotes around $@ in autogen script (thanks exp[x])
2009-12-28 20:57:20 fraggle
When recording low resolution (non-longtics) Vanilla demos, carry
forward the error from angleturn caused by the reduced resolution, so
that consecutive errors can accumulate, possibly making turning
slightly smoother.
2009-12-27 01:42:13 fraggle
Oops.
2009-12-27 00:11:18 fraggle
Allow DOOMWADDIR/DOOMWADPATH to contain the complete path to IWAD
files, as well as directories in which to search for IWAD files.
2009-12-18 22:11:06 fraggle
Fix poor quality application icons seen when the game is running. Add
back 8-bit icon files alongside files including both 8-bit and high
quality 32-bit versions. Use the high quality icon files for resource
files includes, and the low quality ones for in-game SDL.
2009-12-18 21:11:32 fraggle
Update generated source files containing icon data.
2009-12-18 21:10:35 fraggle
Make ExecuteCommand() under Unix return a failure when the executable
cannot be executed.
2009-12-14 20:57:04 fraggle
Use GetModuleFileNameW to get the (Unicode) path to the Doom
executable. This hopefully fixes problems with Unicode directory
names.
2009-12-14 18:54:25 fraggle
Add Chocolate Doom/setup icons with scaled versions for various
different icon sizes (thanks MikeRS).
2009-12-12 01:20:49 fraggle
Fix textscreen black border bug.
2009-12-09 02:40:39 fraggle
Fix the setup tool on Windows Vista/7 to not prompt for elevated
permissions and to disable the "Program Compatibility Assistant"
(thanks hobbs and MikeRS).
2009-11-29 22:50:17 fraggle
Add other missing files to dist.