From 56658f02db45bcae49d50d96231dd268f005aab0 Mon Sep 17 00:00:00 2001 From: Jamie Date: Mon, 7 May 2018 22:04:12 +0100 Subject: [PATCH 1/5] Alwats enable mobile link --- .../Settings/Models/CustomizationSettings.cs | 1 - src/Ombi/ClientApp/app/app.component.html | 2 +- src/Ombi/ClientApp/app/interfaces/ISettings.ts | 1 - .../customization/customization.component.html | 11 ++--------- 4 files changed, 3 insertions(+), 12 deletions(-) diff --git a/src/Ombi.Settings/Settings/Models/CustomizationSettings.cs b/src/Ombi.Settings/Settings/Models/CustomizationSettings.cs index 515c2fc85..120c14bd8 100644 --- a/src/Ombi.Settings/Settings/Models/CustomizationSettings.cs +++ b/src/Ombi.Settings/Settings/Models/CustomizationSettings.cs @@ -9,7 +9,6 @@ namespace Ombi.Settings.Settings.Models { public string ApplicationName { get; set; } public string ApplicationUrl { get; set; } - public bool Mobile { get; set; } public string CustomCssLink { get; set; } public bool EnableCustomDonations { get; set; } public string CustomDonationUrl { get; set; } diff --git a/src/Ombi/ClientApp/app/app.component.html b/src/Ombi/ClientApp/app/app.component.html index 2f2c5a5a1..fcb437fdb 100644 --- a/src/Ombi/ClientApp/app/app.component.html +++ b/src/Ombi/ClientApp/app/app.component.html @@ -93,7 +93,7 @@ {{ 'NavigationBar.UpdateDetails' | translate }} -
  • +
  • {{ 'NavigationBar.OpenMobileApp' | translate }}
  • diff --git a/src/Ombi/ClientApp/app/interfaces/ISettings.ts b/src/Ombi/ClientApp/app/interfaces/ISettings.ts index bf429d6d5..8e7fdbe1c 100644 --- a/src/Ombi/ClientApp/app/interfaces/ISettings.ts +++ b/src/Ombi/ClientApp/app/interfaces/ISettings.ts @@ -97,7 +97,6 @@ export interface ICustomizationSettings extends ISettings { applicationName: string; applicationUrl: string; logo: string; - mobile: boolean; customCssLink: string; enableCustomDonations: boolean; customDonationUrl: string; diff --git a/src/Ombi/ClientApp/app/settings/customization/customization.component.html b/src/Ombi/ClientApp/app/settings/customization/customization.component.html index 20ef6977a..9d05edf1f 100644 --- a/src/Ombi/ClientApp/app/settings/customization/customization.component.html +++ b/src/Ombi/ClientApp/app/settings/customization/customization.component.html @@ -3,12 +3,12 @@
    Customization -
    +
    @@ -26,13 +26,6 @@
    -
    -
    - - -
    -
    - -
    +
    From c90dd3e5268e8159643fb5e676a6f56aece674a2 Mon Sep 17 00:00:00 2001 From: Anojh Date: Tue, 8 May 2018 16:23:48 -0700 Subject: [PATCH 3/5] [LC] - Added classes to root/quality override divs --- src/Ombi/ClientApp/app/requests/movierequests.component.html | 4 ++-- src/Ombi/ClientApp/app/requests/tvrequests.component.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Ombi/ClientApp/app/requests/movierequests.component.html b/src/Ombi/ClientApp/app/requests/movierequests.component.html index 2431b5477..e67aeb5e6 100644 --- a/src/Ombi/ClientApp/app/requests/movierequests.component.html +++ b/src/Ombi/ClientApp/app/requests/movierequests.component.html @@ -115,10 +115,10 @@
    -
    {{ 'Requests.QualityOverride' | translate }} +
    {{ 'Requests.QualityOverride' | translate }} {{request.qualityOverrideTitle}}
    -
    {{ 'Requests.RootFolderOverride' | translate }} +
    {{ 'Requests.RootFolderOverride' | translate }} {{request.rootPathOverrideTitle}}
    diff --git a/src/Ombi/ClientApp/app/requests/tvrequests.component.html b/src/Ombi/ClientApp/app/requests/tvrequests.component.html index c15166e96..cfe589e23 100644 --- a/src/Ombi/ClientApp/app/requests/tvrequests.component.html +++ b/src/Ombi/ClientApp/app/requests/tvrequests.component.html @@ -52,10 +52,10 @@
    Release Date: {{node.data.releaseDate | date}}
    -
    {{ 'Requests.QualityOverride' | translate }} +
    {{ 'Requests.QualityOverride' | translate }} {{node.data.qualityOverrideTitle}}
    -
    {{ 'Requests.RootFolderOverride' | translate }} +
    {{ 'Requests.RootFolderOverride' | translate }} {{node.data.rootPathOverrideTitle}}
    From 3e2e7d2fc2d0d03e6286e05a4a0eb80e7cb70ab5 Mon Sep 17 00:00:00 2001 From: Jamie Rees Date: Wed, 9 May 2018 08:17:51 +0100 Subject: [PATCH 4/5] Updated to prevent security vulnerability as noted here: https://github.com/aspnet/Announcements/issues/300 --- src/Ombi.Api.Radarr/Ombi.Api.Radarr.csproj | 2 +- src/Ombi.Api.Service/Ombi.Api.Service.csproj | 2 +- src/Ombi.Api/Ombi.Api.csproj | 2 +- src/Ombi.Core.Tests/Ombi.Core.Tests.csproj | 2 +- src/Ombi.Core/Ombi.Core.csproj | 6 +++--- .../Ombi.DependencyInjection.csproj | 4 ++-- src/Ombi.Helpers/Ombi.Helpers.csproj | 4 ++-- src/Ombi.Mapping/Ombi.Mapping.csproj | 2 +- .../Ombi.Notifications.Tests.csproj | 2 +- src/Ombi.Schedule.Tests/Ombi.Schedule.Tests.csproj | 3 +-- src/Ombi.Store/Ombi.Store.csproj | 8 ++++---- src/Ombi.Tests/Ombi.Tests.csproj | 4 ++-- src/Ombi.Updater/Ombi.Updater.csproj | 14 +++++++------- src/Ombi/Ombi.csproj | 8 ++++---- 14 files changed, 31 insertions(+), 32 deletions(-) diff --git a/src/Ombi.Api.Radarr/Ombi.Api.Radarr.csproj b/src/Ombi.Api.Radarr/Ombi.Api.Radarr.csproj index 1031ffd4a..d2b605337 100644 --- a/src/Ombi.Api.Radarr/Ombi.Api.Radarr.csproj +++ b/src/Ombi.Api.Radarr/Ombi.Api.Radarr.csproj @@ -9,7 +9,7 @@ - + diff --git a/src/Ombi.Api.Service/Ombi.Api.Service.csproj b/src/Ombi.Api.Service/Ombi.Api.Service.csproj index 8e62012d8..67f37c80d 100644 --- a/src/Ombi.Api.Service/Ombi.Api.Service.csproj +++ b/src/Ombi.Api.Service/Ombi.Api.Service.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/Ombi.Api/Ombi.Api.csproj b/src/Ombi.Api/Ombi.Api.csproj index 8379691c5..32fc60bb6 100644 --- a/src/Ombi.Api/Ombi.Api.csproj +++ b/src/Ombi.Api/Ombi.Api.csproj @@ -9,7 +9,7 @@ - + diff --git a/src/Ombi.Core.Tests/Ombi.Core.Tests.csproj b/src/Ombi.Core.Tests/Ombi.Core.Tests.csproj index 2aa71c1e2..d75ba3411 100644 --- a/src/Ombi.Core.Tests/Ombi.Core.Tests.csproj +++ b/src/Ombi.Core.Tests/Ombi.Core.Tests.csproj @@ -9,7 +9,7 @@ - + diff --git a/src/Ombi.Core/Ombi.Core.csproj b/src/Ombi.Core/Ombi.Core.csproj index de6f5c8fa..2037113bd 100644 --- a/src/Ombi.Core/Ombi.Core.csproj +++ b/src/Ombi.Core/Ombi.Core.csproj @@ -10,10 +10,10 @@ - + - - + + diff --git a/src/Ombi.DependencyInjection/Ombi.DependencyInjection.csproj b/src/Ombi.DependencyInjection/Ombi.DependencyInjection.csproj index 75f4385bb..675f6461b 100644 --- a/src/Ombi.DependencyInjection/Ombi.DependencyInjection.csproj +++ b/src/Ombi.DependencyInjection/Ombi.DependencyInjection.csproj @@ -9,8 +9,8 @@ - - + + diff --git a/src/Ombi.Helpers/Ombi.Helpers.csproj b/src/Ombi.Helpers/Ombi.Helpers.csproj index 9bb599c2a..12c6fecc4 100644 --- a/src/Ombi.Helpers/Ombi.Helpers.csproj +++ b/src/Ombi.Helpers/Ombi.Helpers.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/src/Ombi.Mapping/Ombi.Mapping.csproj b/src/Ombi.Mapping/Ombi.Mapping.csproj index 78f39bcd5..b6f602886 100644 --- a/src/Ombi.Mapping/Ombi.Mapping.csproj +++ b/src/Ombi.Mapping/Ombi.Mapping.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/Ombi.Notifications.Tests/Ombi.Notifications.Tests.csproj b/src/Ombi.Notifications.Tests/Ombi.Notifications.Tests.csproj index cbbe62277..b350b93f4 100644 --- a/src/Ombi.Notifications.Tests/Ombi.Notifications.Tests.csproj +++ b/src/Ombi.Notifications.Tests/Ombi.Notifications.Tests.csproj @@ -8,7 +8,7 @@ - + diff --git a/src/Ombi.Schedule.Tests/Ombi.Schedule.Tests.csproj b/src/Ombi.Schedule.Tests/Ombi.Schedule.Tests.csproj index 1805b80f2..bdfbd60e6 100644 --- a/src/Ombi.Schedule.Tests/Ombi.Schedule.Tests.csproj +++ b/src/Ombi.Schedule.Tests/Ombi.Schedule.Tests.csproj @@ -5,8 +5,7 @@ - - + diff --git a/src/Ombi.Store/Ombi.Store.csproj b/src/Ombi.Store/Ombi.Store.csproj index 522a96957..703bbf672 100644 --- a/src/Ombi.Store/Ombi.Store.csproj +++ b/src/Ombi.Store/Ombi.Store.csproj @@ -10,10 +10,10 @@ - - - - + + + + diff --git a/src/Ombi.Tests/Ombi.Tests.csproj b/src/Ombi.Tests/Ombi.Tests.csproj index f3d041122..0880682f2 100644 --- a/src/Ombi.Tests/Ombi.Tests.csproj +++ b/src/Ombi.Tests/Ombi.Tests.csproj @@ -7,12 +7,12 @@ - + - + diff --git a/src/Ombi.Updater/Ombi.Updater.csproj b/src/Ombi.Updater/Ombi.Updater.csproj index a23d8a967..3a55a7040 100644 --- a/src/Ombi.Updater/Ombi.Updater.csproj +++ b/src/Ombi.Updater/Ombi.Updater.csproj @@ -12,14 +12,14 @@ - - - - + + + + - - - + + + diff --git a/src/Ombi/Ombi.csproj b/src/Ombi/Ombi.csproj index 89e432580..8b9e00c45 100644 --- a/src/Ombi/Ombi.csproj +++ b/src/Ombi/Ombi.csproj @@ -67,10 +67,10 @@ - - - - + + + + From 3b9454258b5fa157488be7a3488a08c708d05feb Mon Sep 17 00:00:00 2001 From: Jamie Rees Date: Wed, 9 May 2018 08:20:55 +0100 Subject: [PATCH 5/5] !wip changelog --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1efdccb7..91ef9d69d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ ### **New Features** +- Updated to prevent security vulnerability as noted here: https://github.com/aspnet/Announcements/issues/300. [Jamie Rees] + +### **Fixes** + +- [LC] - Added classes to root/quality override divs. [Anojh] + +- Fixed an issue where sometimes the OAuth wouldn't work when loading the login page. [Jamie Rees] + +- Alwats enable mobile link. [Jamie] + + +## v3.0.3293 (2018-05-05) + +### **New Features** + - Added a check for long movie descriptions and dealt with accordingly. [Anojh] - Update jobs.component.html. [D34DC3N73R]