removed backbone from VS solution,

renamed NzbDrone.Backbone to UI
This commit is contained in:
kay.one 2013-03-29 12:18:44 -07:00
parent c7776f74e1
commit 663160c06a
230 changed files with 57 additions and 386 deletions

View File

@ -6,7 +6,7 @@ module.exports = function(grunt) {
uglify: {
files: {
expand: true, // Enable dynamic expansion.
cwd: 'NzbDrone.Backbone/', // Src matches are relative to this path.
cwd: 'UI/', // Src matches are relative to this path.
src: ['**/*.js'], // Actual pattern(s) to match.
dest: 'build/', // Destination path prefix.
ext: '.min.js'
@ -14,7 +14,7 @@ module.exports = function(grunt) {
},
less:{
bootstrap:{
src: ["NzbDrone.Backbone/Content/bootstrap/bootstrap.less"],
src: ["UI/Content/bootstrap/bootstrap.less"],
dest: "_output/UI/Content/bootstrap.css"
}
},
@ -25,50 +25,40 @@ module.exports = function(grunt) {
wrapped: false,
processName: function(fileName){
return fileName
.replace('NzbDrone.Backbone/','')
.replace('UI/','')
.replace('.html','');
}
},
files: {
src: ['NzbDrone.Backbone/**/*emplate.html'],
src: ['UI/**/*emplate.html'],
dest: '_output/UI/templates.js'
},
},
copy:{
index:{
src: 'NzbDrone.Backbone/index.html',
src: 'UI/index.html',
dest: '_output/UI/index.html'
},
scripts:{
expand:true,
cwd: 'NzbDrone.Backbone/',
src: '**/*.js',
dest: '_output/UI/'
src: 'UI/**/*.js',
dest: '_output/'
},
styles:{
expand:true,
cwd: 'NzbDrone.Backbone/',
src: '**/*.css',
dest: '_output/UI/'
src: 'UI/**/*.css',
dest: '_output/'
},
images:{
expand:true,
cwd: 'NzbDrone.Backbone/',
src: '**/*.png',
dest: '_output/UI/'
src: 'UI/**/*.png',
dest: '_output/'
},
templates:{
expand:true,
cwd: 'NzbDrone.Backbone/',
src: '**/*emplate.html',
dest: '_output/UI/'
src: 'UI/**/*emplate.html',
dest: '_output/'
},
fonts:{
expand:true,
src: 'NzbDrone.Backbone/Content/Fonts/*.*',
dest: '_output/UI/Content/Fonts/',
flatten: true
src: 'UI/**/Fonts/*.*',
dest: '_output/',
}
},
@ -86,19 +76,19 @@ module.exports = function(grunt) {
tasks: ['copy:index']
},
copyScripts:{
files: 'NzbDrone.Backbone/**/*.js',
files: '<%= copy.scripts.src %>',
tasks: ['copy:scripts']
},
copyStyles:{
files: 'NzbDrone.Backbone/**/*.js',
files: '<%= copy.styles.src %>',
tasks: ['copy:styles']
},
copyImages:{
files: 'NzbDrone.Backbone/**/*.png',
files: '<%= copy.images.src %>',
tasks: ['copy:images']
},
copyTemplates:{
files: '<%= handlebars.files.src %>',
files: '<%= copy.templates.src %>',
tasks: ['copy:templates']
},
copyFonts:{

View File

@ -1,349 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>
</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{EE6B9BAC-2136-460A-87B0-709D2AC0A9AE}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NzbDrone.Backbone</RootNamespace>
<AssemblyName>NzbDrone.Backbone</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<UseIISExpress>true</UseIISExpress>
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>
</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<CodeAnalysisIgnoreGeneratedCode>true</CodeAnalysisIgnoreGeneratedCode>
</PropertyGroup>
<ItemGroup>
<Content Include="HeaderView.js" />
<Content Include="MainMenuView.js" />
<Content Include="AddSeries\addSeries.css" />
<Content Include="AddSeries\AddSeriesLayout.js" />
<Content Include="AddSeries\addSeriesLayoutTemplate.html" />
<Content Include="AddSeries\Existing\FolderMatchResultViewTemplatate.html" />
<Content Include="AddSeries\Existing\ImportSeriesView.js" />
<Content Include="AddSeries\Existing\RootFolderCompositeViewTemplate.html" />
<Content Include="AddSeries\Existing\UnmappedFolderCompositeViewTemplatate.html" />
<Content Include="AddSeries\Existing\UnmappedFolderModel.js" />
<Content Include="AddSeries\New\AddNewSeriesTemplate.html" />
<Content Include="AddSeries\New\AddNewSeriesView.js" />
<Content Include="AddSeries\New\SearchResultTemplate.html" />
<Content Include="AddSeries\New\SearchResultView.js" />
<Content Include="AddSeries\RootFolders\RootFolderCollection.js" />
<Content Include="AddSeries\RootFolders\RootFolderItemTemplate.html" />
<Content Include="AddSeries\RootFolders\RootFolderModel.js" />
<Content Include="AddSeries\RootFolders\RootFolderTemplate.html" />
<Content Include="AddSeries\RootFolders\RootFolderView.js" />
<Content Include="AddSeries\SearchResultCollection.js" />
<Content Include="AddSeries\SearchResultModel.js" />
<Content Include="app.js" />
<Content Include="Calendar\CalendarCollection.js" />
<Content Include="Calendar\CalendarCollectionTemplate.html" />
<Content Include="Calendar\CalendarCollectionView.js" />
<Content Include="Calendar\CalendarItemTemplate.html" />
<Content Include="Calendar\CalendarModel.js" />
<Content Include="Calendar\CalendarItemView.js" />
<Content Include="Content\base.css" />
<Content Include="Content\menu.css" />
<Content Include="Content\fullcalendar.css" />
<Content Include="Content\Images\white-batch-32.png" />
<Content Include="Content\Images\white-batch-64.png" />
<Content Include="Content\toastr.css" />
<Content Include="Content\fonts\fontawesome-webfont.svg" />
<Content Include="Content\Images\ajax-loader.gif" />
<Content Include="Content\Images\apple-touch-icon-114.png" />
<Content Include="Content\Images\apple-touch-icon-144.png" />
<Content Include="Content\Images\azure.gif" />
<Content Include="Content\Images\background.jpg" />
<Content Include="Content\Images\gritter.png" />
<Content Include="Content\Images\icons.png" />
<Content Include="Content\Images\Indexers\FileSharingTalk.png" />
<Content Include="Content\Images\Indexers\Newznab.png" />
<Content Include="Content\Images\Indexers\Newznab_dognzb.cr.png" />
<Content Include="Content\Images\Indexers\Newznab_nzb.su.png" />
<Content Include="Content\Images\Indexers\Newznab_Nzbs.org.png" />
<Content Include="Content\Images\Indexers\NzbClub.png" />
<Content Include="Content\Images\Indexers\NzbIndex.png" />
<Content Include="Content\Images\Indexers\NzbsRus.png" />
<Content Include="Content\Images\Indexers\Unknown.png" />
<Content Include="Content\Images\Indexers\WomblesIndex.png" />
<Content Include="Content\Images\logo.png" />
<Content Include="Content\Images\logo_small.png" />
<Content Include="Content\Images\spinner.gif" />
<Content Include="Content\Images\404.png" />
<Content Include="Content\Images\thetvdb.png" />
<Content Include="Content\Intelisense\bootstrap.css" />
<Content Include="Content\tablesorter.bootstrap.css" />
<Content Include="Controller.js" />
<Content Include="Content\theme.css" />
<Content Include="favicon.ico" />
<Content Include="JsLibraries\backbone.collectionbinder.js" />
<Content Include="JsLibraries\backbone.debug.js" />
<Content Include="JsLibraries\backbone.js" />
<Content Include="JsLibraries\backbone.marionette.js" />
<Content Include="JsLibraries\backbone.marionette.viewswapper.js" />
<Content Include="JsLibraries\backbone.modelbinder.js" />
<Content Include="JsLibraries\backbone.mutators.js" />
<Content Include="JsLibraries\backbone.shortcuts.js" />
<Content Include="JsLibraries\bootstrap.js" />
<Content Include="JsLibraries\fullcalendar.js" />
<Content Include="JsLibraries\handlebars.js" />
<Content Include="JsLibraries\jquery.js" />
<Content Include="JsLibraries\jquery.tablesorter.bootstrap.js" />
<Content Include="JsLibraries\jquery.tablesorter.js" />
<Content Include="JsLibraries\require.js" />
<Content Include="JsLibraries\sugar.js" />
<Content Include="JsLibraries\toastr-1.1.5.js" />
<Content Include="JsLibraries\underscore.js" />
<Content Include="Mixins\backbone.ajax.js" />
<Content Include="Mixins\backbone.marionette.templates.js" />
<Content Include="Mixins\tablesorter.extensions.js" />
<Content Include="Quality\QualityProfileCollection.js" />
<Content Include="Quality\QualityProfileModel.js" />
<Content Include="Quality\QualitySizeCollection.js" />
<Content Include="Quality\QualitySizeModel.js" />
<Content Include="Routing.js" />
<Content Include="Series\Delete\DeleteSeriesTemplate.html" />
<Content Include="Series\Delete\DeleteSeriesView.js" />
<Content Include="Series\Details\EpisodeItemTemplate.html" />
<Content Include="Series\Details\EpisodeItemView.js" />
<Content Include="Series\Details\SeasonCompositeTemplate.html" />
<Content Include="Series\Details\SeasonCompositeView.js" />
<Content Include="Series\Details\SeriesDetailsTemplate.html" />
<Content Include="Series\Details\SeriesDetailsView.js" />
<Content Include="Series\Edit\EditSeriesTemplate.html" />
<Content Include="Series\Edit\EditSeriesView.js" />
<Content Include="Series\EpisodeCollection.js" />
<Content Include="Series\EpisodeModel.js" />
<Content Include="Series\Index\EmptySeriesIndexTemplate.html" />
<Content Include="Series\Index\SeriesIndexCollectionView.js" />
<Content Include="Series\Index\SeriesIndexTemplate.html" />
<Content Include="Series\Index\SeriesItemTemplate.html" />
<Content Include="Series\Index\SeriesItemView.js" />
<Content Include="Series\SeasonCollection.js" />
<Content Include="Series\SeasonModel.js" />
<Content Include="Series\SeriesCollection.js" />
<Content Include="Series\SeriesModel.js" />
<Content Include="Settings\DownloadClient\DownloadClientTemplate.html" />
<Content Include="Settings\DownloadClient\DownloadClientView.js" />
<Content Include="Settings\Indexers\IndexersTemplate.html" />
<Content Include="Settings\Indexers\IndexersView.js" />
<Content Include="Settings\Misc\MiscTemplate.html" />
<Content Include="Settings\Misc\MiscView.js" />
<Content Include="Settings\Naming\NamingTemplate.html" />
<Content Include="Settings\Naming\NamingView.js" />
<Content Include="Settings\Notifications\NotificationsTemplate.html" />
<Content Include="Settings\Notifications\NotificationsView.js" />
<Content Include="Settings\Quality\Profile\EditQualityProfileTemplate.html" />
<Content Include="Settings\Quality\Profile\EditQualityProfileView.js" />
<Content Include="Settings\Quality\Profile\QualityProfileCollectionTemplate.html" />
<Content Include="Settings\Quality\Profile\QualityProfileCollectionView.js" />
<Content Include="Settings\Quality\Profile\QualityProfileTemplate.html" />
<Content Include="Settings\Quality\Profile\QualityProfileView.js" />
<Content Include="Settings\Quality\QualityLayout.js" />
<Content Include="Settings\Quality\QualityLayoutTemplate.html" />
<Content Include="Settings\Quality\QualityTemplate.html" />
<Content Include="Settings\Quality\QualityView.js" />
<Content Include="Settings\Quality\Size\QualitySizeCollectionTemplate.html" />
<Content Include="Settings\Quality\Size\QualitySizeCollectionView.js" />
<Content Include="Settings\Quality\Size\QualitySizeTemplate.html" />
<Content Include="Settings\Quality\Size\QualitySizeView.js" />
<Content Include="Settings\SettingsLayout.js" />
<Content Include="Settings\SettingsLayoutTemplate.html" />
<Content Include="Settings\SettingsModel.js" />
<Content Include="Settings\System\SystemTemplate.html" />
<Content Include="Settings\System\SystemView.js" />
<Content Include="Shared\NotFoundTemplate.html" />
<Content Include="Shared\NotFoundView.js" />
<Content Include="Shared\ModalRegion.js" />
<Content Include="Shared\NotificationCollection.js" />
<Content Include="Shared\NotificationModel.js" />
<Content Include="Shared\NotificationView.js" />
<Content Include="Shared\SpinnerTemplate.html" />
<Content Include="Shared\SpinnerView.js" />
<Content Include="Upcoming\UpcomingCollection.js" />
<Content Include="Upcoming\UpcomingCollectionTemplate.html" />
<Content Include="Upcoming\UpcomingCollectionView.js" />
<Content Include="Upcoming\UpcomingItemTemplate.html" />
<Content Include="Upcoming\UpcomingItemView.js" />
<Content Include="Upcoming\UpcomingModel.js" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\accordion.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\alerts.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\bootstrap.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\breadcrumbs.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\button-groups.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\buttons.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\carousel.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\close.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\code.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\component-animations.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\dropdowns.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\font-awesome-ie7.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\font-awesome.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\forms.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\grid.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\hero-unit.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\labels-badges.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\layouts.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\mixins.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\modals.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\navbar.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\navs.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\pager.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\pagination.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\popovers.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\progress-bars.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\reset.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\scaffolding.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\sprites.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\tables.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\thumbnails.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\tooltip.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\type.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\utilities.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\variables.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\bootstrap\wells.less" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\fonts\fontawesome-webfont.eot" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\fonts\fontawesome-webfont.ttf" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\fonts\fontawesome-webfont.woff" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<Content Include="Index.html" />
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\</OutputPath>
<PlatformTarget>x86</PlatformTarget>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>False</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>14256</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:55352/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>True</UseCustomServer>
<CustomServerUrl>http://localhost:8989</CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@ -40,8 +40,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{1E6B3C
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NzbDrone.Api", "NzbDrone.Api\NzbDrone.Api.csproj", "{FD286DF8-2D3A-4394-8AD5-443FADE55FB2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NzbDrone.Backbone", "NzbDrone.Backbone\NzbDrone.Backbone.csproj", "{EE6B9BAC-2136-460A-87B0-709D2AC0A9AE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NzbDrone.Console", "NzbDrone.Console\NzbDrone.Console.csproj", "{3DCA7B58-B8B3-49AC-9D9E-56F4A0460976}"
EndProject
Global
@ -154,11 +152,6 @@ Global
{FD286DF8-2D3A-4394-8AD5-443FADE55FB2}.Release|Any CPU.Build.0 = Release|Any CPU
{FD286DF8-2D3A-4394-8AD5-443FADE55FB2}.Release|x86.ActiveCfg = Release|x86
{FD286DF8-2D3A-4394-8AD5-443FADE55FB2}.Release|x86.Build.0 = Release|x86
{EE6B9BAC-2136-460A-87B0-709D2AC0A9AE}.Debug|Any CPU.ActiveCfg = Release|Any CPU
{EE6B9BAC-2136-460A-87B0-709D2AC0A9AE}.Debug|x86.ActiveCfg = Release|x86
{EE6B9BAC-2136-460A-87B0-709D2AC0A9AE}.Debug|x86.Build.0 = Release|x86
{EE6B9BAC-2136-460A-87B0-709D2AC0A9AE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EE6B9BAC-2136-460A-87B0-709D2AC0A9AE}.Release|x86.ActiveCfg = Release|x86
{3DCA7B58-B8B3-49AC-9D9E-56F4A0460976}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3DCA7B58-B8B3-49AC-9D9E-56F4A0460976}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3DCA7B58-B8B3-49AC-9D9E-56F4A0460976}.Debug|x86.ActiveCfg = Debug|x86

1
UI/.idea/.name Normal file
View File

@ -0,0 +1 @@
NzbDrone.UI

10
UI/.idea/NzbDrone.UI.iml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="jQuery-1.9.1" level="application" />
</component>
</module>

View File

@ -0,0 +1,7 @@
<component name="ProjectDictionaryState">
<dictionary name="Keivan">
<words>
<w>rootfolder</w>
</words>
</dictionary>
</component>

View File

@ -0,0 +1,7 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0" is_locked="false">
<option name="myName" value="Project Default" />
<option name="myLocal" value="false" />
<inspection_tool class="JSHint" enabled="true" level="ERROR" enabled_by_default="true" />
</profile>
</component>

View File

@ -0,0 +1,7 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="PROJECT_PROFILE" value="Project Default" />
<option name="USE_PROJECT_PROFILE" value="true" />
<version value="1.0" />
</settings>
</component>

View File

@ -2,7 +2,7 @@
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/NzbDrone.Backbone.iml" filepath="$PROJECT_DIR$/.idea/NzbDrone.Backbone.iml" />
<module fileurl="file://$PROJECT_DIR$/.idea/NzbDrone.UI.iml" filepath="$PROJECT_DIR$/.idea/NzbDrone.UI.iml" />
</modules>
</component>
</project>

View File

@ -0,0 +1,5 @@
<component name="DependencyValidationManager">
<state>
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
</state>
</component>

View File

Before

Width:  |  Height:  |  Size: 130 KiB

After

Width:  |  Height:  |  Size: 130 KiB

View File

Before

Width:  |  Height:  |  Size: 152 B

After

Width:  |  Height:  |  Size: 152 B

View File

Before

Width:  |  Height:  |  Size: 172 B

After

Width:  |  Height:  |  Size: 172 B

View File

Before

Width:  |  Height:  |  Size: 198 B

After

Width:  |  Height:  |  Size: 198 B

View File

Before

Width:  |  Height:  |  Size: 250 B

After

Width:  |  Height:  |  Size: 250 B

View File

Before

Width:  |  Height:  |  Size: 136 B

After

Width:  |  Height:  |  Size: 136 B

View File

Before

Width:  |  Height:  |  Size: 603 B

After

Width:  |  Height:  |  Size: 603 B

View File

Before

Width:  |  Height:  |  Size: 260 B

After

Width:  |  Height:  |  Size: 260 B

View File

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 264 B

View File

Before

Width:  |  Height:  |  Size: 816 B

After

Width:  |  Height:  |  Size: 816 B

View File

Before

Width:  |  Height:  |  Size: 385 B

After

Width:  |  Height:  |  Size: 385 B

View File

Before

Width:  |  Height:  |  Size: 665 B

After

Width:  |  Height:  |  Size: 665 B

View File

Before

Width:  |  Height:  |  Size: 491 B

After

Width:  |  Height:  |  Size: 491 B

View File

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 63 KiB

View File

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 752 B

After

Width:  |  Height:  |  Size: 752 B

Some files were not shown because too many files have changed in this diff Show More