mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Added a release notes page, you can access via Admin>Updates>Recent Changes tab. Note to self, need to put better comments in for users to understand!
This commit is contained in:
parent
14ac399886
commit
2804191781
14 changed files with 451 additions and 70 deletions
|
@ -25,10 +25,12 @@
|
|||
// ************************************************************************/
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Newtonsoft.Json;
|
||||
using Ombi.Core.Models;
|
||||
using Ombi.Helpers;
|
||||
|
||||
namespace Ombi.Core.SettingModels
|
||||
{
|
||||
|
@ -50,13 +52,15 @@ namespace Ombi.Core.SettingModels
|
|||
|
||||
public enum Branches
|
||||
{
|
||||
[Display(Name = "Stable")]
|
||||
[Branch(DisplayName= "Stable", BranchName = "master")]
|
||||
Stable,
|
||||
|
||||
[Display(Name = "Early Access Preview")]
|
||||
[Branch(DisplayName = "Early Access Preview", BranchName = "eap")]
|
||||
EarlyAccessPreview,
|
||||
|
||||
[Display(Name = "Development")]
|
||||
[Branch(DisplayName = "Development", BranchName = "dev")]
|
||||
Dev,
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue