Commit graph

5498 commits

Author SHA1 Message Date
tidusjar
42792bdb9b Removed useless file 2021-04-04 23:44:05 +01:00
tidusjar
8a9230730c Merge branch 'develop' of https://github.com/ombi-app/Ombi into develop 2021-04-04 23:35:45 +01:00
tidusjar
81f410d782 Ombi will now tell you when there is an update available in the settings, clicking that will also provide you with the changelog and links to manually download the binaries.
Also removed references to the custom HTTP client implimentation and we now use the inbuilt IHttpClientFactory, this means we have removed the "Ignore Certificate Errors" option in Ombi as it's no longer needed.
2021-04-04 23:35:38 +01:00
Jamie
8ee4ae07f9
Merge pull request #4138 from bernarden/feature/user-preferences-styling-improvements
User preferences page style improvements.
2021-04-04 23:08:15 +01:00
Victor Usoltsev
9703d37056 User preferences page style improvements. 2021-04-05 01:08:47 +12:00
Jamie
78442f25e0
Merge pull request #4133 from Ombi-app/develop-kuraki
Develop kuraki
2021-04-02 00:12:50 +01:00
tidusjar
b61d53029c Added mobile tests 2021-04-02 00:08:59 +01:00
tidusjar
f2ea1d0e13 Fixed up some more tests 2021-04-01 23:56:37 +01:00
tidusjar
b59a792fdf Added unit tests around the notification subsuitution 2021-04-01 23:21:13 +01:00
Jamie
79163d251d
Merge pull request #4113 from bernarden/bug/4110-capitalise-v-in-tvshow-notification-type
Capitalizes V for tv show notification type. Refactors NotificationMessageCurlys class.
2021-04-01 23:20:03 +01:00
tidusjar
0eeb163a0d Fixed automation tests 2021-04-01 10:21:48 +01:00
tidusjar
4505488289 added the api to get libs 2021-04-01 10:11:47 +01:00
Jamie
487e36b957
Merge pull request #4130 from kitzin/patch-4
fixes movie keywords
2021-04-01 10:08:45 +01:00
twanariens
16515ed3a8 Stupid container being stupid. Told it to stop 2021-03-31 23:41:34 +02:00
twanariens
9294c278da BEGONE you ugly separator 2021-03-31 23:29:12 +02:00
twanariens
f106b2bb68 Stop shouting in my face stupid filters 2021-03-31 23:22:10 +02:00
twanariens
94862aee37 Some styling changes to the discover page 2021-03-31 23:13:52 +02:00
twanariens
1c8ab3cee2 Reworked top search. included username. styling fixes for menu 2021-03-31 22:08:42 +02:00
Twan Ariens
a055e2ef70
Merge pull request #4131 from Ombi-app/develop
Bring test branch up to date
2021-03-31 20:22:59 +02:00
Emil Kitti
ea54f52325 fixes movie keywords 2021-03-31 19:49:16 +02:00
Jamie
c31b57aa86
kitzin - Fixed anime being send to sonarr as standard series
kitzin - Fixed anime being send to sonarr as standard series
2021-03-31 16:36:47 +01:00
Emil Kitti
a5fd1622d6 themoviedb keywords attribute api change 2021-03-31 14:25:11 +02:00
tidusjar
b3a2fbdb0d Fixed last test 2021-03-29 08:56:58 +01:00
tidusjar
4af31f165b Fixed up some tests 2021-03-29 08:30:22 +01:00
Jamie
53f2dbe5ad
Merge pull request #4123 from elisspace/patch-1
Fix minor grammatical error
2021-03-29 07:02:52 +01:00
Eli
d54e11f1a0
Fix minor grammatical error
Removed some duplicated text.
2021-03-29 07:46:09 +07:00
Jamie
606fd8c919
Merge pull request #4121 from Ombi-app/bug/v1api-fix
Fixed the v1 API, added tests around that API to ensure we keep backw…
2021-03-28 22:33:19 +01:00
Victor Usoltsev
4d9500df54 Merges with develop. 2021-03-29 08:50:05 +13:00
tidusjar
57e986a118 Fixed the issue where TV shows sometimes were not appearing as available on the Discover and Search pages, added more automation tests to cover this 2021-03-28 20:26:35 +01:00
Jamie
41522844fe
Merge pull request #4122 from kitzin/patch-2
fixes rootfolder selection in sonarr
2021-03-28 19:14:09 +01:00
Emil Kitti
f2525650f1 fixes rootfolder selection in sonarr 2021-03-28 18:50:10 +02:00
tidusjar
c464b23bdc Fixed the v1 API, added tests around that API to ensure we keep backwards compatability 2021-03-28 15:36:18 +01:00
tidusjar
580a34f28a Merge branch 'develop' of https://github.com/ombi-app/Ombi into develop 2021-03-28 14:13:33 +01:00
tidusjar
2dc364e96a Fixed the Discord TV notification not working after moving away from TV maze #4120 2021-03-28 14:13:17 +01:00
Jamie
1bc179370b
Merge pull request #4116 from kitzin/patch-1
Verify Sonarr quality/rootfolder override
2021-03-28 13:53:31 +01:00
Emil Kitti
45bcfca138
Fix rootfolder override
rootfolder override has the same issue
2021-03-28 05:53:22 +02:00
Emil Kitti
87d8ba0499
Fix 2021-03-28 05:24:26 +02:00
Emil Kitti
3c5e7ba37f
Verify Sonarr quality override
Ombi implicitly trusts that the quality override is set correctly, and causes issues downstream.

