From 1fb6d0826147a513ffe3032a6baf02f434eff5af Mon Sep 17 00:00:00 2001 From: Dyson Parkes Date: Tue, 30 Apr 2019 09:47:24 +1200 Subject: [PATCH 1/5] Update README.md Remove iOS app link Add note about auto-approval --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 79aba2c3a..814bb9bb9 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,8 @@ Follow me developing Ombi! ___ Get it on Google Play - -Get it on App Store - +
+_**Note:** There is no longer an iOS app due to complications outside of our control._ ___ @@ -43,6 +42,7 @@ Here are some of the features Ombi V3 has: * Now working without crashes on Linux. * Lets users request Movies, Music, and TV Shows (whether it being the entire series, an entire season, or even single episodes.) * Easily manage your requests +* Allows you to set specific users to automatically have requests approved and added to the relevant service (Sonarr/Radarr/Lidarr/Couchpotato etc) * User management system (supports plex.tv, Emby and local accounts) * A landing page that will give you the availability of your Plex/Emby server and also add custom notification text to inform your users of downtime. * Allows your users to get custom notifications! @@ -50,7 +50,7 @@ Here are some of the features Ombi V3 has: * Will show if the request is already on plex or even if it's already monitored. * Automatically updates the status of requests when they are available on Plex/Emby * Slick, responsive and mobile friendly UI -* Ombi will automatically update itself :) +* Ombi will automatically update itself :) (YMMV) * Very fast! ### Integration From 88fc10ea6e7edae1a810a360d751e68b06ee4bdd Mon Sep 17 00:00:00 2001 From: tidusjar Date: Tue, 21 May 2019 22:09:23 +0100 Subject: [PATCH 2/5] added stalebot --- .github/stale.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 000000000..0116dea51 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,23 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 60 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - pinned + - security + - bug / issue + - help wanted + - possible feature + - planned + - in progress + - enchancement +# Label to use when marking an issue as stale +staleLabel: wontfix +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false \ No newline at end of file From 4cb6533cfbf6b59197c3aaabe8a6f04a43f643c3 Mon Sep 17 00:00:00 2001 From: Jamie Date: Wed, 22 May 2019 08:07:28 +0100 Subject: [PATCH 3/5] Update stale.yml --- .github/stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/stale.yml b/.github/stale.yml index 0116dea51..b3deb4a73 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -11,7 +11,7 @@ exemptLabels: - possible feature - planned - in progress - - enchancement + - enhancement # Label to use when marking an issue as stale staleLabel: wontfix # Comment to post when marking an issue as stale. Set to `false` to disable @@ -20,4 +20,4 @@ markComment: > recent activity. It will be closed if no further activity occurs. Thank you for your contributions. # Comment to post when closing a stale issue. Set to `false` to disable -closeComment: false \ No newline at end of file +closeComment: false From ba1e96e5c0e123138db771112022134d38bb0141 Mon Sep 17 00:00:00 2001 From: Austin Jackson Date: Thu, 23 May 2019 13:33:36 -0500 Subject: [PATCH 4/5] Swagger index prepends configured baseurl --- src/Ombi/Startup.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) mode change 100644 => 100755 src/Ombi/Startup.cs diff --git a/src/Ombi/Startup.cs b/src/Ombi/Startup.cs old mode 100644 new mode 100755 index bbf56c517..01a4ceb2e --- a/src/Ombi/Startup.cs +++ b/src/Ombi/Startup.cs @@ -217,7 +217,14 @@ namespace Ombi app.UseSwagger(); app.UseSwaggerUI(c => { - c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1"); + if (settings.BaseUrl.HasValue()) + { + c.SwaggerEndpoint(settings.BaseUrl + "/swagger/v1/swagger.json", "My API V1"); + } + else + { + c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1"); + } }); app.UseMvc(routes => From 3708c161ddeb59615a51848882b1d6935ccb46ca Mon Sep 17 00:00:00 2001 From: Austin Jackson Date: Thu, 23 May 2019 14:00:54 -0500 Subject: [PATCH 5/5] Use string interpolation --- src/Ombi/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi/Startup.cs b/src/Ombi/Startup.cs index 01a4ceb2e..0abc63b00 100755 --- a/src/Ombi/Startup.cs +++ b/src/Ombi/Startup.cs @@ -219,7 +219,7 @@ namespace Ombi { if (settings.BaseUrl.HasValue()) { - c.SwaggerEndpoint(settings.BaseUrl + "/swagger/v1/swagger.json", "My API V1"); + c.SwaggerEndpoint($"{settings.BaseUrl}/swagger/v1/swagger.json", "My API V1"); } else {