Skip to content

Commit

Permalink
new ui
Browse files Browse the repository at this point in the history
  • Loading branch information
jwallet committed Aug 31, 2017
1 parent 7c4966e commit ddffbed
Show file tree
Hide file tree
Showing 64 changed files with 26,561 additions and 739 deletions.
Binary file modified .vs/EspionSpotify/v14/.suo
Binary file not shown.
1 change: 1 addition & 0 deletions EspionSpotify.sln.DotSettings.user
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
<Assembly Path="C:\Users\w1z1k\Documents\Visual Studio 2013\Projects\EspionSpotify\packages\NAudio.Lame.1.0.5\lib\net20\NAudio.Lame.dll" />
<Assembly Path="C:\Users\w1z1k\Documents\Visual Studio 2013\Projects\EspionSpotify\packages\NAudio.1.8.2\lib\net35\NAudio.dll" />
<Assembly Path="C:\Windows\Microsoft.NET\Framework\v4.0.30319\System.dll" />
<Assembly Path="C:\Users\w1z1k\Documents\GitHub\Espion-Spotify\packages\MetroModernUI.1.4.0.0\lib\net\MetroFramework.dll" />
&lt;/AssemblyExplorer&gt;</s:String></wpf:ResourceDictionary>
19 changes: 17 additions & 2 deletions EspionSpotify/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,29 @@
<userSettings>
<EspionSpotify.Properties.Settings>
<setting name="Directory" serializeAs="String">
<value/>
<value />
</setting>
<setting name="Bitrate" serializeAs="String">
<value>0</value>
<value>1</value>
</setting>
<setting name="Format" serializeAs="String">
<value>0</value>
</setting>
<setting name="MinLength" serializeAs="String">
<value>30</value>
</setting>
<setting name="AddFolders" serializeAs="String">
<value>False</value>
</setting>
<setting name="AddSeparators" serializeAs="String">
<value>False</value>
</setting>
<setting name="AddNumsInfrontFile" serializeAs="String">
<value>False</value>
</setting>
<setting name="AddNumsAsTrack" serializeAs="String">
<value>False</value>
</setting>
</EspionSpotify.Properties.Settings>
</userSettings>
</configuration>
41 changes: 32 additions & 9 deletions EspionSpotify/EspionSpotify.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,18 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Accessibility" />
<Reference Include="MetroFramework, Version=1.4.0.0, Culture=neutral, PublicKeyToken=5f91a84759bf584a, processorArchitecture=MSIL">
<HintPath>..\packages\MetroModernUI.1.4.0.0\lib\net\MetroFramework.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="MetroFramework.Design, Version=1.4.0.0, Culture=neutral, PublicKeyToken=5f91a84759bf584a, processorArchitecture=MSIL">
<HintPath>..\packages\MetroModernUI.1.4.0.0\lib\net\MetroFramework.Design.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="MetroFramework.Fonts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=5f91a84759bf584a, processorArchitecture=MSIL">
<HintPath>..\packages\MetroModernUI.1.4.0.0\lib\net\MetroFramework.Fonts.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="NAudio, Version=1.8.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\NAudio.1.8.2\lib\net35\NAudio.dll</HintPath>
<Private>True</Private>
Expand All @@ -100,6 +112,11 @@
</ItemGroup>
<ItemGroup>
<Compile Include="normalize.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Song.cs" />
<Compile Include="Recorder.cs" />
<Compile Include="frmEspionSpotify.cs">
Expand All @@ -114,14 +131,9 @@
<Compile Include="Watcher.cs" />
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<EmbeddedResource Include="frmEspionSpotify.resx">
<DependentUpon>frmEspionSpotify.cs</DependentUpon>
</EmbeddedResource>
Expand All @@ -139,9 +151,6 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<WCFMetadata Include="Service References\" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
Expand All @@ -161,6 +170,20 @@
<Content Include="libmp3lame.64.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Include="Resources\volup.gif" />
<None Include="Resources\volmute.gif" />
<None Include="Resources\voldown.gif" />
<None Include="Resources\pause.gif" />
<None Include="Resources\clear.gif" />
<None Include="Resources\volume.gif" />
<None Include="Resources\plus.gif" />
<None Include="Resources\play.gif" />
<None Include="Resources\on.gif" />
<None Include="Resources\off.gif" />
<None Include="Resources\minus.gif" />
<None Include="Resources\folder.gif" />
<None Include="Resources\spytify-logo.png" />
<None Include="Resources\espion-spotify-logo.png" />
<EmbeddedResource Include="Resources\spytify.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
2 changes: 1 addition & 1 deletion EspionSpotify/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace EspionSpotify
{
static class Program
internal static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
Expand Down
130 changes: 130 additions & 0 deletions EspionSpotify/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions EspionSpotify/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,46 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="clear" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\clear.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="espion_spotify_logo" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\espion-spotify-logo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="folder" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\folder.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="minus" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\minus.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="off" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\off.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="on" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\on.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="pause" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\pause.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="play" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\play.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="plus" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\plus.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="spytify" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\spytify.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="spytify_logo" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\spytify-logo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="voldown" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\voldown.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="volmute" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\volmute.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="volup" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\volup.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>
62 changes: 61 additions & 1 deletion EspionSpotify/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ddffbed

Please sign in to comment.