Skip to content

Commit

Permalink
V5.0.0预览版
Browse files Browse the repository at this point in the history
  • Loading branch information
AnyListen committed Dec 31, 2018
1 parent 4e1ddfd commit 3142e55
Show file tree
Hide file tree
Showing 20 changed files with 22 additions and 8 deletions.
6 changes: 6 additions & 0 deletions FishMusic/FishMusic/FishMusic.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Resources\Images\fish.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="Bass.Net">
<HintPath>..\packages\Bass.NET\Bass.Net.dll</HintPath>
Expand Down Expand Up @@ -508,5 +511,8 @@
<Name>AnyListen</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Images\fish.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
1 change: 1 addition & 0 deletions FishMusic/FishMusic/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
MinWidth="920"
Height="622"
Width="920"
Icon="Resources/Images/fish.ico"
ShowTitleBar="False"
GlowBrush="LightGray"
ShowIconOnTitleBar="False">
Expand Down
12 changes: 6 additions & 6 deletions FishMusic/FishMusic/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("FishMusic")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyTitle("鱼声音乐")]
[assembly: AssemblyDescription("windows 平台易用的小众音乐软件")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("Shelher")]
[assembly: AssemblyProduct("FishMusic")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down Expand Up @@ -51,5 +51,5 @@
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("5.0.0.0")]
[assembly: AssemblyFileVersion("5.0.0.0")]
Binary file added FishMusic/FishMusic/Resources/Images/fish.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion FishMusic/FishMusic/ViewModel/DownloadViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ private void ChangeID3(DownloadInfo downloadInfo)
{
return;
}
if (filePath.FullName.Contains("ogg"))
if (filePath.FullName.Contains("ogg") || filePath.FullName.Contains("wav"))
{
var id3V1 = file.GetTag(TagTypes.Id3v1, true);
if (!string.IsNullOrEmpty(songResult.SongName))
Expand Down
2 changes: 1 addition & 1 deletion FishMusic/FishMusic/ViewModel/SearchViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ private void DownloadSong(object song)
{
return;
}
var filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Music", songResult.SongId + Helper.CommonHelper.GetFormat(downLink));
var filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Music", songResult.ArtistName + "-" + songResult.SongName + Helper.CommonHelper.GetFormat(downLink));
var download = new DownloadInfo
{
DownLink = AnyListen.AnyListen.GetRealUrl(downLink),
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added FishMusic/FishMusic/bin/Debug/download/atl71.dll
Binary file not shown.
3 changes: 3 additions & 0 deletions FishMusic/FishMusic/bin/Debug/download/dc.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[op]
ps=1
pp=1
Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions FishMusic/FishMusic/bin/Debug/download/id.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[partner]
id = 80000043
ver = 3.2.1.46

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added FishMusic/FishMusic/bin/Debug/download/zlib1.dll
Binary file not shown.
Binary file added FishMusic/FishMusic/bin/Debug/xldl.dll
Binary file not shown.

0 comments on commit 3142e55

Please sign in to comment.