-
Notifications
You must be signed in to change notification settings - Fork 5
/
ChangeLog
1163 lines (649 loc) · 27.9 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
xxxx-xx-xx Benjamin Zores <[email protected]>
* bug-fix release version 2.0.1
- System:
+ Restored HDD installation setup (now supports both i386 and x86_64).
+ Fixed eject issue when booting from CD.
+ Xorg Server v1.10.4.
- Audio Drivers:
+ Fixed some broken audio devices audio mixer.
+ Fixed Tegra2 audio support.
- Video Drivers:
+ Fixed Tegra2 HDMI resolution auto-detection.
+ Support for EFI framebuffer.
+ Support for ATI/AMD proprietary drivers.
+ Support for ATI/AMD GPU acceleration through VA-API/XvBA.
+ Support for nVidia legacy GPUs.
- Input:
+ Restored support for some LIRC-compatible devices.
- Networking Features:
+ Added some missing WiFi cards firmwares.
- MediaCenter:
+ Added system's packages check/updater graphical utility.
+ Added network settings configuration graphical utility.
2011-09-17 Benjamin Zores <[email protected]>
* release version 2.0, codename "Love It or Shove It"
- Supported Architectures:
+ x86 32 and 64 bits PCs
+ ARM TI OMAP4 Pandaboard
+ ARM nVidia Tegra2 Harmony
- System:
+ Linux Kernel v2.6.38.8.
+ BusyBox v1.19.2
+ Connman Network Manager v0.76.
+ Xorg Server v1.10.3.
+ Mesa v7.11.
+ OPKG Package Manager v0.18
+ USB persistent user data storage.
- Audio Drivers:
+ ALSA v1.0.24.1.
+ Support for Analog, SPDIF and HDMI output devices.
- Video Drivers:
+ Support for Intel, nVidia, ATI, Matrox and VIA GPUs.
+ Support for CRT, LCD and HDMI output devices.
+ OpenGL and OpenGL|ES hardware assisted graphics acceleration.
+ VDPAU, VA-API and Crystal HD hardware assisted video decoding
for nVidia, Intel and Broadcom GPUs.
- Input:
+ Mouse and Synaptics touch pads.
+ HID Keyboards.
+ Remote Controls.
- Networking Features:
+ NFS shares.
+ Samba auto-discovery.
+ UPnP / DLNA media discovery.
+ ZeroConf services announcements.
+ HTTP server.
+ FTP server
- MediaCenter:
+ XBMC Media Center 10.1 "Dharma" frontend
* Movies and TV Shows, with subtitles support.
* Music Collection
* Pictures and Slideshows
* CDDA, DVD and (unencrypted) Bluray support.
* Media Database Support.
* Internet MovieDB / TVDB metadata and covers grabbers.
* Skins
- Deprecated Features:
+ DVB Digital TV cards support (will come back soon).
+ V4L Analog TV cards support (dead once for all).
+ ISO Generator (no that useful anymore).
+ Legacy HDD Install (replaced by LiveUSB support
with persistent data storage).
So Long and Eternal Thanks to All Contributors Over the Years !!
2010-03-09 Benjamin Zores <[email protected]>
* release version 2.0-alpha2.
2010-02-25 Benjamin Zores <[email protected]>
* Add experimental nVidia reverse-engineered Nouveau driver.
2010-02-14 Benjamin Zores <[email protected]>
* Add ARM EABI support into toolchain.
2010-02-13 Benjamin Zores <[email protected]>
* release version 2.0-alpha1.
2009-03-07 Benjamin Zores <[email protected]>
* add parallelized multi-threaded (multi-cores) video decoding.
2009-02-01 Benjamin Zores <[email protected]>
* first inclusion of Enna user interface.
2009-01-31 Benjamin Zores <[email protected]>
* release version 1.2.
2008-12-28 Benjamin Zores <[email protected]>
* release version 1.2-beta3.
2008-12-27 Jing Liu & Davide Cavalca <[email protected]>
* add FuseISO support, to allow mouting of CD image files.
* preliminary Bluetooth support.
* add optional Samba server support.
2008-12-24 Benjamin Zores <[email protected]>
* addition of automountd, our custom D-BUS/HAL based automounter.
2008-12-14 Benjamin Zores <[email protected]>
* release version 1.2-beta2.
2008-11-01 Benjamin Zores <[email protected]>
* release version 1.2-beta1.
2008-10-11 Benjamin Zores <[email protected]>
* upgrade Linux to 2.6.27.
2008-09-11 Benjamin Zores <[email protected]>
* upgrade to X.Org 7.4
2008-08-05 Benjamin Zores <[email protected]>
* add port to 64-bits PowerPC architecture.
* upgraded to GCC 4.3.1.
* use GNU libc as default C library.
2008-07-14 Benjamin Zores <[email protected]>
* upgrade Linux to 2.6.26.
2008-06-08 Assen Totin <[email protected]>
* add FeH image viewer for X.org.
2008-06-08 Davide Cavalca <[email protected]>
* add optional support for Video Disk Recorder (VDR).
2008-05-10 Benjamin Zores <[email protected]>
* complete EeePC (701 at least) support.
2008-04-19 Benjamin Zores <[email protected]>
* completed port to x86_64 (LiveCD is now fully functionnal).
2008-04-17 Benjamin Zores <[email protected]>
* upgraded Linux to 2.6.25
2008-03-01 Benjamin Zores <[email protected]>
* introduce configurator: new tool to avoid multiple installs
for trivial configuration changes.
2008-02-27 Guillaume LECERF <[email protected]>
* add support for 16bit PCMCIA cards.
2008-01-25 Benjamin Zores <[email protected]>
* upgraded Linux to 2.6.24
2008-01-13 Benjamin Zores <[email protected]>
* add support for NeufTelecom EasyGate platform.
2007-10-29 Guillaume LECERF <[email protected]>
* upgraded to GCC 4.2.2.
2007-10-10 Benjamin Zores <[email protected]>
* upgraded Linux to 2.6.23.
2007-10-06 Benjamin Zores <[email protected]>
* upgraded BusyBox to 1.7.2.
* added Xorg RadeonHD driver.
2007-09-07 Benjamin Zores <[email protected]>
* upgraded to X.Org 7.3.
2007-08-24 Aurelien Jacobs <[email protected]>
* updated uClibc to snapshot 20070824.
* updated busybox to 1.7.0.
2007-08-11 Benjamin Zores <[email protected]>
* upgraded to GCC 4.2.1.
2007-07-15 Guillaume LECERF <[email protected]>
* support for intel iwlwifi driver,
including drivers for 3945ABG/BG and
4965AGN wifi chipsets.
2007-07-15 Andraz Levstik <[email protected]>
* support for 9P (Plan 9) network shares.
2007-07-15 Benjamin Zores <[email protected]>
* support for SMP computers (multi-processors, multi-cores
and HyperThreading) on i386 and x86_64 architectures.
* support for HDMI output under X.Org
2007-07-14 Benjamin Zores <[email protected]>
* introduced support of platform specific compilation options.
* first platform is LinuTop embedded PC.
2007-07-09 Guillaume LECERF <[email protected]>
* updated linux to 2.6.22.
* updated uClibc to snapshot 20070709.
* updated rt* wifi drivers to snapshot 20070709.
* updated acx drivers to snapshot 20070610,
non working atm, but using the new 802.11 stack.
2007-07-06 Benjamin Zores <[email protected]>
* initial port to x86_64 architecture.
2007-07-03 Guillaume LECERF <[email protected]>
* updated busybox to 1.6.0.
2007-07-02 Benjamin Zores <[email protected]>
* added HDTV support through X.Org.
2007-07-01 Benjamin Zores <[email protected]>
* released version 1.1.
2007-06-17 Benjamin Zores <[email protected]>
* released version 1.1-rc4 for test and trial.
2007-06-12 Guillaume LECERF <[email protected]>
* add support for multiple menu languages in the ISO.
2007-06-02 Benjamin Zores <[email protected]>
* released version 1.1-rc3 for test and trial.
2007-06-02 Benjamin Zores <[email protected]>
* removed libdts, libmpcdec, libogg, libvorbis and libtheora, as
deprecated by new MPlayer internal decoders/demuxers.
* reworked internationalization files.
2007-06-02 Guillaume LECERF <[email protected]>
* updated MPlayer to SVN r23418.
* added new libdvdnav fork.
2007-05-17 Guillaume LECERF <[email protected]>
* updated linux to 2.6.21.1.
2007-05-06 Aurelien Jacobs <[email protected]>
* updated uClibc to 0.9.29.
2007-04-28 Guillaume LECERF <[email protected]>
* updated lcd4linux to 0.10.1-RC1.
2007-03-24 Aurelien Jacobs <[email protected]>
* updated busybox to 1.5.0.
2007-03-19 Guillaume LECERF <[email protected]>
* updated busybox to 1.4.2.
2007-03-01 Benjamin Zores <[email protected]>
* released version 1.1-rc2 for test and trial.
2007-02-12 Guillaume LECERF <[email protected]>
* updated uClibc to snapshot 20070212.
2007-02-03 Benjamin Zores <[email protected]>
* released version 1.1-rc1 for test and trial.
2007-01-23 Benjamin Zores <[email protected]>
* upgraded linux to 2.6.20-rc5.
2007-01-21 Aurelien Jacobs <[email protected]>
* updated busybox to 1.4.0.
2006-12-19 Benjamin Zores <[email protected]>
* added optional support for DirectFB video output.
2006-12-14 Aurelien Jacobs <[email protected]>
* updated busybox to 1.3.0.
2006-12-14 Benjamin Zores <[email protected]>
* added optional support for IVTV based (PVRxxx) TV cards.
2006-12-13 Benjamin Zores <[email protected]>
* added optional support for games emulators (zsnes only right now).
2006-12-09 Guillaume LECERF <[email protected]>
* added drivers for wireless TI ACX111 chipsets.
2006-12-08 Guillaume LECERF <[email protected]>
* upgraded MPlayer to 1.0rc1,
* now compiled with --enable-libavformat
* remove support for mencoder, it's buggy
2006-11-30 Benjamin Zores <[email protected]>
* updated linux to 2.6.19
2006-11-19 Benjamin Zores <[email protected]>
* added new makefile rules to build and play VMware virtual machines.
2006-11-12 Benjamin Zores <[email protected]>
* Added optional support for Python 2.4.3
(patch from Bertrand Cachet, initial draft from Amir).
* added optional support for SDL library.
* added optional support for PyGame bindings.
2006-10-20 Amir Shalem <[email protected]>
* Update FriBidi to 'fribidi2' code base.
2006-09-30 Amir Shalem <[email protected]>
* added optional glibc based system,
instead of uClibc.
2006-09-20 Aurelien Jacobs <[email protected]>
* updated linux to 2.6.18
2006-08-05 Andrew Calkin <[email protected]>
* added NdisWrapper support
2006-07-07 Amir Shalem <[email protected]>
* updated busybox to 1.2.0.
2006-06-29 Benjamin Zores <[email protected]>
* use powernowd for CPU frequency scaling instead of cpufreqd.
2006-06-23 Amir Shalem <[email protected]>
* updated linux to 2.6.17
2006-06-22 Aurelien Jacobs <[email protected]>
* new public release (version 1.0)
2006-06-12 Guillaume LECERF <[email protected]>
* upgraded MPlayer to 1.0pre8.
2006-05-20 Benjamin Zores <[email protected]>
* upgraded MPlayer to CVS 2006-05-19.
2006-05-16 Andrew CALKIN <[email protected]>
* disable recorder by default, as it is still experimental.
2006-05-14 Guillaume LECERF <[email protected]>
* branch vesafb-tng as it doesn't work on some cards.
2006-05-13 Benjamin Zores <[email protected]>
* upgraded MPlayer to CVS 2006-05-11.
2006-05-02 Amir Shalem <[email protected]>
* integrate vesafb-tng.
2006-04-11 Guillaume LECERF <[email protected]>
* integrate lcd4linux.
2006-03-29 Aurelien Jacobs <[email protected]>
* updated busybox to 1.1.1.
2006-03-26 Benjamin Zores <[email protected]>
* added DVD Navigation Menu support.
2006-03-25 Amir Shalem <[email protected]>
* updated linux to 2.6.16
2006-03-24 Amir Shalem <[email protected]>
* upgraded uClibc to SVN 2006-03-24
2006-03-17 Benjamin Zores <[email protected]>
* preliminary support for encoder with Time-Shifting feature
(still considered as _experimental_ at this stage).
* support for FLAC audio files metadata.
2006-03-17 Aurelien Jacobs <[email protected]>
* upgraded MPlayer to CVS 2006-02-23.
2006-03-17 Amir Shalem <[email protected]>
* Updated GCC to v4.1.0
2006-03-04 Benjamin Zores <[email protected]>
* added new menu that displays stream A/V properties
(Codec, Bitrate, Resolution, ID3 Tags ...).
2006-02-22 Laurent Peltier <[email protected]>
Mathieu Schroeter <[email protected]>
* support for SHOUTcast, Extended M3U and custom network streams.
* generator patch for network streams support.
2006-02-20 Benjamin Zores <[email protected]>
* added optionnal (default is NO) support for mencoder
(in a single binary, code shared with mplayer).
2006-02-12 Benjamin Zores <[email protected]>
* added strace (with DEVTOOLS=yes only) for debugging facility.
2006-02-10 Amir Shalem <[email protected]>
* Optional support for C++ in toolchain
* Optional support for LIVE555 library (RTP/RSTP/SIP streaming)
2006-01-03 Aurelien Jacobs <[email protected]>
* updated linux to 2.6.15.
2005-12-10 Benjamin Zores <[email protected]>
* updated djmount to release 0.50
(files are now natively shared, i.e. no more playlist, and
you can seek in remote streams).
* added support for non-free binary firmwares at sources build.
2005-11-23 Benjamin Zores <[email protected]>
* added support for PcCard (32bits CardBus only, not 16bits PCMCIA).
2005-11-11 Aurelien Jacobs <[email protected]>
* new public release (version 0.98.7)
2005-11-01 Benjamin Zores <[email protected]>
* added support for UPnP A/V Media Server browsing.
* added support for DVB (Sat, Cable, Ter) cards (PCI and USB).
* removed buggy RT2570 USB driver.
2005-10-28 Amir Shalem <[email protected]>
* updated linux to 2.6.14.
* added support for Prism54 WiFi chipsets.
* added support for Intel IPW2100/IPW2200 WiFi chipsets.
2005-08-29 Aurelien Jacobs <[email protected]>
* updated linux to 2.6.13.
2005-08-24 Benjamin Zores <[email protected]>
* added support for RT2570 USB WiFi chipsets.
* added udev external firmwares auto-loader.
2005-08-15 Aurelien Jacobs <[email protected]>
* new public release (version 0.98.6)
2005-07-18 Aurelien Jacobs <[email protected]>
* integrate udev and replace our hotplug script.
2005-07-13 Benjamin Zores <[email protected]>
* compress kernel, binaries and grub archives using LZMA algorithm.
2005-07-05 Alexis Saettler <[email protected]>
* added support for CPU frequency scaling on laptops.
2005-07-03 Benjamin Zores <[email protected]>
* added support for MusePack codec (.mpc files)
2005-06-20 Andrew Calkin <[email protected]>
* use native IDE CD drivers instead of IDE-SCSI layer.
* support for X-in-1 cards readers.
2005-06-07 Amir Shalem <[email protected]>
* added FLTK version of the generator.
2005-06-05 Andrew Calkin <[email protected]>
* added support for digimatrix remote.
2005-04-26 Benjamin Zores <[email protected]>
* added channels scanner for analog TV cards.
2005-04-17 Benjamin Zores <[email protected]>
* updated MPlayer to 1.0pre7.
* added HTTP server with CGI support for Web Management.
2005-04-15 Kevin Foss <[email protected]>
* added radio card support.
2005-04-12 Aurelien Jacobs <[email protected]>
* powerpc architecture support.
2005-04-10 Benjamin Zores <[email protected]>
* added support for CX88 TV card chipsets.
2005-03-03 Benjamin Zores <[email protected]>
* upgrade linux to 2.6.11.
2005-01-13 Aurelien Jacobs <[email protected]>
* updated uClibc to 0.9.27.
2004-12-29 Aurelien Jacobs <[email protected]>
* new public release (version 0.98.5)
2004-12-24 Aurelien Jacobs <[email protected]>
* updated MPlayer to 1.0pre6.
2004-11-25 Amir Shalem <[email protected]>
* support for cross-compiling GeeXboX under FreeBSD.
2004-11-24 Benjamin Zores <[email protected]>
* added new official theme (graphics by Nicolas Staszak).
2004-11-17 Benjamin Zores <[email protected]>
* added TVOut support for i810/i815 based cards.
2004-11-14 Amir Shalem <[email protected]>
* complete rewrite of installator and support for GRUB
as a bootloader (standalone or multiboot).
2004-10-13 Benjamin Zores <[email protected]>
* switch BusyBox to final 1.00 release.
2004-10-10 Benjamin Zores <[email protected]>
* added drivers for RT2500 i802.11 b/g chipset.
2004-09-17 Aurelien Jacobs <[email protected]>
* added a full cross-compilation toolchain.
2004-09-10 Benjamin Zores <[email protected]>
* updated VESA framebuffer driver to the new vesafb-tng.
2004-09-10 Alexis Saettler <[email protected]>
* switch BootSplash to FBSplash.
2004-09-05 Alexis Saettler <[email protected]>
* added support for Askey remote.
2004-09-03 Benjamin Zores <[email protected]>
* updated ALSA lib and utils to 1.0.6
* updated Samba to 3.0.6
* removed acx100 wireless drivers (need non free firmware to work).
2004-09-03 Aurelien Jacobs <[email protected]>
* added module-init-tools package for 2.6 modules.
* switch the 2.4 LPP patch to BootSplash.
* updated uClibc to current CVS for Linux 2.6 support.
2004-08-18 Benjamin Zores <[email protected]>
* ported GeeXboX to linux 2.6.8.1 kernel.
* linux image and initrd now in gzip format, nor bzip2.
* removed alsa-driver package (now included in kernel).
* removed at76c503 package (now included in kernel).
* updated em8300 drivers to CVS snapshot for 2.6 compatibility.
2004-08-17 Samuel Suárez <[email protected]>
* added Avermedia remote/receiver support.
2004-08-14 Sass Tabakajev <[email protected]>
* added estonian translation.
2004-08-12 Aurelien Jacobs <[email protected]>
* new public release (version 0.98)
2004-08-04 Benjamin Zores <[email protected]>
* added chapter selector for DVD and Matroska files.
2004-07-31 Alexis Saettler <[email protected]>
* added geexbox-generator Debian package
2004-07-26 Aurelien Jacobs <[email protected]>
* updated to busybox 1.00-rc2.
2004-07-25 Aurelien Jacobs <[email protected]>
* updated to busybox 1.00-rc1.
* added dts decoding support.
2004-07-22 Aurelien Jacobs <[email protected]>
* separated remote selection from ir receiver selection.
2004-07-20 Bernardo Santos <[email protected]>
* added Gradiente D-10 remote support.
2004-07-18 Benjamin Zores <[email protected]>
* added support for SPDIF output.
2004-07-15 Aurelien Jacobs <[email protected]>
* updated to MPlayer 1.0pre5.
2004-07-14 Benjamin Zores <[email protected]>
* updated to ALSA 1.0.5a.
* updated to Samba 3.0.4.
* updated to nvtv 0.4.7.
2004-07-10 Benjamin Zores <[email protected]>
* added support for USB and SideWinder joysticks.
2004-06-03 Benjamin Zores <[email protected]>
* added drivers for wireless TI ACX100 chipsets.
2004-06-01 Benjamin Zores <[email protected]>
* added drivers for wireless RT2400 chipsets.
2004-05-28 bufa <[email protected]>
* added LG remote support.
2004-05-12 Benjamin Zores <[email protected]>
* added telnet server.
2004-05-09 Aurelien Jacobs <[email protected]>
* added libirman.
2004-05-08 Aurelien Jacobs <[email protected]>
* updated to syslinux-2.09.
* updated to lirc-0.4.0pre4.
* now use lirc to manage Ati Remote Wonder.
2004-05-02 Benjamin Zores <[email protected]>
* added vidix driver for CLE266 (VIA Unichrome)
2004-04-29 Aurelien Jacobs <[email protected]>
* updated to MPlayer-1.0pre4.
* updated to linux-2.4.26.
* updated to ALSA 1.0.4.
* updated to BusyBox 1.0pre10
2004-03-31 Serge Gebhardt <sg at mystaz dot de>
* added fbi for image viewing support.
2004-03-16 Aurelien Jacobs <[email protected]>
* really working v4l2 for bt8x8 and saa7134.
2004-03-10 Aurelien Jacobs <[email protected]>
* updated nvtv to version 0.4.6.
2004-03-05 Aurelien Jacobs <[email protected]>
* added MPEG hardware decompression for DXR3.
2004-03-02 Benjamin Zores <[email protected]>
* added Serial ATA controllers support.
2004-02-24 Benjamin Zores <[email protected]>
* added 3COM/NetGear Gigabit ethernet cards support.
* switched to V4L2 API with Connexant chipsets support.
2004-02-23 barb3tta <[email protected]>
* added italian README translation.
2004-02-20 Benjamin Zores <[email protected]>
* updated to linux-2.4.25.
2004-02-06 Matt Rinsch <[email protected]>
* added Packard Bell Fast media remote and receiver support.
2004-02-05 Aurelien Jacobs <[email protected]>
* added streaming support.
2004-02-04 Benjamin Zores <[email protected]>
* added BT8x8 cards support.
2004-01-25 BWare <[email protected]>
* added wifi support.
2004-01-23 Aurelien Jacobs <[email protected]>
* updated uClibc to 0.9.26.
2004-01-15 Aurelien Jacobs <[email protected]>
* added matroska support.
2004-01-14 Madarassy László <[email protected]>
* added hungarian translation.
* patched s3switch to support virge gx2.
2004-01-07 Benjamin Zores <[email protected]>
* added DXR3/Hollywood+ cards support (TVOut only for now).
2003-12-17 Benjamin Zores <[email protected]>
* added new Xmas theme for 0.96 release
2003-12-16 Yogi <[email protected]>
* added polish translation.
2003-12-15 Michele Schaeuble <[email protected]>
* added german translation.
2003-12-14 Aurelien Jacobs <[email protected]>
* alsa updated ALSA to 1.0.0rc2.
2003-12-11 Aurelien Jacobs <[email protected]>
* updated to MPlayer 1.0pre3.
* updated to busybox 1.00-pre4.
2003-12-11 rheve <[email protected]>
* added animax remote support.
2003-12-04 Aurelien Jacobs <[email protected]>
* updated to linux-2.4.23.
* added PXE boot support.
2003-11-27 Aurelien Jacobs <[email protected]>
* added NFS support.
2003-11-23 Kiril Jovchev <[email protected]>
* added bulgarian translation.
2003-11-22 Benjamin Zores <[email protected]>
* added experimental DirectFB support.
2003-11-12 Cristi S <[email protected]>
* added romanian translation.
2003-10-19 Benjamin Zores <[email protected]>
* added new halloween theme for 0.95 release.
2003-10-16 Aurelien Jacobs <[email protected]>
* updated MPlayer to 1.0pre2.
2003-10-16 Guillaume Roche <[email protected]>
* added menu's files filter.
2003-09-28 Benjamin Zores <[email protected]>
* added the Win32 version of the generator.
2003-09-23 Aurelien Jacobs <[email protected]>
* added autoplay.
2003-09-15 laclasse <[email protected]>
* added creative PC-DVD remote support.
2003-09-15 freddy ARNAULX <[email protected]>
* added sony RM-S6 remote support.
2003-09-10 Benjamin Zores <[email protected]>
* replaced oftpd by bftpd.
2003-09-06 Aurelien Jacobs <[email protected]>
* updated to linux 2.4.22.
* updated to uClibc 0.9.20.
* updated to MPlayer 1.0pre1.
2003-09-02 Benjamin Zores <[email protected]>
* replace OSS sound drivers by ALSA ones.
2003-08-30 Aurelien Jacobs <[email protected]>
* added genext2fs to be able to build the GeeXboX without being root.
2003-08-29 Aurelien Jacobs <[email protected]>
* added XCD support.
2003-08-25 Benjamin Zores <[email protected]>
* upgraded Samba to 3.0rc1 with WinXP shares support.
* set resolution to 800x600 to fix some TV-Out bug with DVD playback.
2003-08-24 ClycioC <[email protected]>
* added brasilian portuguese translation.
2003-08-23 Aurelien Jacobs <[email protected]>
* updated MPlayer to the CVS version.
2003-08-21 Nikolas Garofil <[email protected]>
* added dutch translation.
2003-08-21 Benjamin Zores <[email protected]>
* added ftp server.
2003-08-18 kim <[email protected]>
* added finnish translation.
2003-08-14 Benjamin Zores <[email protected]>
* added zlib library to read files with compressed headers.
2003-08-13 kim <[email protected]>
* added swedish translation.
2003-08-12 c0p0n <[email protected]>
* improved spanish translation.
2003-08-09 zarta <[email protected]>
* added spanish translation.
2003-08-02 Aurelien Jacobs <[email protected]>
* fixed a bug which prevented to play file whose name contain a quote.
2003-07-30 Aurelien Jacobs <[email protected]>
* installator is now available directly from the GeeXboX cd, by typing
install at boot prompt.
2003-07-29 Aurelien Jacobs <[email protected]>
* updated busybox to 1.00-pre1.
* added DHCP network auto-configuration.
2003-07-28 Eva Mikulcikova <[email protected]>
* added czech and slovak translation.
2003-07-28 Aurelien Jacobs <[email protected]>
* added lirc_serial module to support homemade receiver.
2003-07-22 Aurelien Jacobs <[email protected]>
* updated samba to 3.0.0beta3.
* added autodetection of all the shares on the network.
2003-07-21 Benjamin Zores / Mickaël Bugnier <[email protected]>
* added new theme: movies.
2003-07-20 Benjamin Zores <[email protected]>
* added Samba Network Shares support.
2003-07-18 Aurelien Jacobs <[email protected]>
* merged rp9codecs and dmocodecs into extralite to use the new
MPlayer upstream binary codecs package.
2003-07-17 Plom <[email protected]>
* added leadtek tv2000 remote support.
2003-07-15 Benjamin Zores <[email protected]>