Change over aphrodite references

pull/2/head
Qstick 4 years ago
parent dbaccc5f91
commit 41cf722ab5

@ -20,11 +20,10 @@ trigger:
branches: branches:
include: include:
- develop - develop
- aphrodite - master
pr: pr:
- develop - develop
- aphrodite
stages: stages:
- stage: Setup - stage: Setup
@ -40,7 +39,7 @@ stages:
displayName: Set Build Name displayName: Set Build Name
- bash: | - bash: |
if [[ $BUILD_REASON == "PullRequest" ]]; then if [[ $BUILD_REASON == "PullRequest" ]]; then
git diff origin/aphrodite...HEAD --name-only | grep -E "^(src/|azure-pipelines.yml)" git diff origin/develop...HEAD --name-only | grep -E "^(src/|azure-pipelines.yml)"
echo $? > not_backend_update echo $? > not_backend_update
else else
echo 0 > not_backend_update echo 0 > not_backend_update
@ -302,14 +301,22 @@ stages:
sentry-cli releases new --finalize -p radarr -p radarr-ui -p radarr-update "${RELEASENAME}" sentry-cli releases new --finalize -p radarr -p radarr-ui -p radarr-update "${RELEASENAME}"
sentry-cli releases -p radarr-ui files "${RELEASENAME}" upload-sourcemaps _output/UI/ --rewrite sentry-cli releases -p radarr-ui files "${RELEASENAME}" upload-sourcemaps _output/UI/ --rewrite
sentry-cli releases set-commits --auto "${RELEASENAME}" sentry-cli releases set-commits --auto "${RELEASENAME}"
sentry-cli releases deploys "${RELEASENAME}" new -e aphrodite if [[ ${BUILD_SOURCEBRANCH} == "refs/heads/develop" ]]; then
sentry-cli releases deploys "${RELEASENAME}" new -e nightly
else
sentry-cli releases deploys "${RELEASENAME}" new -e production
fi
if [ $? -gt 0 ]; then if [ $? -gt 0 ]; then
echo "##vso[task.logissue type=warning]Error uploading source maps." echo "##vso[task.logissue type=warning]Error uploading source maps."
fi fi
exit 0 exit 0
displayName: Publish Sentry Source Maps displayName: Publish Sentry Source Maps
continueOnError: true condition: |
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/aphrodite')) or
(
and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/develop')),
and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
)
env: env:
SENTRY_AUTH_TOKEN: $(sentryAuthTokenServarr) SENTRY_AUTH_TOKEN: $(sentryAuthTokenServarr)
SENTRY_ORG: $(sentryOrg) SENTRY_ORG: $(sentryOrg)

@ -2,8 +2,24 @@ import React from 'react';
import styles from './LoadingMessage.css'; import styles from './LoadingMessage.css';
const messages = [ const messages = [
'Welcome to Radarr Aphrodite Preview. Enjoy' 'Downloading more RAM',
// TODO Add some messages here 'Now in Technicolor',
'Previously on Radarr...',
'Bleep Bloop.',
'Locating the required gigapixels to render...',
'Spinning up the hamster wheel...',
'At least you\'re not on hold',
'Hum something loud while others stare',
'Loading humorous message... Please Wait',
'I could\'ve been faster in Python',
'Don\'t forget to rewind your tracks',
'Congratulations! you are the 1000th visitor.',
'HELP! I\'m being held hostage and forced to write these stupid lines!',
'RE-calibrating the internet...',
'I\'ll be here all week',
'Don\'t forget to tip your waitress',
'Apply directly to the forehead',
'Loading Battlestation'
]; ];
let message = null; let message = null;

