From cf0f52e0c7c2ab628183ffe905c7626e417d4d5f Mon Sep 17 00:00:00 2001 From: mattman86 Date: Wed, 12 Apr 2017 15:42:52 -0600 Subject: [PATCH 1/6] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 56159877b..cb6e90ecf 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Lidarr -Lidarr is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. +Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. ## Major Features Include: @@ -42,6 +42,7 @@ Lidarr is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS fee * Open `NzbDrone.sln` in Visual Studio * Make sure `NzbDrone.Console` is set as the startup project +* Change build to Debug x86 ### License From 2d7573a6bd5844dabb5812c8ea22e702e66439f5 Mon Sep 17 00:00:00 2001 From: mattman86 Date: Wed, 12 Apr 2017 15:43:22 -0600 Subject: [PATCH 2/6] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb6e90ecf..492c8d085 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Lidarr +'# Lidarr Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. @@ -42,7 +42,7 @@ Lidarr is a music collection manager for Usenet and BitTorrent users. It can mon * Open `NzbDrone.sln` in Visual Studio * Make sure `NzbDrone.Console` is set as the startup project -* Change build to Debug x86 +* Change build to 'Debug x86' ### License From 0bfdbb768b74501ae34bdc633608532622045d89 Mon Sep 17 00:00:00 2001 From: mattman86 Date: Wed, 12 Apr 2017 15:43:49 -0600 Subject: [PATCH 3/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 492c8d085..ac8e58d06 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -'# Lidarr +## Lidarr Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. From 6e80a8f83c48767d3713ff2c8f97cb117c3766cd Mon Sep 17 00:00:00 2001 From: mattman86 Date: Wed, 12 Apr 2017 16:07:49 -0600 Subject: [PATCH 4/6] Create appveyor.yml --- appveyor.yml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..94dc18972 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,51 @@ +assembly_info: + patch: true + file: 'src\NzbDrone.Common\Properties\SharedAssemblyInfo.cs' + assembly_version: '{version}' + assembly_file_version: '{version}' + assembly_informational_version: '{version}-rc1' + +environment: + DOTNET_CLI_TELEMETRY_OPTOUT: 1 + +install: + - git submodule update --init --recursive + +build_script: + - ps: ./build-appveyor.ps1 + +# test: off +test: + assemblies: + - '_tests\*Test.dll' + categories: + except: + - IntegrationTest + - AutomationTest + +artifacts: + - path: '_artifacts\*.zip' + - path: '_artifacts\*.exe' + - path: '_artifacts\*.tar.gz' + +cache: + - '%USERPROFILE%\.nuget\packages' + - node_modules + +pull_requests: + do_not_increment_build_number: true + +on_failure: + - ps: Get-ChildItem .\_artifacts\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } + - ps: Get-ChildItem .\_artifacts\*.exe | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } + - ps: Get-ChildItem .\_artifacts\*.tar.gz | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } + +only_commits: + files: + - src/ + - osx/ + - gulp/ + - logo/ + - setup/ + - appveyor.yml + - build-appveyor.cake From 4e5136f307c5f1f0f5a2b44dee8fbc4e9512a37c Mon Sep 17 00:00:00 2001 From: mattman86 Date: Wed, 12 Apr 2017 16:10:34 -0600 Subject: [PATCH 5/6] Update appveyor.yml --- appveyor.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 94dc18972..0088341fc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,9 +11,6 @@ environment: install: - git submodule update --init --recursive -build_script: - - ps: ./build-appveyor.ps1 - # test: off test: assemblies: From fbe3fad52f8c44655b4ead618215f6342918adeb Mon Sep 17 00:00:00 2001 From: mattman86 Date: Wed, 12 Apr 2017 16:11:56 -0600 Subject: [PATCH 6/6] Delete appveyor.yml --- appveyor.yml | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 0088341fc..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,48 +0,0 @@ -assembly_info: - patch: true - file: 'src\NzbDrone.Common\Properties\SharedAssemblyInfo.cs' - assembly_version: '{version}' - assembly_file_version: '{version}' - assembly_informational_version: '{version}-rc1' - -environment: - DOTNET_CLI_TELEMETRY_OPTOUT: 1 - -install: - - git submodule update --init --recursive - -# test: off -test: - assemblies: - - '_tests\*Test.dll' - categories: - except: - - IntegrationTest - - AutomationTest - -artifacts: - - path: '_artifacts\*.zip' - - path: '_artifacts\*.exe' - - path: '_artifacts\*.tar.gz' - -cache: - - '%USERPROFILE%\.nuget\packages' - - node_modules - -pull_requests: - do_not_increment_build_number: true - -on_failure: - - ps: Get-ChildItem .\_artifacts\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } - - ps: Get-ChildItem .\_artifacts\*.exe | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } - - ps: Get-ChildItem .\_artifacts\*.tar.gz | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } - -only_commits: - files: - - src/ - - osx/ - - gulp/ - - logo/ - - setup/ - - appveyor.yml - - build-appveyor.cake