Line 258 in [TvSender.cs](https://github.com/Ombi-app/Ombi/tree/develop/src/Ombi.Core/Senders/TvSender.cs#L258) it tries to add a series but the, `AddSeries` function in [SonarrApi.cs](https://github.com/Ombi-app/Ombi/blob/develop/src/Ombi.Api.Sonarr/SonarrApi.cs#L92) fails to validate the `NewSeries` object since the `qualityProfileId` attribute is set to `0`. In the end it assumes the series is added in Sonarr and causes a API request with series id set to `0` which causes the following error.

```
[Error] StatusCode: BadRequest, Reason: Bad Request, RequestUri: http://SONARR_HOST/sonarr/api/series/0
```
2021-03-28 04:42:54 +02:00
tidusjar
6955c59680 Fixed up the reset password pages and some small tweaks 2021-03-27 22:46:33 +00:00
Victor Usoltsev
412063c982 Capitalizes V for tv show notification type. Refactors notification message curlys class. 2021-03-27 00:51:36 +13:00
Jamie
4c571101c7
Merge pull request #4112 from Ombi-app/feature/admin-request-options
Feature/admin request options
2021-03-25 12:19:02 +00:00
tidusjar
1011d965cb removed onlys 2021-03-25 10:49:57 +00:00
tidusjar
8eb34d1d3a Removed the Request on behalf from the details menu as it's no longer needed there and tidied up some of the icons 2021-03-25 10:48:00 +00:00
tidusjar
130efd8216 Fixed the bugs that the automation tests found 2021-03-25 09:55:44 +00:00
tidusjar
600c88dd20 Removed only's 2021-03-25 09:05:29 +00:00
tidusjar
b9f5c06b7c Fixed unit tests 2021-03-25 09:04:48 +00:00
tidusjar
5678f43f41 Fixed up tests to be aware of the new dialog 2021-03-25 08:54:35 +00:00
tidusjar
5e6edc2ad8 Got TV working nicely 2021-03-24 20:57:35 +00:00
tidusjar
62cceb803d removed .only 2021-03-24 09:15:01 +00:00
tidusjar
e34ce215ac Fixed all the automation tests, and the bugs that the tests found 2021-03-24 09:05:40 +00:00