@ -34,7 +34,6 @@ namespace NzbDrone.Core.Test.HealthCheck.Checks
} }
[TestCase("develop")] [TestCase("develop")]
[TestCase("nightly")]
public void should_return_error_when_branch_is_v1(string branch) public void should_return_error_when_branch_is_v1(string branch)
{ {
GivenValidBranch(branch); GivenValidBranch(branch);
@ -42,8 +41,8 @@ namespace NzbDrone.Core.Test.HealthCheck.Checks
Subject.Check().ShouldBeError(); Subject.Check().ShouldBeError();
} }
[TestCase("aphrodite")] [TestCase("nightly")]
[TestCase("Aphrodite")] [TestCase("Nightly")]
public void should_return_no_warning_when_branch_valid(string branch) public void should_return_no_warning_when_branch_valid(string branch)
{ {
GivenValidBranch(branch); GivenValidBranch(branch);

@ -178,7 +178,7 @@ namespace NzbDrone.Core.Configuration
public bool AnalyticsEnabled => GetValueBoolean("AnalyticsEnabled", true, persist: false); public bool AnalyticsEnabled => GetValueBoolean("AnalyticsEnabled", true, persist: false);
// TODO: Change back to "master" for the first stable release. // TODO: Change back to "master" for the first stable release.
public string Branch => GetValue("Branch", "aphrodite").ToLowerInvariant(); public string Branch => GetValue("Branch", "nightly").ToLowerInvariant();
public string LogLevel => GetValue("LogLevel", "info").ToLowerInvariant(); public string LogLevel => GetValue("LogLevel", "info").ToLowerInvariant();
public string ConsoleLogLevel => GetValue("ConsoleLogLevel", string.Empty, persist: false); public string ConsoleLogLevel => GetValue("ConsoleLogLevel", string.Empty, persist: false);

@ -33,7 +33,7 @@ namespace NzbDrone.Core.Configuration
var releaseInfoPath = Path.Combine(bin, "release_info"); var releaseInfoPath = Path.Combine(bin, "release_info");
PackageUpdateMechanism = UpdateMechanism.BuiltIn; PackageUpdateMechanism = UpdateMechanism.BuiltIn;
DefaultBranch = "aphrodite"; DefaultBranch = "nightly";
if (Path.GetFileName(bin) == "bin" && diskProvider.FileExists(packageInfoPath)) if (Path.GetFileName(bin) == "bin" && diskProvider.FileExists(packageInfoPath))
{ {

@ -23,7 +23,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
if (!Enum.GetNames(typeof(ReleaseBranches)).Any(x => x.ToLower() == currentBranch)) if (!Enum.GetNames(typeof(ReleaseBranches)).Any(x => x.ToLower() == currentBranch))
{ {
if (currentBranch == "develop" || currentBranch == "nightly") if (currentBranch == "develop")
{ {
return new HealthCheck(GetType(), HealthCheckResult.Error, string.Format(_localizationService.GetLocalizedString("ReleaseBranchCheckPreviousVersionMessage"), _configFileService.Branch), "#branch-is-for-a-previous-version"); return new HealthCheck(GetType(), HealthCheckResult.Error, string.Format(_localizationService.GetLocalizedString("ReleaseBranchCheckPreviousVersionMessage"), _configFileService.Branch), "#branch-is-for-a-previous-version");
} }
@ -36,7 +36,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
public enum ReleaseBranches public enum ReleaseBranches
{ {
Aphrodite Nightly
} }
} }
} }

@ -564,7 +564,7 @@
"RejectionCount": "Rejection Count", "RejectionCount": "Rejection Count",
"RelativePath": "Relative Path", "RelativePath": "Relative Path",
"ReleaseBranchCheckOfficialBranchMessage": "Branch {0} is not a valid Radarr release branch, you will not receive updates", "ReleaseBranchCheckOfficialBranchMessage": "Branch {0} is not a valid Radarr release branch, you will not receive updates",
"ReleaseBranchCheckPreviousVersionMessage": "Branch {0} is for a previous version of Radarr, set branch to 'Aphrodite' for further updates", "ReleaseBranchCheckPreviousVersionMessage": "Branch {0} is for a previous version of Radarr, set branch to 'Nightly' for further updates",
"ReleaseDates": "Release Dates", "ReleaseDates": "Release Dates",
"ReleaseGroup": "Release Group", "ReleaseGroup": "Release Group",
"ReleaseRejected": "Release Rejected", "ReleaseRejected": "Release Rejected",

@ -30,7 +30,7 @@ namespace NzbDrone.Core.Notifications.Discord
Author = new DiscordAuthor Author = new DiscordAuthor
{ {
Name = Settings.Author.IsNullOrWhiteSpace() ? Environment.MachineName : Settings.Author, Name = Settings.Author.IsNullOrWhiteSpace() ? Environment.MachineName : Settings.Author,
IconUrl = "https://raw.githubusercontent.com/Radarr/Radarr/aphrodite/Logo/256.png" IconUrl = "https://raw.githubusercontent.com/Radarr/Radarr/develop/Logo/256.png"
}, },
Url = $"https://www.themoviedb.org/movie/{message.Movie.TmdbId}", Url = $"https://www.themoviedb.org/movie/{message.Movie.TmdbId}",
Description = "Movie Grabbed", Description = "Movie Grabbed",
@ -117,7 +117,7 @@ namespace NzbDrone.Core.Notifications.Discord
Author = new DiscordAuthor Author = new DiscordAuthor
{ {
Name = Settings.Author.IsNullOrWhiteSpace() ? Environment.MachineName : Settings.Author, Name = Settings.Author.IsNullOrWhiteSpace() ? Environment.MachineName : Settings.Author,
IconUrl = "https://raw.githubusercontent.com/Radarr/Radarr/aphrodite/Logo/256.png" IconUrl = "https://raw.githubusercontent.com/Radarr/Radarr/develop/Logo/256.png"
}, },
Url = $"https://www.themoviedb.org/movie/{message.Movie.TmdbId}", Url = $"https://www.themoviedb.org/movie/{message.Movie.TmdbId}",
Description = isUpgrade ? "Movie Upgraded" : "Movie Imported", Description = isUpgrade ? "Movie Upgraded" : "Movie Imported",
@ -221,7 +221,7 @@ namespace NzbDrone.Core.Notifications.Discord
Author = new DiscordAuthor Author = new DiscordAuthor
{ {
Name = Settings.Author.IsNullOrWhiteSpace() ? Environment.MachineName : Settings.Author, Name = Settings.Author.IsNullOrWhiteSpace() ? Environment.MachineName : Settings.Author,
IconUrl = "https://raw.githubusercontent.com/Radarr/Radarr/aphrodite/Logo/256.png" IconUrl = "https://raw.githubusercontent.com/Radarr/Radarr/develop/Logo/256.png"
}, },
Title = healthCheck.Source.Name, Title = healthCheck.Source.Name,
Description = healthCheck.Message, Description = healthCheck.Message,

@ -674,7 +674,7 @@
"isWindows": true, "isWindows": true,
"isDocker": false, "isDocker": false,
"mode": "console", "mode": "console",
"branch": "aphrodite", "branch": "nightly",
"authentication": "none", "authentication": "none",
"sqliteVersion": "3.32.1", "sqliteVersion": "3.32.1",
"migrationVersion": 180, "migrationVersion": 180,
@ -868,9 +868,9 @@
"Example": { "Example": {
"value": { "value": {
"version": "3.0.0.3553", "version": "3.0.0.3553",
"branch": "aphrodite", "branch": "nightly",
"releaseDate": "2020-09-02T05:36:13.047313Z", "releaseDate": "2020-09-02T05:36:13.047313Z",
"fileName": "Radarr.aphrodite.3.0.0.3553.windows-core-x64.zip", "fileName": "Radarr.nightly.3.0.0.3553.windows-core-x64.zip",
"url": "https://dev.azure.com/Radarr/Radarr/_apis/build/builds/1896/artifacts?artifactName=Packages&fileId=A710686A9CB6848E73C3DDCA5F2B0D83C6189546E66DD3EF2D0D30B20735F6E802&fileName=Radarr.aphrodite.3.0.0.3553.windows-core-x64.zip&api-version=5.1", "url": "https://dev.azure.com/Radarr/Radarr/_apis/build/builds/1896/artifacts?artifactName=Packages&fileId=A710686A9CB6848E73C3DDCA5F2B0D83C6189546E66DD3EF2D0D30B20735F6E802&fileName=Radarr.aphrodite.3.0.0.3553.windows-core-x64.zip&api-version=5.1",
"installed": false, "installed": false,
"installable": false, "installable": false,

Loading…
Cancel
Save