mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-22 22:43:31 -07:00
Merge remote-tracking branch 'refs/remotes/galli-leo/develop' into develop
This commit is contained in:
commit
b9c98205e0
36 changed files with 89 additions and 43 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -130,6 +130,7 @@ output/*
|
||||||
#Packages
|
#Packages
|
||||||
Radarr_*/
|
Radarr_*/
|
||||||
Radarr_*.zip
|
Radarr_*.zip
|
||||||
|
Radarr_*.gz
|
||||||
|
|
||||||
#OS X metadata files
|
#OS X metadata files
|
||||||
._*
|
._*
|
||||||
|
|
BIN
7za.dll
Normal file
BIN
7za.dll
Normal file
Binary file not shown.
BIN
7za.exe
Normal file
BIN
7za.exe
Normal file
Binary file not shown.
BIN
7zxa.dll
Normal file
BIN
7zxa.dll
Normal file
Binary file not shown.
BIN
Logo/Thumbs.db
Normal file
BIN
Logo/Thumbs.db
Normal file
Binary file not shown.
26
package.sh
26
package.sh
|
@ -4,6 +4,18 @@ if [ $# -eq 0 ]; then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Use mono or .net depending on OS
|
||||||
|
case "$(uname -s)" in
|
||||||
|
CYGWIN*|MINGW32*|MINGW64*|MSYS*)
|
||||||
|
# on windows, use dotnet
|
||||||
|
runtime="dotnet"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
# otherwise use mono
|
||||||
|
runtime="mono"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
|
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
|
||||||
VERSION="`date +%H:%M:%S`"
|
VERSION="`date +%H:%M:%S`"
|
||||||
YEAR="`date +%Y`"
|
YEAR="`date +%Y`"
|
||||||
|
@ -26,10 +38,16 @@ cp -r $outputFolder/ Radarr_Windows_$VERSION
|
||||||
cp -r $outputFolderMono/ Radarr_Mono_$VERSION
|
cp -r $outputFolderMono/ Radarr_Mono_$VERSION
|
||||||
cp -r $outputFolderOsxApp/ Radarr_OSX_$VERSION
|
cp -r $outputFolderOsxApp/ Radarr_OSX_$VERSION
|
||||||
|
|
||||||
zip -r Radarr_Windows_$VERSION.zip Radarr_Windows_$VERSION >& /dev/null
|
if [ $runtime = "dotnet" ] ; then
|
||||||
zip -r Radarr_Mono_$VERSION.zip Radarr_Mono_$VERSION >& /dev/null
|
./7za.exe a Radarr_Windows_$VERSION.zip ./Radarr_Windows_$VERSION/*
|
||||||
zip -r Radarr_OSX_$VERSION.zip Radarr_OSX_$VERSION >& /dev/null
|
./7za.exe a -ttar -so Radarr_Mono_$VERSION.tar ./Radarr_Mono_$VERSION/* | ./7za.exe a -si Radarr_Mono_$VERSION.tar.gz
|
||||||
|
./7za.exe a -ttar -so Radarr_OSX_$VERSION.tar ./_output_osx/* | ./7za.exe a -si Radarr_OSX_$VERSION.tar.gz
|
||||||
|
./7za.exe a -ttar -so Radarr_OSX_App_$VERSION.tar ./_output_osx_app/* | ./7za.exe a -si Radarr_OSX_App_$VERSION.tar.gz
|
||||||
|
else
|
||||||
|
zip -r Radarr_Windows_$VERSION.zip Radarr_Windows_$VERSION/* >& /dev/null
|
||||||
|
zip -r Radarr_Mono_$VERSION.zip Radarr_Mono_$VERSION/* >& /dev/null #TODO update for tar.gz
|
||||||
|
zip -r Radarr_OSX_$VERSION_App.zip Radarr_OSX_$VERSION/* >& /dev/null
|
||||||
|
fi
|
||||||
ftp -n ftp.leonardogalli.ch << END_SCRIPT
|
ftp -n ftp.leonardogalli.ch << END_SCRIPT
|
||||||
passive
|
passive
|
||||||
quote USER $FTP_USER
|
quote USER $FTP_USER
|
||||||
|
|
|
@ -21,4 +21,3 @@ using System.Runtime.InteropServices;
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("260b2ff9-d3b7-4d8a-b720-a12c93d045e5")]
|
[assembly: Guid("260b2ff9-d3b7-4d8a-b720-a12c93d045e5")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -6,6 +6,5 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: Guid("4c0922d7-979e-4ff7-b44b-b8ac2100eeb5")]
|
[assembly: Guid("4c0922d7-979e-4ff7-b44b-b8ac2100eeb5")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
||||||
[assembly: InternalsVisibleTo("NzbDrone.Core")]
|
[assembly: InternalsVisibleTo("NzbDrone.Core")]
|
||||||
|
|
|
@ -21,4 +21,3 @@ using System.Runtime.InteropServices;
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("b47d34ef-05e8-4826-8a57-9dd05106c964")]
|
[assembly: Guid("b47d34ef-05e8-4826-8a57-9dd05106c964")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -20,5 +20,3 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("6b8945f5-f5b5-4729-865d-f958fbd673d9")]
|
[assembly: Guid("6b8945f5-f5b5-4729-865d-f958fbd673d9")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ namespace NzbDrone.Common.Extensions
|
||||||
private const string BACKUP_FOLDER = "Backups";
|
private const string BACKUP_FOLDER = "Backups";
|
||||||
|
|
||||||
private static readonly string UPDATE_SANDBOX_FOLDER_NAME = "nzbdrone_update" + Path.DirectorySeparatorChar;
|
private static readonly string UPDATE_SANDBOX_FOLDER_NAME = "nzbdrone_update" + Path.DirectorySeparatorChar;
|
||||||
private static readonly string UPDATE_PACKAGE_FOLDER_NAME = "NzbDrone" + Path.DirectorySeparatorChar;
|
private static readonly string UPDATE_PACKAGE_FOLDER_NAME = "";
|
||||||
private static readonly string UPDATE_BACKUP_FOLDER_NAME = "nzbdrone_backup" + Path.DirectorySeparatorChar;
|
private static readonly string UPDATE_BACKUP_FOLDER_NAME = "nzbdrone_backup" + Path.DirectorySeparatorChar;
|
||||||
private static readonly string UPDATE_BACKUP_APPDATA_FOLDER_NAME = "nzbdrone_appdata_backup" + Path.DirectorySeparatorChar;
|
private static readonly string UPDATE_BACKUP_APPDATA_FOLDER_NAME = "nzbdrone_appdata_backup" + Path.DirectorySeparatorChar;
|
||||||
private static readonly string UPDATE_CLIENT_FOLDER_NAME = "NzbDrone.Update" + Path.DirectorySeparatorChar;
|
private static readonly string UPDATE_CLIENT_FOLDER_NAME = "NzbDrone.Update" + Path.DirectorySeparatorChar;
|
||||||
|
|
|
@ -9,4 +9,3 @@ using System.Runtime.InteropServices;
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("b6eaa144-e13b-42e5-a738-c60d89c0f728")]
|
[assembly: Guid("b6eaa144-e13b-42e5-a738-c60d89c0f728")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("sonarr.tv")]
|
[assembly: AssemblyCompany("radarr.tv")]
|
||||||
[assembly: AssemblyProduct("NzbDrone")]
|
[assembly: AssemblyProduct("NzbDrone")]
|
||||||
|
[assembly: AssemblyVersion("0.1.0.*")]
|
||||||
[assembly: AssemblyCopyright("GNU General Public v3")]
|
[assembly: AssemblyCopyright("GNU General Public v3")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
|
@ -7,5 +7,3 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: AssemblyTitle("NzbDrone.Host")]
|
[assembly: AssemblyTitle("NzbDrone.Host")]
|
||||||
[assembly: Guid("67AADCD9-89AA-4D95-8281-3193740E70E5")]
|
[assembly: Guid("67AADCD9-89AA-4D95-8281-3193740E70E5")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
|
@ -25,6 +25,4 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: Guid("699aed1b-015e-4f0d-9c81-d5557b05d260")]
|
[assembly: Guid("699aed1b-015e-4f0d-9c81-d5557b05d260")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
||||||
[assembly: InternalsVisibleTo("NzbDrone.Core")]
|
[assembly: InternalsVisibleTo("NzbDrone.Core")]
|
|
@ -37,6 +37,37 @@ namespace NzbDrone.Core.Download.Clients.RTorrent
|
||||||
_rTorrentDirectoryValidator = rTorrentDirectoryValidator;
|
_rTorrentDirectoryValidator = rTorrentDirectoryValidator;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override string AddFromMagnetLink(RemoteMovie remoteMovie, string hash, string magnetLink)
|
||||||
|
{
|
||||||
|
_proxy.AddTorrentFromUrl(magnetLink, Settings);
|
||||||
|
|
||||||
|
// Download the magnet to the appropriate directory.
|
||||||
|
_proxy.SetTorrentLabel(hash, Settings.TvCategory, Settings);
|
||||||
|
//SetPriority(remoteEpisode, hash);
|
||||||
|
SetDownloadDirectory(hash);
|
||||||
|
|
||||||
|
// Once the magnet meta download finishes, rTorrent replaces it with the actual torrent download with default settings.
|
||||||
|
// Schedule an event to apply the appropriate settings when that happens.
|
||||||
|
// var priority = (RTorrentPriority)(remoteEpisode.IsRecentEpisode() ? Settings.RecentTvPriority : Settings.OlderTvPriority);
|
||||||
|
//_proxy.SetDeferredMagnetProperties(hash, Settings.TvCategory, Settings.TvDirectory, priority, Settings);
|
||||||
|
|
||||||
|
_proxy.StartTorrent(hash, Settings);
|
||||||
|
|
||||||
|
// Wait for the magnet to be resolved.
|
||||||
|
var tries = 10;
|
||||||
|
var retryDelay = 500;
|
||||||
|
if (WaitForTorrent(hash, tries, retryDelay))
|
||||||
|
{
|
||||||
|
return hash;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_logger.Warn("rTorrent could not resolve magnet within {0} seconds, download may remain stuck: {1}.", tries * retryDelay / 1000, magnetLink);
|
||||||
|
|
||||||
|
return hash;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected override string AddFromMagnetLink(RemoteEpisode remoteEpisode, string hash, string magnetLink)
|
protected override string AddFromMagnetLink(RemoteEpisode remoteEpisode, string hash, string magnetLink)
|
||||||
{
|
{
|
||||||
_proxy.AddTorrentFromUrl(magnetLink, Settings);
|
_proxy.AddTorrentFromUrl(magnetLink, Settings);
|
||||||
|
@ -68,6 +99,32 @@ namespace NzbDrone.Core.Download.Clients.RTorrent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override string AddFromTorrentFile(RemoteMovie remoteMovie, string hash, string filename, byte[] fileContent)
|
||||||
|
{
|
||||||
|
_proxy.AddTorrentFromFile(filename, fileContent, Settings);
|
||||||
|
|
||||||
|
var tries = 2;
|
||||||
|
var retryDelay = 100;
|
||||||
|
if (WaitForTorrent(hash, tries, retryDelay))
|
||||||
|
{
|
||||||
|
_proxy.SetTorrentLabel(hash, Settings.TvCategory, Settings);
|
||||||
|
|
||||||
|
//SetPriority(remoteEpisode, hash);
|
||||||
|
SetDownloadDirectory(hash);
|
||||||
|
|
||||||
|
_proxy.StartTorrent(hash, Settings);
|
||||||
|
|
||||||
|
return hash;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_logger.Debug("rTorrent could not add file");
|
||||||
|
|
||||||
|
RemoveItem(hash, true);
|
||||||
|
throw new ReleaseDownloadException(remoteMovie.Release, "Downloading torrent failed");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected override string AddFromTorrentFile(RemoteEpisode remoteEpisode, string hash, string filename, byte[] fileContent)
|
protected override string AddFromTorrentFile(RemoteEpisode remoteEpisode, string hash, string filename, byte[] fileContent)
|
||||||
{
|
{
|
||||||
_proxy.AddTorrentFromFile(filename, fileContent, Settings);
|
_proxy.AddTorrentFromFile(filename, fileContent, Settings);
|
||||||
|
@ -96,7 +153,7 @@ namespace NzbDrone.Core.Download.Clients.RTorrent
|
||||||
|
|
||||||
public override string Name => "rTorrent";
|
public override string Name => "rTorrent";
|
||||||
|
|
||||||
public override ProviderMessage Message => new ProviderMessage("Sonarr is unable to remove torrents that have finished seeding when using rTorrent", ProviderMessageType.Warning);
|
public override ProviderMessage Message => new ProviderMessage("Radarr is unable to remove torrents that have finished seeding when using rTorrent", ProviderMessageType.Warning);
|
||||||
|
|
||||||
public override IEnumerable<DownloadClientItem> GetItems()
|
public override IEnumerable<DownloadClientItem> GetItems()
|
||||||
{
|
{
|
||||||
|
|
|
@ -26,7 +26,7 @@ namespace NzbDrone.Core.Download.Clients.RTorrent
|
||||||
Host = "localhost";
|
Host = "localhost";
|
||||||
Port = 8080;
|
Port = 8080;
|
||||||
UrlBase = "RPC2";
|
UrlBase = "RPC2";
|
||||||
TvCategory = "tv-sonarr";
|
TvCategory = "movies-radarr";
|
||||||
OlderTvPriority = (int)RTorrentPriority.Normal;
|
OlderTvPriority = (int)RTorrentPriority.Normal;
|
||||||
RecentTvPriority = (int)RTorrentPriority.Normal;
|
RecentTvPriority = (int)RTorrentPriority.Normal;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,4 @@ using System.Runtime.InteropServices;
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("3C29FEF7-4B07-49ED-822E-1C29DC49BFAB")]
|
[assembly: Guid("3C29FEF7-4B07-49ED-822E-1C29DC49BFAB")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
||||||
[assembly: InternalsVisibleTo("NzbDrone.Core.Test")]
|
[assembly: InternalsVisibleTo("NzbDrone.Core.Test")]
|
||||||
|
|
|
@ -8,4 +8,3 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyTitle("Radarr.exe")]
|
[assembly: AssemblyTitle("Radarr.exe")]
|
||||||
[assembly: Guid("C2172AF4-F9A6-4D91-BAEE-C2E4EE680613")]
|
[assembly: Guid("C2172AF4-F9A6-4D91-BAEE-C2E4EE680613")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -20,5 +20,3 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("8a49cb1d-87ac-42f9-a582-607365a6bd79")]
|
[assembly: Guid("8a49cb1d-87ac-42f9-a582-607365a6bd79")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -21,4 +21,3 @@ using System.Runtime.InteropServices;
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("32ec29e2-40ba-4050-917d-e295d85d4969")]
|
[assembly: Guid("32ec29e2-40ba-4050-917d-e295d85d4969")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -20,5 +20,3 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("01493ea5-494f-43bf-be18-8ae4d0708fc6")]
|
[assembly: Guid("01493ea5-494f-43bf-be18-8ae4d0708fc6")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -6,5 +6,3 @@ using System.Runtime.InteropServices;
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
[assembly: AssemblyTitle("NzbDrone.SignalR")]
|
[assembly: AssemblyTitle("NzbDrone.SignalR")]
|
||||||
[assembly: Guid("98bd985a-4f23-4201-8ed3-f6f3d7f2a5fe")]
|
[assembly: Guid("98bd985a-4f23-4201-8ed3-f6f3d7f2a5fe")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -21,4 +21,3 @@ using System.Runtime.InteropServices;
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("f3e91f6e-d01d-4f20-8255-147cc10f04e3")]
|
[assembly: Guid("f3e91f6e-d01d-4f20-8255-147cc10f04e3")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -20,5 +20,3 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("7b773a86-574d-48c3-9e89-6f2e0dff714b")]
|
[assembly: Guid("7b773a86-574d-48c3-9e89-6f2e0dff714b")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -20,5 +20,3 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("b323e212-2d04-4c7f-9097-c356749ace4d")]
|
[assembly: Guid("b323e212-2d04-4c7f-9097-c356749ace4d")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -8,5 +8,3 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("e4560a3d-8053-4d57-a260-bfe52f4cc357")]
|
[assembly: Guid("e4560a3d-8053-4d57-a260-bfe52f4cc357")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ApplicationIcon>Radarr.ico</ApplicationIcon>
|
<ApplicationIcon>Resources\Radarr.ico</ApplicationIcon>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<StartupObject>NzbDrone.WindowsApp</StartupObject>
|
<StartupObject>NzbDrone.WindowsApp</StartupObject>
|
||||||
|
@ -158,6 +158,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="Radarr.ico" />
|
<Content Include="Radarr.ico" />
|
||||||
|
<None Include="Resources\Radarr.ico" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
|
@ -8,4 +8,3 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyTitle("Radarr.exe")]
|
[assembly: AssemblyTitle("Radarr.exe")]
|
||||||
[assembly: Guid("67AADCD9-89AA-4D95-8281-3193740E70E5")]
|
[assembly: Guid("67AADCD9-89AA-4D95-8281-3193740E70E5")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
|
@ -119,6 +119,6 @@
|
||||||
</resheader>
|
</resheader>
|
||||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
<data name="Radarr" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Radarr" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Radarr.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Radarr.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
BIN
src/NzbDrone/Resources/Radarr.ico
Normal file
BIN
src/NzbDrone/Resources/Radarr.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 85 KiB |
BIN
src/NzbDrone/Resources/Thumbs.db
Normal file
BIN
src/NzbDrone/Resources/Thumbs.db
Normal file
Binary file not shown.
BIN
src/Radarr.ico
BIN
src/Radarr.ico
Binary file not shown.
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 85 KiB |
|
@ -5,6 +5,4 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
[assembly: Guid("13976baa-e5ba-42b2-8ad7-8d568b68a53b")]
|
[assembly: Guid("13976baa-e5ba-42b2-8ad7-8d568b68a53b")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
|
@ -3,5 +3,3 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: AssemblyTitle("UninstallService")]
|
[assembly: AssemblyTitle("UninstallService")]
|
||||||
[assembly: Guid("0a964b21-9de9-40b3-9378-0474fd5f21a8")]
|
[assembly: Guid("0a964b21-9de9-40b3-9378-0474fd5f21a8")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("0.1.0.*")]
|
|
||||||
|
|
BIN
src/Thumbs.db
Normal file
BIN
src/Thumbs.db
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue