mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-25 07:25:22 -07:00
Merge pull request #3439 from stcbus/fix-language
minor language and grammar changes.
This commit is contained in:
commit
df247c4d1b
6 changed files with 36 additions and 43 deletions
18
.github/workflows/aspnetcore.yml
vendored
18
.github/workflows/aspnetcore.yml
vendored
|
@ -1,18 +0,0 @@
|
||||||
name: ASP.NET Core CI
|
|
||||||
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Setup .NET Core
|
|
||||||
uses: actions/setup-dotnet@v1
|
|
||||||
with:
|
|
||||||
dotnet-version: 2.2.108
|
|
||||||
|
|
||||||
- name: Build Backend
|
|
||||||
run: ./build.sh --settings_skipverification=true
|
|
9
.github/workflows/test.workflow
vendored
9
.github/workflows/test.workflow
vendored
|
@ -1,9 +0,0 @@
|
||||||
workflow "New workflow" {
|
|
||||||
on = "push"
|
|
||||||
resolves = [".NET Core CLI"]
|
|
||||||
}
|
|
||||||
|
|
||||||
action ".NET Core CLI" {
|
|
||||||
uses = "baruchiro/github-actions@0.0.1"
|
|
||||||
args = "build src/Ombi.sln"
|
|
||||||
}
|
|
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,6 +1,18 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## (unreleased)
|
## v3.0.4892 (2019-11-16)
|
||||||
|
|
||||||
|
### **Fixes**
|
||||||
|
|
||||||
|
- Fixed an issue where some users couldn't start Ombi
|
||||||
|
|
||||||
|
## v3.0.4887 (2019-11-13)
|
||||||
|
|
||||||
|
### **Fixes**
|
||||||
|
|
||||||
|
- Fixed issues with the RequestId Migration #3244 #3253 #3249
|
||||||
|
|
||||||
|
## v3.0.4880 (2019-11-13)
|
||||||
|
|
||||||
### **New Features**
|
### **New Features**
|
||||||
|
|
||||||
|
|
11
README.md
11
README.md
|
@ -33,10 +33,10 @@ We also now have merch up on Teespring!
|
||||||
___
|
___
|
||||||
|
|
||||||
|
|
||||||
| Service | Stable | Develop |
|
| Service | Stable | Develop | V4 |
|
||||||
|----------|:---------------------------:|:----------------------------:|
|
|----------|:---------------------------:|:----------------------------:|:----------------------------:|
|
||||||
| AppVeyor | [](https://ci.appveyor.com/project/tidusjar/requestplex/branch/master) | [](https://ci.appveyor.com/project/tidusjar/requestplex/branch/develop) |
|
| Build Status | [](https://ci.appveyor.com/project/tidusjar/requestplex/branch/master) | [](https://ci.appveyor.com/project/tidusjar/requestplex/branch/develop) | [](https://dev.azure.com/tidusjar/Ombi/_build/latest?definitionId=15&branchName=feature%2Fv4)
|
||||||
| Download |[](https://github.com/tidusjar/Ombi/releases) | [](https://ci.appveyor.com/project/tidusjar/requestplex/branch/develop/artifacts) |
|
| Download |[](https://github.com/tidusjar/Ombi/releases) | [](https://ci.appveyor.com/project/tidusjar/requestplex/branch/develop/artifacts) | [](https://github.com/tidusjar/ombi.releases/releases) |
|
||||||
# Features
|
# Features
|
||||||
Here are some of the features Ombi V3 has:
|
Here are some of the features Ombi V3 has:
|
||||||
* Now working without crashes on Linux.
|
* Now working without crashes on Linux.
|
||||||
|
@ -56,12 +56,13 @@ Here are some of the features Ombi V3 has:
|
||||||
### Integration
|
### Integration
|
||||||
We integrate with the following applications:
|
We integrate with the following applications:
|
||||||
* Plex Media Server
|
* Plex Media Server
|
||||||
* Emby
|
* Emby/Jellyfin Media Server
|
||||||
* Sonarr
|
* Sonarr
|
||||||
* Radarr
|
* Radarr
|
||||||
* Lidarr
|
* Lidarr
|
||||||
* DogNzb
|
* DogNzb
|
||||||
* Couch Potato
|
* Couch Potato
|
||||||
|
* SickRage/SickChill
|
||||||
|
|
||||||
|
|
||||||
### Notifications
|
### Notifications
|
||||||
|
|
|
@ -96,7 +96,14 @@ namespace Ombi.Notifications
|
||||||
client.Authenticate(settings.Username, settings.Password);
|
client.Authenticate(settings.Username, settings.Password);
|
||||||
}
|
}
|
||||||
_log.LogDebug("sending message to {0} \r\n from: {1}\r\n Are we authenticated: {2}", message.To, message.From, client.IsAuthenticated);
|
_log.LogDebug("sending message to {0} \r\n from: {1}\r\n Are we authenticated: {2}", message.To, message.From, client.IsAuthenticated);
|
||||||
await client.SendAsync(message);
|
try
|
||||||
|
{
|
||||||
|
await client.SendAsync(message);
|
||||||
|
}
|
||||||
|
catch (MailKit.Net.Smtp.SmtpCommandException e) when (e.ErrorCode.Equals(MailKit.Net.Smtp.SmtpErrorCode.RecipientNotAccepted) && e.StatusCode.Equals(MailKit.Net.Smtp.SmtpStatusCode.MailboxUnavailable))
|
||||||
|
{
|
||||||
|
_log.LogError("Could not send email '{0}', address <{1}> does not exist.", message.Subject, model.To);
|
||||||
|
}
|
||||||
await client.DisconnectAsync(true);
|
await client.DisconnectAsync(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -178,4 +185,4 @@ namespace Ombi.Notifications
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,7 +118,7 @@ namespace Ombi.Store.Context
|
||||||
notificationToAdd = new NotificationTemplates
|
notificationToAdd = new NotificationTemplates
|
||||||
{
|
{
|
||||||
NotificationType = notificationType,
|
NotificationType = notificationType,
|
||||||
Message = "Hello! Your request for {Title} on {ApplicationName}! This is now available! :)",
|
Message = "Hello! Your request for {Title} on {ApplicationName} is now available.",
|
||||||
Subject = "{ApplicationName}: {Title} is now available!",
|
Subject = "{ApplicationName}: {Title} is now available!",
|
||||||
Agent = agent,
|
Agent = agent,
|
||||||
Enabled = true,
|
Enabled = true,
|
||||||
|
@ -140,7 +140,7 @@ namespace Ombi.Store.Context
|
||||||
notificationToAdd = new NotificationTemplates
|
notificationToAdd = new NotificationTemplates
|
||||||
{
|
{
|
||||||
NotificationType = notificationType,
|
NotificationType = notificationType,
|
||||||
Message = "Hello! Your request for {Title} has been declined, Sorry!",
|
Message = "Hello! Your request for {Title} has been declined.",
|
||||||
Subject = "{ApplicationName}: your request has been declined",
|
Subject = "{ApplicationName}: your request has been declined",
|
||||||
Agent = agent,
|
Agent = agent,
|
||||||
Enabled = true,
|
Enabled = true,
|
||||||
|
@ -150,7 +150,7 @@ namespace Ombi.Store.Context
|
||||||
notificationToAdd = new NotificationTemplates
|
notificationToAdd = new NotificationTemplates
|
||||||
{
|
{
|
||||||
NotificationType = notificationType,
|
NotificationType = notificationType,
|
||||||
Message = "Hello! The user '{UserName}' has requested {Title} but it could not be added. This has been added into the requests queue and will keep retrying",
|
Message = "Hello! The user '{UserName}' has requested {Title} but it could not be added. This has been added into the requests queue and it will keep retrying",
|
||||||
Subject = "Item Added To Retry Queue",
|
Subject = "Item Added To Retry Queue",
|
||||||
Agent = agent,
|
Agent = agent,
|
||||||
Enabled = true,
|
Enabled = true,
|
||||||
|
@ -160,7 +160,7 @@ namespace Ombi.Store.Context
|
||||||
notificationToAdd = new NotificationTemplates
|
notificationToAdd = new NotificationTemplates
|
||||||
{
|
{
|
||||||
NotificationType = notificationType,
|
NotificationType = notificationType,
|
||||||
Message = "Hello! You have been invited to use {ApplicationName}! You can login here: {ApplicationUrl}",
|
Message = "Hello! You have been invited to use {ApplicationName}. You can login here: {ApplicationUrl}",
|
||||||
Subject = "Invite to {ApplicationName}",
|
Subject = "Invite to {ApplicationName}",
|
||||||
Agent = agent,
|
Agent = agent,
|
||||||
Enabled = true,
|
Enabled = true,
|
||||||
|
@ -170,7 +170,7 @@ namespace Ombi.Store.Context
|
||||||
notificationToAdd = new NotificationTemplates
|
notificationToAdd = new NotificationTemplates
|
||||||
{
|
{
|
||||||
NotificationType = notificationType,
|
NotificationType = notificationType,
|
||||||
Message = "Hello {UserName} Your issue for {Title} has now been resolved.",
|
Message = "Hello {UserName}, your issue for {Title} has now been resolved.",
|
||||||
Subject = "{ApplicationName}: Issue has been resolved for {Title}!",
|
Subject = "{ApplicationName}: Issue has been resolved for {Title}!",
|
||||||
Agent = agent,
|
Agent = agent,
|
||||||
Enabled = true,
|
Enabled = true,
|
||||||
|
@ -181,7 +181,7 @@ namespace Ombi.Store.Context
|
||||||
notificationToAdd = new NotificationTemplates
|
notificationToAdd = new NotificationTemplates
|
||||||
{
|
{
|
||||||
NotificationType = notificationType,
|
NotificationType = notificationType,
|
||||||
Message = "Hello, There is a new comment on your issue {IssueSubject}, The comment is: {NewIssueComment}",
|
Message = "Hello, There is a new comment on your issue {IssueSubject}. The comment is: {NewIssueComment}",
|
||||||
Subject = "{ApplicationName}: New comment on issue {IssueSubject}!",
|
Subject = "{ApplicationName}: New comment on issue {IssueSubject}!",
|
||||||
Agent = agent,
|
Agent = agent,
|
||||||
Enabled = true,
|
Enabled = true,
|
||||||
|
@ -193,7 +193,7 @@ namespace Ombi.Store.Context
|
||||||
notificationToAdd = new NotificationTemplates
|
notificationToAdd = new NotificationTemplates
|
||||||
{
|
{
|
||||||
NotificationType = notificationType,
|
NotificationType = notificationType,
|
||||||
Message = "Here is a list of Movies and TV Shows that have recently been added!",
|
Message = "Here is a list of Movies and TV Shows that have recently been added:",
|
||||||
Subject = "{ApplicationName}: Recently Added Content!",
|
Subject = "{ApplicationName}: Recently Added Content!",
|
||||||
Agent = agent,
|
Agent = agent,
|
||||||
Enabled = true,
|
Enabled = true,
|
||||||
|
@ -217,4 +217,4 @@ namespace Ombi.Store.Context
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue