This repository has been archived by the owner on Feb 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
7828 lines (4858 loc) · 205 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
2007-08-12 08:43 rpedde
* src/util.c: fix VA_COPY
2007-08-12 06:30 rpedde
* configure.in, src/io.c, src/rend-posix.c: linux fixes for new
plugin arch
2007-08-11 04:41 rpedde
* src/Makefile.am: Add io-errors.h and io-plugin.h to make dist
2007-08-10 00:48 rpedde
* src/ff-plugins.h, src/plugins/ssc-ffmpeg.c,
src/plugins/ssc-wma.cpp, src/plugins/w32-event.c,
win32/mt-daapd.vcproj, win32/out-daap/out-daap.vcproj,
win32/rsp.vcproj, win32/ssc-ffmpeg.vcproj,
win32/ssc-wma/ssc-wma.vcproj, win32/w32-event.vcproj: win32 fixes
for new plugin model
2007-08-09 07:10 rpedde
* src/ff-plugins.c: oops, forgot the plugin interface
2007-08-09 06:33 rpedde
* configure.in, src/Makefile.am, src/daapd.h, src/ff-plugins.h,
src/plugin.c, src/plugin.h, src/plugins/out-daap-proto.c,
src/plugins/out-daap.c, src/plugins/out-daap.h,
src/plugins/rsp.c, src/plugins/ssc-ffmpeg.c,
src/plugins/ssc-script.c, src/plugins/xml-rpc.c, src/util.c,
src/util.h: remove function backpointers for dll plugins
2007-08-06 05:18 rpedde
* src/err.c, src/io-errors.h, src/io.c, src/os-win32.c,
src/webserver.c, win32/mt-daapd.vcproj: Fix problems with ascii
log files, also problems with WSAEWOULDBLOCK on send
buffer/receive window full.
2007-08-06 03:18 rpedde
* src/err.c, src/util.c, src/util.h: avoid re-entrant error logging
to avoid deadlocks
2007-08-05 04:43 rpedde
* src/conf.c, src/err.c, src/io.c, src/rxml.c, src/scan-url.c:
Implement ascii line-ending conversion for windows
2007-08-05 04:09 rpedde
* src/mdns/DNSCommon.c, src/rend-posix.c: fix excessive logging in
mdns, and remove rdar tags
2007-08-01 06:32 rpedde
* src/compat.h, src/io-plugin.h, src/io.c, src/os-win32.c,
src/plugins/out-daap-proto.c, src/plugins/out-daap.c,
src/plugins/ssc-wma.cpp, src/scan-aac.c, src/scan-aif.c,
src/scan-flac.c, src/scan-mp3.c, src/scan-ogg.c, src/webserver.c,
src/win32.h, src/xml-rpc.c, win32/mt-daapd.vcproj,
win32/out-daap/out-daap.vcproj: cleanups for io_ on win32. still
not quite working right, some read or write errors when streaming
files, but a strong "mostly works"
2007-08-01 06:21 rpedde
* src/scan-wma.c: convert scan-wma to io_ functions
2007-07-31 04:34 rpedde
* admin-root/config.js, admin-root/lib-js/prototype.js,
admin-root/lib-js/rico.js,
admin-root/lib-js/script.aculo.us/builder.js,
admin-root/lib-js/script.aculo.us/controls.js,
admin-root/lib-js/script.aculo.us/dragdrop.js,
admin-root/lib-js/script.aculo.us/effects.js,
admin-root/lib-js/script.aculo.us/scriptaculous.js,
admin-root/lib-js/script.aculo.us/slider.js,
admin-root/lib-js/script.aculo.us/unittest.js,
admin-root/no_access.html, admin-root/pngfix.js,
admin-root/status.js, admin-root/util.js, configure.in,
src/Makefile.am, src/bsd-snprintf.c, src/bsd-snprintf.h,
src/compat.c, src/compat.h, src/conf.c, src/configfile.c,
src/db-gdbm.c, src/db-gdbm.h, src/db-sql-updates.c, src/db-sql.c,
src/err.c, src/ff-dbstruct.h, src/ff-plugins.h, src/io-driver.c,
src/io-errors.h, src/io-plugin.h, src/io.c, src/io.h, src/io.mk,
src/main.c, src/memdebug.c, src/memdebug.h, src/mp3-scanner.c,
src/os-unix.c, src/os-win32.c, src/os-win32.h, src/plugin.c,
src/plugin.h, src/plugins/out-daap-proto.c,
src/plugins/out-daap-proto.h, src/plugins/ssc-ffmpeg.c,
src/plugins/ssc-script.c, src/plugins/w32-event.c,
src/rend-avahi.c, src/rend-posix.c, src/restart.c, src/rxml.c,
src/scan-aac.c, src/scan-aac.h, src/scan-aif.c, src/scan-mp3.c,
src/scan-mp4.c, src/scan-ogg.c, src/scan-url.c, src/scan-wav.c,
src/scan-wma.c, src/smart-parser.c, src/ssl.c, src/ssl.h,
src/tabs.sh, src/transcoder-driver.c, src/upnp.c, src/upnp.h,
src/util.c, src/util.h, src/webserver.c, src/webserver.h,
src/win32.h, src/wsprivate.h, win32/nsi/AccessControl.dll,
win32/nsi/SimpleFC.dll, win32/nsi/mt-daapd.nsi.templ,
win32/versionize.bat: merge ron-ssl branch back to trunk in
preparation for windows cleanups, merge setup tweaks and credits
language as well as update rend-posix from stable-aspl-free
2007-05-30 03:53 rpedde
* admin-root/about.html, admin-root/apache-2.0.html,
admin-root/apache-2.0.txt, admin-root/xiph-license.html,
admin-root/xiph-license.txt, admin-root/zlib-license.html,
admin-root/zlib-license.txt: Update license info in about page
2007-05-18 02:27 rpedde
* src/configfile.c: Fix for missing upnp_uuid()
2007-05-10 06:24 rpedde
* src/scan-wav.c: Fix wav scanner to allow both 16 and 18 byte 'fmt
' chunks, also allow for out-of-order WAVE chunks
2007-05-10 04:32 rpedde
* osx/FireflyPrefs/Dutch.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/Dutch.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/English.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/English.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/German.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/German.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/Italian.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/Italian.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/Japanese.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/Swedish.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/Swedish.lproj/FireflyPrefsPref.nib/keyedobjects.nib:
Merge r1580 from Roku tree to trunk
2007-05-05 04:35 rpedde
* admin-root/upnp-basic.xml, src/upnp.c: Add enough more UPnP
discovery that it shows up on SoundBridge
2007-05-04 21:31 rpedde
* admin-root/upnp, admin-root/upnp-basic.xml,
admin-root/upnp-cd.xml, admin-root/upnp-cm.xml,
admin-root/upnp/ff_logo_16.png, admin-root/upnp/ff_logo_32.png,
admin-root/upnp/ff_logo_48.png, src/conf.c, src/configfile.c,
src/main.c, src/upnp.c, src/upnp.h: Finish (mostly) upnp
discovery
2007-05-03 03:30 rpedde
* src/main.c, src/upnp.c, src/upnp.h: More UPnP work. Almost
finished with discovery.
2007-05-03 00:28 rpedde
* src/conf.c, src/util.c, src/util.h: Move split functions from
conf to util
2007-05-03 00:18 rpedde
* src/db-generic.c, src/db-generic.h, src/db-sql-sqlite2.c,
src/db-sql-sqlite3.c, src/db-sql.c, src/db-sql.h: Force a full
rescan when the database version is too new
2007-05-03 00:10 rpedde
* src/xml-rpc.c: Missing header
2007-05-02 23:49 rpedde
* src/webserver.c: Fix small race in registerhandler
2007-04-30 00:18 rpedde
* src/db-sql.c: Fix for win32 playlist dissapearing issue
2007-04-27 12:31 rpedde
* src/configfile.c: Minor auth fixes
2007-04-27 12:31 rpedde
* win32/nsi/mt-daapd-example.conf: Set blank admin password for
windows -- forcing admin_pw change
2007-04-25 03:26 rpedde
* osx/FireflyPrefs/Japanese.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/Japanese.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/Japanese.lproj/Localizable.strings,
osx/FireflyPrefs/i18n/Japanese.strings,
osx/FireflyPrefs/i18n/Japanese/FireflyPrefsPref_nib.strings,
osx/FireflyPrefs/i18n/Japanese/Localizable.strings: Merge r1564
from roku branch to mainline
2007-04-25 03:16 rpedde
* CREDITS, admin-root/CREDITS: Update credits with tranlation info
2007-04-25 03:08 rpedde
* osx/FireflyPrefs/i18n/Dutch,
osx/FireflyPrefs/i18n/Dutch/FireflyPrefsPref_nib.strings,
osx/FireflyPrefs/i18n/Dutch/InfoPlist.strings,
osx/FireflyPrefs/i18n/Dutch/Localizable.strings,
osx/FireflyPrefs/i18n/English,
osx/FireflyPrefs/i18n/English/FireflyPrefsPref_nib.strings,
osx/FireflyPrefs/i18n/English/InfoPlist.strings,
osx/FireflyPrefs/i18n/English/Localizable.strings,
osx/FireflyPrefs/i18n/French,
osx/FireflyPrefs/i18n/French/FireflyPrefsPref_nib.strings,
osx/FireflyPrefs/i18n/French/InfoPlist.strings,
osx/FireflyPrefs/i18n/French/Localizable.strings,
osx/FireflyPrefs/i18n/German,
osx/FireflyPrefs/i18n/German/FireflyPrefsPref_nib.strings,
osx/FireflyPrefs/i18n/German/InfoPlist.strings,
osx/FireflyPrefs/i18n/German/Localizable.strings,
osx/FireflyPrefs/i18n/Italian,
osx/FireflyPrefs/i18n/Italian/FireflyPrefsPref_nib.strings,
osx/FireflyPrefs/i18n/Italian/InfoPlist.strings,
osx/FireflyPrefs/i18n/Italian/Localizable.strings,
osx/FireflyPrefs/i18n/Japanese,
osx/FireflyPrefs/i18n/Japanese/FireflyPrefsPref_nib.strings,
osx/FireflyPrefs/i18n/Japanese/InfoPlist.strings,
osx/FireflyPrefs/i18n/Japanese/Localizable.strings,
osx/FireflyPrefs/i18n/Swedish,
osx/FireflyPrefs/i18n/Swedish/FireflyPrefsPref_nib.strings,
osx/FireflyPrefs/i18n/Swedish/InfoPlist.strings,
osx/FireflyPrefs/i18n/Swedish/Localizable.strings: Add
translation files necessary for i18n
2007-04-24 20:46 rpedde
* admin-root/upnp-basic.xml: Get rid of the av manager
2007-04-24 20:42 rpedde
* admin-root/upnp-basic.xml: Make eol-style CRLF, to help windows
parse the xml file better
2007-04-24 04:11 rpedde
* win32/FireflyShell/FireflyShellITA.rc,
win32/FireflyShell/localizations/italian/italian.ini: make
italian translation in utf-16be, to avoid problems with building
localized files.
2007-04-24 03:55 rpedde
* win32/FireflyShell/FireflyShell.DEU.rc,
win32/FireflyShell/FireflyShellFRA.rc,
win32/FireflyShell/FireflyShellITA.rc,
win32/FireflyShell/FireflyShellJPN.rc,
win32/FireflyShell/FireflyShellSWE.rc,
win32/FireflyShell/localizations/japanese/japanese.ini: Finish
Japanese localization,
2007-04-23 03:52 rpedde
* win32/nsi/firefly.log, win32/nsi/mt-daapd.nsi.templ: Installer
fixes -- Make log file world writable (for debug mode), move the
shell startup to HKCU rather than HKLM.
2007-04-23 03:41 rpedde
* osx/FireflyPrefs/i18n/Japanese.strings,
win32/FireflyShell/localizations/french/french.ini,
win32/FireflyShell/localizations/german/german.ini,
win32/FireflyShell/localizations/italian/italian.ini,
win32/FireflyShell/localizations/japanese/japanese.ini,
win32/FireflyShell/localizations/swedish/swedish.ini: Update
translations
2007-04-19 03:46 rpedde
* src/configfile.c: Fix stupid password bug
2007-04-19 03:19 rpedde
* src/configfile.c: More password handling
2007-04-19 03:00 rpedde
* src/configfile.c: upnp updates, plus some password fixes
2007-04-19 02:58 rpedde
* admin-root/upnp-basic.xml, src/upnp.c, src/upnp.h: More simple
upnp updates
2007-04-18 03:34 rpedde
* src/scan-xml.c: Oops, thinko on the playlist thing
2007-04-18 03:12 rpedde
* src/webserver.c: Crank up debug a bit for handlers to help track
down wl500g errors
2007-04-18 03:10 rpedde
* configure.in: Fix for sys/select problem reported in forums
2007-04-18 03:07 rpedde
* src/scan-xml.c: Solve the case of the missing playlists\! D'oh\!
2007-04-16 21:34 rpedde
* configure.in: add -lresolv for inet_aton on solaris as reported
by bfranke on the forums
2007-04-16 21:31 rpedde
* src/configfile.c, src/webserver.c: Tune down auth logging a bit,
increase debugging in ws handler to try and find wl500g problem
2007-04-16 05:30 rpedde
* src/os-win32.h: Minor win32 fixes for S_ISDIR
2007-04-15 23:57 rpedde
* src/configfile.c, src/configfile.h, src/ff-plugins.h,
src/plugin.c, src/plugins/out-daap.c, src/plugins/rsp.c: Add
centralized auth handler for different user roles (currently
admin and user), closing #225 and #220
2007-04-15 23:27 rpedde
* src/main.c, src/webserver.c: Remove regex functions from
webserver, instead preferring path from root - fixes problems
with bad regex in uclibc
2007-04-15 23:20 rpedde
* admin-root/upnp-basic.xml, src/configfile.c, src/upnp.c: More
UPnP work. Still doesn't show up in network neighborhood. Not
quite sure why not, though. :)
2007-04-15 20:36 rpedde
* src/configfile.c, src/upnp.c: Use S_ISDIR to determine file
directoryishness
2007-04-13 23:31 rpedde
* src/configfile.c, src/ff-plugins.h, src/plugin.c,
src/plugins/out-daap.c: logging for bad passwords as suggested by
mas
2007-04-13 23:31 rpedde
* src/main.c: ifdef the upnp stuff in main
2007-04-13 21:38 rpedde
* src/upnp.c, src/upnp.h: forgot upnp files
2007-04-13 21:37 rpedde
* configure.in, src/Makefile.am, src/main.c, src/os-unix.h,
src/util.h: start of UPnP functions
2007-04-12 18:34 rpedde
* src/plugins/out-daap.c: uninitialized string error, found by Ron
(the *other* ron) on the forums.
2007-04-11 02:33 rpedde
* src/compat.c, src/win32.h: Fix for tzset/putenv in compat, to
help build on wl500g
2007-04-10 01:39 rpedde
* src/plugin.c, win32/mt-daapd.vcproj: include config guards for
headers in plugin.c, remove dynamic-art from vc project.
2007-04-09 06:50 rpedde
* src/plugin.c: Fix headers
2007-04-09 04:23 rpedde
* admin-root/config.xml, contrib/mt-daapd.conf.templ,
src/Makefile.am, src/dynamic-art.c, src/dynamic-art.h,
src/main.c, src/plugin.c: Add always_transcode, first pass at a
fix for the hifidelio/olive, something like the one offered by
Matthias Schmidt
2007-04-08 04:43 rpedde
* configure.in, reconf.sh.templ, src/Makefile.am, src/mDNS.c,
src/mDNSClientAPI.h, src/mDNSDebug.h,
src/mDNSPlatformFunctions.h, src/mDNSPosix.c, src/mDNSPosix.h,
src/mDNSUNP.c, src/mDNSUNP.h, src/mdns, src/mdns/DNSCommon.c,
src/mdns/DNSCommon.h, src/mdns/DNSDigest.c,
src/mdns/GenLinkedList.c, src/mdns/GenLinkedList.h,
src/mdns/Makefile.am, src/mdns/dns_sd.h, src/mdns/mDNS.c,
src/mdns/mDNSDebug.c, src/mdns/mDNSDebug.h,
src/mdns/mDNSEmbeddedAPI.h, src/mdns/mDNSPosix.c,
src/mdns/mDNSPosix.h, src/mdns/mDNSUNP.c, src/mdns/mDNSUNP.h,
src/mdns/uDNS.c, src/mdns/uDNS.h, src/rend-posix.c: Update
Apple's mDNS to 107.6, the Apache/BSD licenced version, to remove
aspl taint. This is high in autoconf hackery, though
2007-04-07 22:32 rpedde
* src/plugin.c: header fixes for fbsd, as reported by oliver in the
forums
2007-04-06 05:05 rpedde
* admin-root/config.xml, debian, src/conf.c, src/mp3-scanner.c,
tools/decodeflow.c: Add a simple config migrator to move config
items around at load. I've used it
to move general/process_m3u to scanning/process_playlists,
scanning/process_xml
to scanning/process_itunes, and make scanning/process_m3u
actually control just
m3u file rather than all playlists. In addition,
scan/correct_order has been
moved to daap/correct_order. This closes long-standing bug #172.
2007-04-06 02:57 rpedde
* src/util.c, src/util.h: rename lock_t to ff_lock_t to prevent
solaris breakage
2007-04-04 20:34 rpedde
* admin-root/index.html, admin-root/status.js, src/ff-dbstruct.h,
src/main.c, src/plugin.c, src/plugin.h, src/xml-rpc.c: Try to
automatically locate plugins, show loaded plugins on web
interface
2007-04-04 16:26 rpedde
* win32/nsi/mt-daapd.nsi.templ: Delete standalone manifest on
install if it exists
2007-04-04 03:59 rpedde
* admin-root/config.xml: Fix the IE won't save thing -- still need
to take a closer look at that -- deprecated options shouldn't
kill the web configurator, but this is good enough for now
2007-04-01 22:49 rpedde
* win32/FireflyShell/FireflyShell.DEU.rc,
win32/FireflyShell/FireflyShellFRA.rc,
win32/FireflyShell/FireflyShellITA.rc,
win32/FireflyShell/FireflyShellJPN.rc,
win32/FireflyShell/FireflyShellNLD.rc,
win32/FireflyShell/FireflyShellSWE.rc,
win32/FireflyShell/localizations/dutch/dutch.ini,
win32/FireflyShell/localizations/french/french.ini,
win32/FireflyShell/localizations/german/german.ini,
win32/FireflyShell/localizations/italian/italian.ini,
win32/FireflyShell/localizations/japanese/japanese.ini,
win32/FireflyShell/localizations/swedish/swedish.ini: Update rc
files with latest dialog wording.
2007-04-01 22:47 rpedde
* win32/FireflyShell/FireflyShell.rc, win32/nsi/mt-daapd.nsi.templ:
Include vc redistributables
2007-03-29 03:11 rpedde
* win32/nsi/mt-daapd.nsi.templ: Update nsis to allow manifests in
setup programs, perhaps fixing compatibility warnings on vista.
2007-03-28 02:39 rpedde
* win32/nsi/mt-daapd.nsi.templ: Redistribute msvcm80.dll and msvc
manifest.
2007-03-27 22:45 rpedde
* win32/nsi/manifest.xml, win32/nsi/maniftest.xml: Oops! Typo!
2007-03-27 04:05 rpedde
* win32/nsi/mapping.ini: Add template mapping.ini
2007-03-22 15:38 rpedde
* win32/nsi/mt-daapd.nsi.templ: Add vs 2005 vc runtimes, set
permissions on mapping.ini.
2007-03-22 13:29 rpedde
* win32/nsi/maniftest.xml: Add template manifest for installer
2007-03-19 22:15 rpedde
* win32/FireflyShell/FireflyShell.rc,
win32/FireflyShell/resource.h: add shield icon to dialog next to
service toggle
2007-03-19 21:57 rpedde
* win32/FireflyShell/FireflyShell.exe.manifest,
win32/FireflyShell/FireflyShell.vcproj,
win32/FireflyShell/ServiceControl.cpp,
win32/nsi/mt-daapd.nsi.templ: Embed manifest in FireflyShell to
avoid compatibility dingus on vista, switch execute method in
starting and stopping services from CreateProcess to ShellExecute
to allow the annoying f-ing UAC permissings thing to pop up.
2007-03-16 18:31 rpedde
* win32/FireflyShell/AdvancedPage.cpp,
win32/FireflyShell/ServiceControl.cpp: Set shield on autostart
checkbox
2007-03-16 18:26 rpedde
* win32/svcctrl/svcctrl.cpp: Wrong comparison in setting service to
run manually.
2007-03-16 14:04 rpedde
* win32/FireflyShell/ServiceControl.cpp, win32/svcctrl/svcctrl.cpp:
Fix service startup handling
2007-03-15 12:30 rpedde
* win32/FireflyShell/AdvancedPage.cpp,
win32/FireflyShell/AdvancedPage.h,
win32/FireflyShell/FireflyShell.cpp,
win32/FireflyShell/FireflyShell.h,
win32/FireflyShell/FireflyShell.rc,
win32/FireflyShell/ServiceControl.cpp,
win32/FireflyShell/resource.h: Split startup options for service
and applet. Toggle service state between "manual" and "auto"
rather than "disabled" and "auto".
2007-03-13 03:43 rpedde
* win32/FireflyShell/AdvancedPage.cpp,
win32/FireflyShell/MainDlg.cpp, win32/FireflyShell/stdafx.h,
win32/svcctrl/stdafx.h: Add shield icon to start/stop server
button.
2007-03-12 22:45 rpedde
* win32/FireflyShell/FireflyShell.vcproj,
win32/FireflyShell/ServiceControl.cpp,
win32/FireflyShell/ServiceControl.h,
win32/nsi/mt-daapd.nsi.templ, win32/svcctrl/svcctrl.vcproj:
Update nsi to include svcctrl.exe, update service code in shell
to execute the svchelper rather than relying on having admin
rights.
2007-03-08 17:10 rpedde
* admin-root/smartpopup.html: Merge CCRDude's playlist wizard patch
2007-03-06 23:46 rpedde
* win32/FireflyShell/FireflyShell.vcproj,
win32/FireflyShell/FireflyShellDEU.vcproj,
win32/FireflyShell/FireflyShellFRA.vcproj,
win32/FireflyShell/FireflyShellITA.vcproj,
win32/FireflyShell/FireflyShellJPN.vcproj,
win32/FireflyShell/FireflyShellNLD.vcproj,
win32/FireflyShell/FireflyShellSWE.vcproj, win32/mt-daapd.sln,
win32/mt-daapd.vcproj, win32/nsi/localizations/Japanese.nsh,
win32/out-daap/out-daap.vcproj, win32/rsp.vcproj,
win32/ssc-ffmpeg.vcproj, win32/ssc-wma/ssc-wma.vcproj,
win32/svcctrl, win32/svcctrl/resource.h, win32/svcctrl/small.ico,
win32/svcctrl/stdafx.cpp, win32/svcctrl/stdafx.h,
win32/svcctrl/svcctrl.cpp, win32/svcctrl/svcctrl.exe.manifest,
win32/svcctrl/svcctrl.h, win32/svcctrl/svcctrl.ico,
win32/svcctrl/svcctrl.rc, win32/svcctrl/svcctrl.sln,
win32/svcctrl/svcctrl.vcproj, win32/w32-event.vcproj: Update to
VS2005, add svcctrl project
2007-02-06 04:32 rpedde
* win32/FireflyShell/NotifyIcon.cpp,
win32/FireflyShell/NotifyIcon.h: Make shell applet popup messages
for fatal errors
2007-01-29 06:45 rpedde
* src/db-sql.c, src/plugins/out-daap-proto.c,
src/plugins/out-daap-proto.h, src/plugins/out-daap.c: xmbc fixes
2007-01-29 04:56 rpedde
* tools/decodeflow.c: Fix endianness of decodeflow
2007-01-29 03:43 rpedde
* admin-root/favicon.ico: Add pipe wrenches favico as requested by
blamm on the forums
2007-01-28 05:36 rpedde
* src/os-unix.c: Fix signal handling on linuxthreads/NSLU2
2007-01-20 14:20 rpedde
* src/os-unix.c: Add signal handling for nslu2, make -k send
SIGTERM, not SIGSTOP
2007-01-19 07:11 rpedde
* src/os-unix.c: Use pthread_sigmask over sigprocmask in an attempt
to fix signals on linuxthreads machines
2007-01-19 06:20 rpedde
* src/os-unix.c: Get wrong pid when daemonizing
2007-01-18 06:07 rpedde
* src/conf.c, src/main.c, src/memdebug.c, src/memdebug.h,
src/scan-mp3.c, src/scan-xml.c: Fix double-free problems reported
in forums
2007-01-17 07:04 rpedde
* mkmac.sh.templ: Force a 'make dist' on mac
2007-01-17 06:51 rpedde
* configure.in: add m4 dir to configure, make mac builds mkdist on
the mac
2007-01-17 05:10 rpedde
* win32/nsi/mt-daapd-example.conf, win32/nsi/mt-daapd.nsi.templ:
merge r1480 (win32 installer fixes) to trunk
2007-01-17 01:13 rpedde
* m4, m4/extensions.m4: Add m4 stuff
2007-01-17 01:06 rpedde
* configure.in, src/Makefile.am, src/compat.c, src/conf.c,
src/config-driver.c, src/configfile.c, src/daapd.h,
src/db-gdbm.c, src/db-generic.c, src/db-sql-sqlite2.c,
src/db-sql-sqlite3.c, src/db-sql-updates.c, src/db-sql.c,
src/dynamic-art.c, src/err.c, src/getopt.c, src/ll.c, src/mDNS.c,
src/mDNSPosix.c, src/mDNSUNP.c, src/main.c, src/memdebug.c,
src/memdebug.h, src/mp3-scanner.c, src/os-unix.c,
src/parser-driver.c, src/plugin.c, src/redblack.c,
src/rend-avahi.c, src/rend-howl.c, src/rend-win32.c,
src/restart.c, src/rxml.c, src/scan-aac.c, src/scan-aif.c,
src/scan-flac.c, src/scan-mp3.c, src/scan-mp4.c, src/scan-mpc.c,
src/scan-ogg.c, src/scan-url.c, src/scan-wav.c, src/scan-wma.c,
src/scan-xml.c, src/scanner-driver.c, src/transcoder-driver.c,
src/uici.c, src/util.c, src/util.h, src/w32-eventlog.c,
src/wavstreamer.c, src/webserver.c, src/xml-rpc.c: Add memory
debugging (--enable-mem-debug), find and fix several small (and
not so small) memory leaks
2007-01-11 01:28 rpedde
* src/main.c: update usage() to reflect new -k and -V options, as
reminded by Steve in the forums
2007-01-10 06:19 rpedde
* src/main.c: Fix -V to exit after displaying version
2007-01-09 18:12 rpedde
* src/main.c, src/os-unix.c, src/os-win32.c, src/os.h, src/util.c:
Move signal handling to parent thread, add -V and -k options,
closing #219, and fixing problems with daemontools
2007-01-09 05:55 rpedde
* src/db-sql.c: Fix problem with adding playlists as reported in
forums
2007-01-02 04:31 rpedde
* mkmac.sh.templ, osx/makedist.sh.templ: Update mac build scripts
to build universal binaries
2007-01-01 17:36 rpedde
* osx/FireflyPrefs/Swedish.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/Swedish.lproj/Localizable.strings,
osx/FireflyPrefs/i18n/Swedish.strings: Update swedish
internationalization for osx based on changes from Anton
Johansson
2007-01-01 17:30 rpedde
* osx/FireflyPrefs/Dutch.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/English.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/FireflyPrefs.xcodeproj/project.pbxproj,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/German.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/Italian.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/Japanese.lproj,
osx/FireflyPrefs/Japanese.lproj/FireflyPrefsPref.nib,
osx/FireflyPrefs/Japanese.lproj/FireflyPrefsPref.nib/classes.nib,
osx/FireflyPrefs/Japanese.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/Japanese.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/Japanese.lproj/InfoPlist.strings,
osx/FireflyPrefs/Japanese.lproj/Localizable.strings,
osx/FireflyPrefs/Swedish.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/i18n/Japanese.strings: Add Japanese
internationalization to osx app courtesy of Gareth Potter
2006-12-31 21:28 rpedde
* src/conf.c, src/err.c, src/util.c, src/util.h: consolidate mutex
locking to better debug deadlocks
2006-12-31 21:28 rpedde
* osx/FireflyPrefs/Dutch.lproj,
osx/FireflyPrefs/Dutch.lproj/FireflyPrefsPref.nib,
osx/FireflyPrefs/Dutch.lproj/FireflyPrefsPref.nib/classes.nib,
osx/FireflyPrefs/Dutch.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/Dutch.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/Dutch.lproj/InfoPlist.strings,
osx/FireflyPrefs/Dutch.lproj/Localizable.strings,
osx/FireflyPrefs/FireflyPrefs.xcodeproj/project.pbxproj,
osx/FireflyPrefs/i18n/Dutch.strings: Add Dutch localizations to
Mac application
2006-12-31 21:22 rpedde
* src/db-sql-sqlite2.c, src/db-sql-sqlite3.c: Don't delete
hand-crafted static playlists (type 0) on full reload
2006-12-24 17:53 rpedde
* win32/nsi/mt-daapd.nsi.templ: Forward port nsi fixes from r1462
on roku-1.0 branch to trunk
2006-12-19 05:06 rpedde
* src/conf.c, src/ff-plugins.h: automatically shorten the
rendezvous name if it's too long
2006-12-19 01:48 rpedde
* src/plugin.c: try to better detect successful transcoding in
order to update play counts - #191
2006-12-18 06:31 rpedde
* src/rend-win32.c: expand tabs
2006-12-08 05:36 rpedde
* win32/FireflyShell/FireflyShellITA.rc,
win32/FireflyShell/FireflyShellITA.vcproj,
win32/FireflyShell/localizations/italian,
win32/FireflyShell/localizations/italian/italian.ini,
win32/FireflyShell/localizations/italian/italian.lws,
win32/mt-daapd.sln, win32/nsi/localizations/Italian.nsh,
win32/nsi/mt-daapd.nsi.templ: Add Italian localizations to
windows applet and installer, courtesy of Luca Paolini
2006-12-07 05:52 rpedde
* osx/FireflyPrefs/FireflyPrefs.xcodeproj/project.pbxproj,
osx/FireflyPrefs/Italian.lproj,
osx/FireflyPrefs/Italian.lproj/FireflyPrefsPref.nib,
osx/FireflyPrefs/Italian.lproj/FireflyPrefsPref.nib/classes.nib,
osx/FireflyPrefs/Italian.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/Italian.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/Italian.lproj/InfoPlist.strings,
osx/FireflyPrefs/Italian.lproj/Localizable.strings,
osx/FireflyPrefs/i18n/Italian.strings: Add Italian Pref Pane
translations, courtesy of Luca Paolini
2006-12-06 06:58 rpedde
* osx/FireflyPrefs/English.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/English.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/English.lproj/Localizable.strings,
osx/FireflyPrefs/FireflyPrefs.xcodeproj/project.pbxproj,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.old.nib,
osx/FireflyPrefs/German.lproj,
osx/FireflyPrefs/German.lproj/FireflyPrefsPref.nib,
osx/FireflyPrefs/German.lproj/FireflyPrefsPref.nib/classes.nib,
osx/FireflyPrefs/German.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/German.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/German.lproj/InfoPlist.strings,
osx/FireflyPrefs/German.lproj/Localizable.strings,
osx/FireflyPrefs/Swedish.lproj,
osx/FireflyPrefs/Swedish.lproj/FireflyPrefsPref.nib,
osx/FireflyPrefs/Swedish.lproj/FireflyPrefsPref.nib/classes.nib,
osx/FireflyPrefs/Swedish.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/Swedish.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/Swedish.lproj/InfoPlist.strings,
osx/FireflyPrefs/Swedish.lproj/Localizable.strings,
osx/FireflyPrefs/i18n/German.strings,
osx/FireflyPrefs/i18n/Swedish.strings: Add German i18n for Prefs
Panel courtesy of Helmut Wieser, as well as Swedish by Anton
Johansson
2006-12-06 05:08 rpedde
* win32/FireflyShell/FireflyShellJPN.rc,
win32/FireflyShell/FireflyShellJPN.vcproj,
win32/FireflyShell/FireflyShellSWE.rc,
win32/FireflyShell/FireflyShellSWE.vcproj,
win32/FireflyShell/localizations/japanese,
win32/FireflyShell/localizations/japanese/japanese.ini,
win32/FireflyShell/localizations/japanese/japanese.lws,
win32/FireflyShell/localizations/swedish,
win32/FireflyShell/localizations/swedish/swedish.ini,
win32/FireflyShell/localizations/swedish/swedish.lws,
win32/mt-daapd.sln, win32/nsi/localizations/Japanese.nsh,
win32/nsi/localizations/Swedish.nsh,
win32/nsi/mt-daapd.nsi.templ: Add Japanese and Swedish
localizations for Windows, courtesy of Gareth Potter and Anton
Johansson respectively.
2006-12-05 05:53 rpedde
* osx/FireflyPrefs/English.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/English.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/FireflyPrefs.xcodeproj/project.pbxproj,
osx/FireflyPrefs/French.lproj,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.nib,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.nib/classes.nib,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.nib/info.nib,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.nib/keyedobjects.nib,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.old.nib,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.old.nib/classes.nib,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.old.nib/info.nib,
osx/FireflyPrefs/French.lproj/FireflyPrefsPref.old.nib/keyedobjects.nib,
osx/FireflyPrefs/French.lproj/InfoPlist.strings,
osx/FireflyPrefs/French.lproj/Localizable.strings,
osx/FireflyPrefs/i18n, osx/FireflyPrefs/i18n/English.strings,
osx/FireflyPrefs/i18n/French.strings: Add French translations to
osx applicaiton
2006-11-30 07:28 rpedde
* win32/FireflyShell/AboutPage.cpp,
win32/FireflyShell/FireflyShell.DEU.rc,
win32/FireflyShell/FireflyShell.cpp,
win32/FireflyShell/FireflyShell.h,
win32/FireflyShell/FireflyShell.rc,
win32/FireflyShell/FireflyShellDEU.vcproj,
win32/FireflyShell/FireflyShellFRA.rc,
win32/FireflyShell/FireflyShellFRA.vcproj,
win32/FireflyShell/FireflyShellNLD.rc,
win32/FireflyShell/FireflyShellNLD.vcproj,
win32/FireflyShell/localizations/dutch/dutch.ini,
win32/FireflyShell/localizations/french/french.ini,
win32/FireflyShell/localizations/german/german.ini,
win32/FireflyShell/localizations/german/german.lws,
win32/nsi/localizations/French.nsh, win32/nsi/mt-daapd.nsi.templ:
Finish localizations for dutch, german, and french
2006-11-30 06:26 rpedde
* win32/nsi/localizations/Dutch.nsh,
win32/nsi/localizations/French.nsh,
win32/nsi/localizations/German.nsh: Updates to NSI localizations
2006-11-28 22:11 rpedde
* configure.in, src/Makefile.am, src/rend-avahi.c: add avahi
support to trunk
2006-11-28 08:38 rpedde
* win32/nsi/localizations/German.nsh: updated german localizations
for nsis installer, again from Helmut.
2006-11-28 07:38 rpedde
* win32/FireflyShell/FireflyShell.DEU.rc,
win32/FireflyShell/FireflyShellDEU.vcproj,
win32/FireflyShell/localizations/german/german.ini,
win32/FireflyShell/localizations/german/german.lws,
win32/mt-daapd.sln, win32/nsi/localizations,
win32/nsi/localizations/Dutch.nsh,
win32/nsi/localizations/English.nsh,
win32/nsi/localizations/French.nsh,
win32/nsi/localizations/German.nsh, win32/nsi/mt-daapd.nsi.templ:
Add German internationalization for firefly shell, courtesy of
Helmut Wieser. Start localizations for win32 installer.
2006-11-27 00:17 rpedde
* src/db-sql.c: Add more logging for duplicate playlist
2006-11-27 00:00 rpedde
* src/rend-osx.c, src/scan-xml.c, src/util.c: Reference iTunes
playlist by name hash rather than native playlist id
2006-11-26 21:53 rpedde
* win32/FireflyShell/FireflyShellFRA.rc,
win32/FireflyShell/FireflyShellFRA.vcproj,
win32/FireflyShell/FireflyShellNLD.rc,
win32/FireflyShell/FireflyShellNLD.vcproj,
win32/FireflyShell/localizations/dutch,
win32/FireflyShell/localizations/dutch/dutch.ini,
win32/FireflyShell/localizations/dutch/dutch.lws,
win32/FireflyShell/localizations/french,
win32/FireflyShell/localizations/french/french.ini,
win32/FireflyShell/localizations/french/french.lws,
win32/FireflyShell/localizations/german,
win32/FireflyShell/localizations/german.ini,
win32/FireflyShell/localizations/german.lws,
win32/FireflyShell/localizations/german/german.ini,
win32/FireflyShell/localizations/german/german.lws: Add
localizations for French/France courtesy of Julien Richefeu, and
Dutch/Netherlands courtesy of Eddie Bindt.
2006-11-22 06:04 rpedde
* src/rend-win32.c: Fix rendezvous registration problem on win32
where sometimes rendezvous names wouldn't get registered.
2006-11-22 04:52 rpedde
* win32/FireflyShell/localizations,
win32/FireflyShell/localizations/german.ini,
win32/FireflyShell/localizations/german.lws: Add localization
files
2006-11-22 04:25 rpedde
* win32/FireflyShell/FireflyShell.rc: Strip string table entries
that don't need to be translated.
2006-11-22 04:10 rpedde
* src/plugin.c: include sys/select.h for freebsd, courtesy of Denis
2006-11-21 17:27 rpedde
* win32/nsi/mt-daapd.nsi.templ: Fix for silent installs of windows
package (/S)
2006-11-19 18:58 rpedde
* admin-root/config.xml, src/conf.c, src/db-sql-sqlite2.c,
src/db-sql-sqlite3.c: Fix db upgrade from 12 -> 13
2006-11-16 04:13 rpedde
* src/webserver.c: iTunes updates, courtesy of Shish
2006-11-14 05:29 rpedde
* src/configfile.c, src/dynamic-art.c, src/err.c, src/main.c,
src/plugins/out-daap-proto.c, src/plugins/rsp.c,
src/plugins/ssc-script.c, src/plugins/xml-rpc.c, src/scan-flac.c,
src/scan-mp3.c, src/scan-mpc.c, src/scan-ogg.c, src/scan-url.c,
src/scan-wav.c, src/scan-wma.c, src/scan-xml.c, src/xml-rpc.c:
stdint fixes
2006-11-14 01:40 rpedde
* src/mp3-scanner.c, src/os-win32.c, src/w32-eventlog.c,
src/w32-service.c: PATH_MAX vs MAX_PATH fixes. Stupid windows.
2006-11-13 00:09 rpedde
* src/mp3-scanner.c, src/os-win32.c,
win32/FireflyShell/FireflyShell.cpp,
win32/FireflyShell/FireflyShell.vcproj: Make fireflyshell drop a
drive mapping ini file, so that the server can convert network
drive letters to unc paths.
2006-11-11 23:15 rpedde
* src/ff-plugins.h, src/os-win32-u.c, src/os-win32.c,
src/plugins/out-daap-proto.c, src/plugins/ssc-ffmpeg.c,
src/scan-wma.c, src/win32.h, win32/mt-daapd.vcproj,
win32/out-daap/out-daap.vcproj: win32 cleanups, fixes for 48k
flac playing slowly.
2006-11-11 22:00 rpedde
* osx/makedist.sh.templ: Get favico in the mac build
2006-11-11 21:56 rpedde