Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 73832 | Differences between
and this patch

Collapse All | Expand All

(-)slimserver.old/Plugins/iTunes.pm (-4 / +1 lines)
Lines 1145-1154 Link Here
1145
		'Groups' => {
1145
		'Groups' => {
1146
1146
1147
			'Default' => {
1147
			'Default' => {
1148
				'PrefOrder' => ['itunesscaninterval',
1148
				'PrefOrder' => ['itunesscaninterval','ignoredisableditunestracks']
1149
								'ignoredisableditunestracks',
1150
								'itunes_library_xml_path',
1151
								'itunes_library_music_path']
1152
			},
1149
			},
1153
1150
1154
			'iTunesPlaylistFormat' => {
1151
			'iTunesPlaylistFormat' => {
(-)slimserver.old/Slim/Player/Source.pm (-1 / +3 lines)
Lines 1532-1538 Link Here
1532
				return undef;
1532
				return undef;
1533
			}
1533
			}
1534
1534
1535
			if (!$size && !$duration) {
1535
			# This is an upstream problem with how they implemented the logic:
1536
			# if (!$size || !$duration) {
1537
			if (((defined($size)) && (!$size)) || ((defined($duration)) && (!$duration))) {
1536
1538
1537
				$::d_source && msg("openSong: not bothering opening file with zero size or duration\n");
1539
				$::d_source && msg("openSong: not bothering opening file with zero size or duration\n");
1538
				errorOpening($client);
1540
				errorOpening($client);
(-)slimserver.old/Slim/Web/Setup.pm (-2 / +2 lines)
Lines 1248-1254 Link Here
1248
			},
1248
			},
1249
1249
1250
			'Default' => {
1250
			'Default' => {
1251
				'PrefOrder' => ['audiodir', 'playlistdir', undef],
1251
				'PrefOrder' => [undef],
1252
			},
1252
			},
1253
1253
1254
			'Rescan' => {
1254
			'Rescan' => {
Lines 1440-1446 Link Here
1440
		,'Groups' => {
1440
		,'Groups' => {
1441
			'Default' => {
1441
			'Default' => {
1442
					'PrefOrder' => ['skin','itemsPerPage','refreshRate','coverArt','coverThumb',
1442
					'PrefOrder' => ['skin','itemsPerPage','refreshRate','coverArt','coverThumb',
1443
					'artfolder','thumbSize','includeNoArt']
1443
					'thumbSize','includeNoArt']
1444
				}
1444
				}
1445
			}
1445
			}
1446
		,'Prefs' => {
1446
		,'Prefs' => {

Return to bug 73832