[Slim-Checkins] r33961 - in /7.8/trunk: ./ platforms/ platforms/win32/ server/ server/Slim/Plugin/Slacker/ tools/update-version/
[email protected] Tue, 08 May 2012 16:20:37 -0000
| Newsgroups | gmane.music.equipment.slimdevices.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: agrundman
Date: Tue May 8 09:20:36 2012
New Revision: 33961
URL: http://svn.slimdevices.com/slim?rev=33961&view=rev
Log:
r81096@macbookpro (orig r33954): mherger | 2012-05-04 00:38:11 -0400
Bug: n/a
Description: bump year on copyright message
r81097@macbookpro (orig r33955): mherger | 2012-05-04 03:41:42 -0400
Bug: n/a
Description: move Windows build configuration files to platform folder
r81098@macbookpro (orig r33956): mherger | 2012-05-04 03:55:56 -0400
Bug: n/a
Description: move build script to platforms folder
r81099@macbookpro (orig r33957): mherger | 2012-05-04 04:14:49 -0400
Bug: n/a
Description: move update-version helper script to tools folder
r81102@macbookpro (orig r33960): mherger | 2012-05-08 07:57:29 -0400
Bug: n/a
Description: some features allow skipping back (rew)
Added:
7.8/trunk/platforms/buildme.pl
- copied, changed from r33884, 7.8/trunk/buildme.pl
7.8/trunk/platforms/win32/cleanup.perlapp
- copied unchanged from r33884, 7.8/trunk/cleanup.perlapp
7.8/trunk/platforms/win32/scanner.perlapp
- copied unchanged from r33884, 7.8/trunk/scanner.perlapp
7.8/trunk/platforms/win32/squeezecenter.perlsvc
- copied unchanged from r33884, 7.8/trunk/squeezecenter.perlsvc
7.8/trunk/tools/update-version/
7.8/trunk/tools/update-version/update-version
- copied unchanged from r33884, 7.8/trunk/update-version
7.8/trunk/tools/update-version/version-files
- copied, changed from r33888, 7.8/trunk/version-files
Removed:
7.8/trunk/buildme.pl
7.8/trunk/cleanup.perlapp
7.8/trunk/scanner.perlapp
7.8/trunk/squeezecenter.perlsvc
7.8/trunk/update-version
7.8/trunk/version-files
Modified:
7.8/trunk/ (props changed)
7.8/trunk/server/Slim/Plugin/Slacker/ProtocolHandler.pm
7.8/trunk/server/strings.txt
Propchange: 7.8/trunk/
------------------------------------------------------------------------------
--- svk:merge (original)
+++ svk:merge Tue May 8 09:20:36 2012
@@ -25,7 +25,7 @@
60ad55ce-86ed-0310-8cf8-f9d879be5ea1:/7.5/trunk:32834
60ad55ce-86ed-0310-8cf8-f9d879be5ea1:/7.6/branches/onebrowser:32502
60ad55ce-86ed-0310-8cf8-f9d879be5ea1:/7.6/trunk:33593
-60ad55ce-86ed-0310-8cf8-f9d879be5ea1:/7.7/trunk:33949
+60ad55ce-86ed-0310-8cf8-f9d879be5ea1:/7.7/trunk:33960
60ad55ce-86ed-0310-8cf8-f9d879be5ea1:/branches/7.0:17793
60ad55ce-86ed-0310-8cf8-f9d879be5ea1:/branches/cometd-refactor:13305
60ad55ce-86ed-0310-8cf8-f9d879be5ea1:/private-branches/ray-svk:15970
Copied: 7.8/trunk/platforms/buildme.pl (from r33884, 7.8/trunk/buildme.pl)
URL: http://svn.slimdevices.com/slim/7.8/trunk/platforms/buildme.pl?p2=7.8/trunk/platforms/buildme.pl&p1=7.8/trunk/buildme.pl&r1=33884&r2=33961&rev=33961&view=diff
==============================================================================
--- 7.8/trunk/buildme.pl (original)
+++ 7.8/trunk/platforms/buildme.pl Tue May 8 09:20:36 2012
@@ -922,7 +922,7 @@
"InternalName=SqueezeboxServer",
));
- system("cd $buildDir/server; perlsvc --perl \"$windowsPerlPath\" --info \"$programInfo\" ../squeezecenter.perlsvc");
+ system("cd $buildDir/server; perlsvc --perl \"$windowsPerlPath\" --info \"$programInfo\" ../platforms/win32/squeezecenter.perlsvc");
move("$buildDir/server/slimserver.exe", "$buildDir/build/server/SqueezeSvr.exe");
@@ -934,7 +934,7 @@
"InternalName=Scanner",
));
- system("cd $buildDir/server; perlapp --perl \"$windowsPerlPath\" --info \"$programInfo\" ../scanner.perlapp");
+ system("cd $buildDir/server; perlapp --perl \"$windowsPerlPath\" --info \"$programInfo\" ../platforms/win32/scanner.perlapp");
move("$buildDir/server/scanner.exe", "$buildDir/build/server/scanner.exe");
@@ -946,7 +946,7 @@
"InternalName=Cleanup",
));
- system("cd $buildDir/server; perlapp --perl \"$windowsPerlPath\" --info \"$programInfo\" ../cleanup.perlapp");
+ system("cd $buildDir/server; perlapp --perl \"$windowsPerlPath\" --info \"$programInfo\" ../platforms/win32/cleanup.perlapp");
move("$buildDir/server/cleanup.exe", "$buildDir/build/server/squeezeboxcp.exe");
Modified: 7.8/trunk/server/Slim/Plugin/Slacker/ProtocolHandler.pm
URL: http://svn.slimdevices.com/slim/7.8/trunk/server/Slim/Plugin/Slacker/ProtocolHandler.pm?rev=33961&r1=33960&r2=33961&view=diff
==============================================================================
--- 7.8/trunk/server/Slim/Plugin/Slacker/ProtocolHandler.pm (original)
+++ 7.8/trunk/server/Slim/Plugin/Slacker/ProtocolHandler.pm Tue May 8 09:20:36 2012
@@ -371,6 +371,12 @@
}
return 1;
+}
+
+sub canRew {
+ my ( $class, $url ) = @_;
+
+ return $url =~ m{^slacker://(?:pid|songid|tid)/([^.]+)\.mp3} ? 1 : 0;
}
# Disallow skips after the limit is reached
@@ -401,7 +407,7 @@
}
if ( $action eq 'rew' ) {
- return 0;
+ return $class->canRew($url);
}
return 1;
@@ -687,14 +693,14 @@
duration => $track->{tlen},
replay_gain => $track->{audiogain},
# Note Slacker offers 5 image sizes: 75, 272, 383, 700, 1400
- cover => 'http://images.slacker.com/covers/272/' . $track->{albumid},
+ cover => $track->{cover} || 'http://images.slacker.com/covers/1400/' . $track->{albumid},
icon => $icon,
bitrate => '128k CBR',
type => 'MP3 (Slacker)',
info_link => 'plugins/slacker/trackinfo.html',
buttons => {
# disable REW/Previous button
- rew => 0,
+ rew => $class->canRew($url) || 0,
# disable FWD when you've reached skip limit
fwd => canSkip($client) ? 1 : 0,
Modified: 7.8/trunk/server/strings.txt
URL: http://svn.slimdevices.com/slim/7.8/trunk/server/strings.txt?rev=33961&r1=33960&r2=33961&view=diff
==============================================================================
--- 7.8/trunk/server/strings.txt (original)
+++ 7.8/trunk/server/strings.txt Tue May 8 09:20:36 2012
@@ -92,34 +92,34 @@
ZH_CN Kok-Bin Lee
COPYRIGHT
- CS © 2001-2011 Logitech Verze 7.8.0
- DA © 2001-2011 Logitech - version 7.8.0
- DE © 2001-2011 Logitech Version 7.8.0
- EN © 2001-2011 Logitech Version 7.8.0
- ES © 2001-2011 Logitech Versión 7.8.0
- FI © 2001-2011 Logitechin versio 7.8.0
- FR © 2001-2011 Logitech Version 7.8.0
- IT © 2001-2011 Logitech versione 7.8.0
- NL © 2001-2011 Logitech versie 7.8.0
- NO © 2001â2011 Logitech versjon 7.8.0
- PL © 2001-2011 Logitech wersja 7.8.0
- RU © Logitech, 2001-2011. ÐеÑÑÐ¸Ñ 7.8.0
- SV © 2001â2011 Logitech Version 7.8.0
+ CS © 2001-2012 Logitech Verze 7.8.0
+ DA © 2001-2012 Logitech - version 7.8.0
+ DE © 2001-2012 Logitech Version 7.8.0
+ EN © 2001-2012 Logitech Version 7.8.0
+ ES © 2001-2012 Logitech Versión 7.8.0
+ FI © 2001-2012 Logitechin versio 7.8.0
+ FR © 2001-2012 Logitech Version 7.8.0
+ IT © 2001-2012 Logitech versione 7.8.0
+ NL © 2001-2012 Logitech versie 7.8.0
+ NO © 2001â2012 Logitech versjon 7.8.0
+ PL © 2001-2012 Logitech wersja 7.8.0
+ RU © Logitech, 2001-2012. ÐеÑÑÐ¸Ñ 7.8.0
+ SV © 2001â2012 Logitech Version 7.8.0
COPYRIGHT_LOGITECH
- CS © 2001-2011 Logitech
- DA © 2001-2011 Logitech
- DE © 2001-2011 Logitech
- EN © 2001-2011 Logitech
- ES © 2001-2011 Logitech
- FI © 2001-2011 Logitech
- FR © 2001-2011 Logitech
- IT © 2001-2011 Logitech
- NL © 2001-2011 Logitech
- NO © 2001-2011 Logitech
- PL © 2001-2011 Logitech
- RU © Logitech, 2001-2011
- SV © 2001-2011 Logitech
+ CS © 2001-2012 Logitech
+ DA © 2001-2012 Logitech
+ DE © 2001-2012 Logitech
+ EN © 2001-2012 Logitech
+ ES © 2001-2012 Logitech
+ FI © 2001-2012 Logitech
+ FR © 2001-2012 Logitech
+ IT © 2001-2012 Logitech
+ NL © 2001-2012 Logitech
+ NO © 2001-2012 Logitech
+ PL © 2001-2012 Logitech
+ RU © Logitech, 2001-2012
+ SV © 2001-2012 Logitech
VERSION
CS Verze 7.8.0 / r%s
Copied: 7.8/trunk/tools/update-version/version-files (from r33888, 7.8/trunk/version-files)
URL: http://svn.slimdevices.com/slim/7.8/trunk/tools/update-version/version-files?p2=7.8/trunk/tools/update-version/version-files&p1=7.8/trunk/version-files&r1=33888&r2=33961&rev=33961&view=diff
==============================================================================
--- 7.8/trunk/version-files (original)
+++ 7.8/trunk/tools/update-version/version-files Tue May 8 09:20:36 2012
@@ -1,126 +1,126 @@
-./platforms/osx/Preference Pane/Launcher.plist
-./platforms/osx/Preference Pane/Pref_Tester.plist
-./platforms/osx/Preference Pane/Czech.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Danish.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Dutch.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/English.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Finnish.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/French.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/German.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Italian.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Norwegian.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Polish.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Russian.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Spanish.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Swedish.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Czech.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Danish.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Dutch.lproj/Localizable.strings
-./platforms/osx/Preference Pane/English.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Finnish.lproj/Localizable.strings
-./platforms/osx/Preference Pane/French.lproj/Localizable.strings
-./platforms/osx/Preference Pane/German.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Italian.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Norwegian.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Polish.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Russian.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Spanish.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Swedish.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Czech.lproj/Pref.strings
-./platforms/osx/Preference Pane/Danish.lproj/Pref.strings
-./platforms/osx/Preference Pane/Dutch.lproj/Pref.strings
-./platforms/osx/Preference Pane/English.lproj/Pref.strings
-./platforms/osx/Preference Pane/Finnish.lproj/Pref.strings
-./platforms/osx/Preference Pane/French.lproj/Pref.strings
-./platforms/osx/Preference Pane/German.lproj/Pref.strings
-./platforms/osx/Preference Pane/Italian.lproj/Pref.strings
-./platforms/osx/Preference Pane/Norwegian.lproj/Pref.strings
-./platforms/osx/Preference Pane/Polish.lproj/Pref.strings
-./platforms/osx/Preference Pane/Russian.lproj/Pref.strings
-./platforms/osx/Preference Pane/Spanish.lproj/Pref.strings
-./platforms/osx/Preference Pane/Swedish.lproj/Pref.strings
-./platforms/osx/Preference Pane/Czech.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/Danish.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/Dutch.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/English.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/Finnish.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/French.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/German.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/Italian.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/Norwegian.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/Polish.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/Russian.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/Spanish.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/Swedish.lproj/Pref.nib/keyedobjects.nib
-./platforms/osx/Preference Pane/Czech.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/Danish.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/Dutch.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/English.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/Finnish.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/French.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/German.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/Italian.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/Norwegian.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/Polish.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/Russian.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/Spanish.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/Swedish.lproj/Pref.nib/designable.nib
-./platforms/osx/Preference Pane/Installer/Czech.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/Danish.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/Dutch.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/English.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/Finnish.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/French.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/German.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/Italian.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/Norwegian.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/Polish.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/Russian.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/Spanish.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/Swedish.lproj/InfoPlist.strings
-./platforms/osx/Preference Pane/Installer/Czech.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/Danish.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/Dutch.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/English.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/Finnish.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/French.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/German.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/Italian.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/Norwegian.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/Polish.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/Russian.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/Spanish.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/Swedish.lproj/Localizable.strings
-./platforms/osx/Preference Pane/Installer/Czech.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/Danish.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/Dutch.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/English.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/Finnish.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/French.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/German.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/Italian.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/Norwegian.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/Polish.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/Russian.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/Spanish.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/Installer/Swedish.lproj/MainMenu.strings
-./platforms/osx/Preference Pane/SqueezeCenter.xcodeproj/project.pbxproj
-./platforms/osx/Preference Pane/Info.plist
-./platforms/osx/Preference Pane/Launcher.plist
-./platforms/osx/Preference Pane/Installer.plist
-./platforms/osx/Preference Pane/Pref_Tester.plist
-./platforms/solaris/makeit.sh
-./platforms/readynas/addon_template/addons.conf
-./platforms/readynas/addon_template/SQUEEZEBOX_AVAILABLE.xml
-./platforms/readynas/addon_template/SQUEEZEBOX_CURRENT.xml
-./platforms/readynas/addon_template/SQUEEZEBOX.xml
-./platforms/redhat/squeezeboxserver.spec
-./platforms/win32/installer/SqueezeCenter.iss
-./platforms/win32/installer/SqueezeCenter.wxs
-./server/HTML/EN/html/softsqueeze/index.html
-./server/strings.txt
-./server/cleanup.pl
-./server/scanner.pl
-./server/slimserver.pl
-./server/slimservice.pl
-./server/Slim/bootstrap.pm
+../../platforms/osx/Preference Pane/Launcher.plist
+../../platforms/osx/Preference Pane/Pref_Tester.plist
+../../platforms/osx/Preference Pane/Czech.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Danish.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Dutch.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/English.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Finnish.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/French.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/German.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Italian.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Norwegian.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Polish.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Russian.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Spanish.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Swedish.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Czech.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Danish.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Dutch.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/English.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Finnish.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/French.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/German.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Italian.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Norwegian.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Polish.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Russian.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Spanish.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Swedish.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Czech.lproj/Pref.strings
+../../platforms/osx/Preference Pane/Danish.lproj/Pref.strings
+../../platforms/osx/Preference Pane/Dutch.lproj/Pref.strings
+../../platforms/osx/Preference Pane/English.lproj/Pref.strings
+../../platforms/osx/Preference Pane/Finnish.lproj/Pref.strings
+../../platforms/osx/Preference Pane/French.lproj/Pref.strings
+../../platforms/osx/Preference Pane/German.lproj/Pref.strings
+../../platforms/osx/Preference Pane/Italian.lproj/Pref.strings
+../../platforms/osx/Preference Pane/Norwegian.lproj/Pref.strings
+../../platforms/osx/Preference Pane/Polish.lproj/Pref.strings
+../../platforms/osx/Preference Pane/Russian.lproj/Pref.strings
+../../platforms/osx/Preference Pane/Spanish.lproj/Pref.strings
+../../platforms/osx/Preference Pane/Swedish.lproj/Pref.strings
+../../platforms/osx/Preference Pane/Czech.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/Danish.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/Dutch.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/English.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/Finnish.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/French.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/German.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/Italian.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/Norwegian.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/Polish.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/Russian.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/Spanish.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/Swedish.lproj/Pref.nib/keyedobjects.nib
+../../platforms/osx/Preference Pane/Czech.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/Danish.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/Dutch.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/English.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/Finnish.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/French.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/German.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/Italian.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/Norwegian.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/Polish.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/Russian.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/Spanish.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/Swedish.lproj/Pref.nib/designable.nib
+../../platforms/osx/Preference Pane/Installer/Czech.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/Danish.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/Dutch.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/English.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/Finnish.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/French.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/German.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/Italian.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/Norwegian.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/Polish.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/Russian.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/Spanish.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/Swedish.lproj/InfoPlist.strings
+../../platforms/osx/Preference Pane/Installer/Czech.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/Danish.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/Dutch.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/English.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/Finnish.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/French.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/German.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/Italian.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/Norwegian.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/Polish.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/Russian.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/Spanish.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/Swedish.lproj/Localizable.strings
+../../platforms/osx/Preference Pane/Installer/Czech.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/Danish.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/Dutch.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/English.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/Finnish.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/French.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/German.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/Italian.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/Norwegian.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/Polish.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/Russian.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/Spanish.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/Installer/Swedish.lproj/MainMenu.strings
+../../platforms/osx/Preference Pane/SqueezeCenter.xcodeproj/project.pbxproj
+../../platforms/osx/Preference Pane/Info.plist
+../../platforms/osx/Preference Pane/Launcher.plist
+../../platforms/osx/Preference Pane/Installer.plist
+../../platforms/osx/Preference Pane/Pref_Tester.plist
+../../platforms/solaris/makeit.sh
+../../platforms/readynas/addon_template/addons.conf
+../../platforms/readynas/addon_template/SQUEEZEBOX_AVAILABLE.xml
+../../platforms/readynas/addon_template/SQUEEZEBOX_CURRENT.xml
+../../platforms/readynas/addon_template/SQUEEZEBOX.xml
+../../platforms/redhat/squeezeboxserver.spec
+../../platforms/win32/installer/SqueezeCenter.iss
+../../platforms/win32/installer/SqueezeCenter.wxs
+../../server/HTML/EN/html/softsqueeze/index.html
+../../server/strings.txt
+../../server/cleanup.pl
+../../server/scanner.pl
+../../server/slimserver.pl
+../../server/slimservice.pl
+../../server/Slim/bootstrap.pm
_______________________________________________
checkins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/checkins