зеркало из https://github.com/mono/ipod-sharp.git
2007-10-11 Aaron Bockover <abock@gnome.org>
* src/Firmware/Makefile.am: * ui/Makefile.am: * src/Makefile.am: Install the .mdb files * src/TrackDatabase.cs: Return DetailType=32 as generic data since we don't know how to handle it right now svn path=/trunk/ipod-sharp/; revision=87401
This commit is contained in:
Родитель
cc6fc3534c
Коммит
af7854571e
|
@ -1,3 +1,12 @@
|
|||
2007-10-11 Aaron Bockover <abock@gnome.org>
|
||||
|
||||
* src/Firmware/Makefile.am:
|
||||
* ui/Makefile.am:
|
||||
* src/Makefile.am: Install the .mdb files
|
||||
|
||||
* src/TrackDatabase.cs: Return DetailType=32 as generic data since we
|
||||
don't know how to handle it right now
|
||||
|
||||
2007-10-10 Aaron Bockover <abock@gnome.org>
|
||||
|
||||
* src/Hal/HalDeviceManager.cs:
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
</Configuration>
|
||||
</Configurations>
|
||||
<Contents>
|
||||
<File name="./" subtype="Directory" buildaction="Compile" />
|
||||
<File name="./src/Album.cs" subtype="Code" buildaction="Compile" />
|
||||
<File name="./src/AssemblyInfo.cs" subtype="Code" buildaction="Compile" />
|
||||
<File name="./src/DatabaseReadException.cs" subtype="Code" buildaction="Compile" />
|
||||
|
|
|
@ -2,7 +2,7 @@ MCS_FLAGS = -debug
|
|||
ASSEMBLY = ipod-sharp-firmware.dll
|
||||
|
||||
ipoddir = $(prefix)/lib/ipod-sharp
|
||||
ipod_DATA = $(ASSEMBLY)
|
||||
ipod_SCRIPTS = $(ASSEMBLY) $(ASSEMBLY).mdb
|
||||
|
||||
ASSEMBLY_SOURCES = \
|
||||
$(srcdir)/DmgImage.cs \
|
||||
|
|
|
@ -5,7 +5,7 @@ MCS_FLAGS = -debug
|
|||
ASSEMBLY = ipod-sharp.dll
|
||||
|
||||
ipoddir = $(prefix)/lib/ipod-sharp
|
||||
ipod_DATA = $(ASSEMBLY)
|
||||
ipod_SCRIPTS = $(ASSEMBLY) $(ASSEMBLY).mdb
|
||||
|
||||
ASSEMBLY_SOURCES = \
|
||||
$(srcdir)/Album.cs \
|
||||
|
|
|
@ -808,10 +808,10 @@ namespace IPod
|
|||
|
||||
Type = (DetailType)ToInt32(body, 0);
|
||||
|
||||
if ((int)Type > 50 && Type != DetailType.Misc && Type != DetailType.LibraryIndex &&
|
||||
if (((int)Type > 50 && Type != DetailType.Misc && Type != DetailType.LibraryIndex &&
|
||||
Type != DetailType.LibraryIndex2 && Type != DetailType.AlbumListArtist &&
|
||||
Type != DetailType.AlbumListAlbum &&
|
||||
Type != DetailType.AlbumListPodcastUrl && Type != DetailType.AlbumListTitle) {
|
||||
Type != DetailType.AlbumListAlbum && Type != DetailType.AlbumListPodcastUrl &&
|
||||
Type != DetailType.AlbumListTitle) || (int)Type == 32) {
|
||||
genericData = body;
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ MCS_FLAGS = -debug
|
|||
ASSEMBLY = ipod-sharp-ui.dll
|
||||
|
||||
ipodsharpdir = $(prefix)/lib/ipod-sharp
|
||||
ipodsharp_DATA = $(ASSEMBLY)
|
||||
ipodsharp_SCRIPTS = $(ASSEMBLY) $(ASSEMBLY).mdb
|
||||
|
||||
ASSEMBLY_SOURCES = \
|
||||
$(srcdir)/AssemblyInfo.cs \
|
||||
|
@ -17,7 +17,7 @@ ASSEMBLY_RESOURCES = -resource:$(srcdir)/ipod.gif
|
|||
all: $(ASSEMBLY)
|
||||
|
||||
$(ASSEMBLY): $(ASSEMBLY_SOURCES) $(top_builddir)/src/ipod-sharp.dll
|
||||
$(MCS) -unsafe -keyfile:$(top_srcdir)/ipod-sharp.snk -target:library -out:$@ $(ASSEMBLY_SOURCES) -r:$(top_builddir)/src/ipod-sharp.dll -pkg:gtk-sharp-2.0 $(ASSEMBLY_RESOURCES)
|
||||
$(MCS) -unsafe -debug -keyfile:$(top_srcdir)/ipod-sharp.snk -target:library -out:$@ $(ASSEMBLY_SOURCES) -r:$(top_builddir)/src/ipod-sharp.dll -pkg:gtk-sharp-2.0 $(ASSEMBLY_RESOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
ipod.gif \
|
||||
|
|
Загрузка…
Ссылка в новой задаче