Merge pull request #780 from tidusjar/EAP

Pushing release V1.10.0
This commit is contained in:
Jamie 2016-12-15 19:29:37 +00:00 committed by GitHub
commit 16a03240c2
12 changed files with 354 additions and 195 deletions

View file

@ -4,6 +4,7 @@ using System.Data.Common;
using System.Linq; using System.Linq;
using System.Reflection; using System.Reflection;
using Ninject; using Ninject;
using NLog;
using PlexRequests.Store; using PlexRequests.Store;
namespace PlexRequests.Core.Migration namespace PlexRequests.Core.Migration
@ -18,6 +19,7 @@ namespace PlexRequests.Core.Migration
private IKernel Kernel { get; } private IKernel Kernel { get; }
private ISqliteConfiguration Db { get; } private ISqliteConfiguration Db { get; }
private static Logger _log = LogManager.GetCurrentClassLogger();
public void MigrateToLatest() public void MigrateToLatest()
{ {
@ -25,13 +27,15 @@ namespace PlexRequests.Core.Migration
var versions = GetMigrations(); var versions = GetMigrations();
var dbVersion = con.GetVersionInfo().OrderByDescending(x => x.Version).FirstOrDefault() ?? var dbVersion = con.GetVersionInfo().OrderByDescending(x => x.Version).FirstOrDefault() ??
new TableCreation.VersionInfo { Version = 0 }; new TableCreation.VersionInfo {Version = 0};
foreach (var v in versions) foreach (var v in versions)
{ {
#if !DEBUG #if !DEBUG
if (v.Value.Version > dbVersion.Version) if (v.Value.Version > dbVersion.Version)
{ {
#endif #endif
try
{
// Assuming only one constructor // Assuming only one constructor
var ctor = v.Key.GetConstructors().FirstOrDefault(); var ctor = v.Key.GetConstructors().FirstOrDefault();
var dependencies = ctor.GetParameters().Select(param => Kernel.Get(param.ParameterType)).ToList(); var dependencies = ctor.GetParameters().Select(param => Kernel.Get(param.ParameterType)).ToList();
@ -44,6 +48,13 @@ namespace PlexRequests.Core.Migration
method.Invoke(classInstance, parametersArray); method.Invoke(classInstance, parametersArray);
} }
}
catch (Exception e)
{
_log.Fatal("Error when migrating version : {0}", v.Value.Version);
_log.Fatal(e);
}
#if !DEBUG #if !DEBUG
} }
#endif #endif

View file

@ -1,4 +1,5 @@
#region Copyright #region Copyright
// /************************************************************************ // /************************************************************************
// Copyright (c) 2016 Jamie Rees // Copyright (c) 2016 Jamie Rees
// File: Version1100.cs // File: Version1100.cs
@ -23,16 +24,15 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// ************************************************************************/ // ************************************************************************/
#endregion #endregion
using System; using System;
using System.Collections.Generic;
using System.Data; using System.Data;
using NLog; using NLog;
using System.Linq; using System.Linq;
using PlexRequests.Api.Interfaces; using PlexRequests.Api.Interfaces;
using PlexRequests.Core.SettingModels; using PlexRequests.Core.SettingModels;
using PlexRequests.Core.Users;
using PlexRequests.Helpers; using PlexRequests.Helpers;
using PlexRequests.Helpers.Permissions; using PlexRequests.Helpers.Permissions;
using PlexRequests.Store; using PlexRequests.Store;
@ -44,8 +44,10 @@ namespace PlexRequests.Core.Migration.Migrations
[Migration(11000, "v1.10.0.0")] [Migration(11000, "v1.10.0.0")]
public class Version1100 : BaseMigration, IMigration public class Version1100 : BaseMigration, IMigration
{ {
public Version1100(IUserRepository userRepo, IRequestService requestService, ISettingsService<LogSettings> log, IPlexApi plexApi, ISettingsService<PlexSettings> plexService, public Version1100(IUserRepository userRepo, IRequestService requestService, ISettingsService<LogSettings> log,
IPlexUserRepository plexusers, ISettingsService<PlexRequestSettings> prSettings, ISettingsService<UserManagementSettings> umSettings, IPlexApi plexApi, ISettingsService<PlexSettings> plexService,
IPlexUserRepository plexusers, ISettingsService<PlexRequestSettings> prSettings,
ISettingsService<UserManagementSettings> umSettings,
ISettingsService<ScheduledJobsSettings> sjs, IRepository<UsersToNotify> usersToNotify) ISettingsService<ScheduledJobsSettings> sjs, IRepository<UsersToNotify> usersToNotify)
{ {
UserRepo = userRepo; UserRepo = userRepo;
@ -59,7 +61,9 @@ namespace PlexRequests.Core.Migration.Migrations
ScheduledJobSettings = sjs; ScheduledJobSettings = sjs;
UserNotifyRepo = usersToNotify; UserNotifyRepo = usersToNotify;
} }
public int Version => 11000; public int Version => 11000;
private IUserRepository UserRepo { get; } private IUserRepository UserRepo { get; }
private IRequestService RequestService { get; } private IRequestService RequestService { get; }
private ISettingsService<LogSettings> Log { get; } private ISettingsService<LogSettings> Log { get; }
@ -71,6 +75,9 @@ namespace PlexRequests.Core.Migration.Migrations
private ISettingsService<ScheduledJobsSettings> ScheduledJobSettings { get; } private ISettingsService<ScheduledJobsSettings> ScheduledJobSettings { get; }
private IRepository<UsersToNotify> UserNotifyRepo { get; } private IRepository<UsersToNotify> UserNotifyRepo { get; }
private static Logger Logger = LogManager.GetCurrentClassLogger();
public void Start(IDbConnection con) public void Start(IDbConnection con)
{ {
UpdateDb(con); UpdateDb(con);
@ -88,6 +95,8 @@ namespace PlexRequests.Core.Migration.Migrations
} }
private void MigrateUserNotifications() private void MigrateUserNotifications()
{
try
{ {
var usersToNotify = UserNotifyRepo.GetAll(); var usersToNotify = UserNotifyRepo.GetAll();
var plexUsers = PlexUsers.GetAll().ToList(); var plexUsers = PlexUsers.GetAll().ToList();
@ -100,7 +109,9 @@ namespace PlexRequests.Core.Migration.Migrations
foreach (var u in usersToNotify) foreach (var u in usersToNotify)
{ {
var selectedPlexUser = plexUsers.FirstOrDefault(x => x.Username.Equals(u.Username, StringComparison.CurrentCultureIgnoreCase)); var selectedPlexUser =
plexUsers.FirstOrDefault(
x => x.Username.Equals(u.Username, StringComparison.CurrentCultureIgnoreCase));
if (selectedPlexUser != null) if (selectedPlexUser != null)
{ {
selectedPlexUser.Features += (int)Features.RequestAddedNotification; selectedPlexUser.Features += (int)Features.RequestAddedNotification;
@ -114,11 +125,18 @@ namespace PlexRequests.Core.Migration.Migrations
selectedLocalUser.Features += (int)Features.RequestAddedNotification; selectedLocalUser.Features += (int)Features.RequestAddedNotification;
UserRepo.Update(selectedLocalUser); UserRepo.Update(selectedLocalUser);
} }
}
}
catch (Exception e)
{
Logger.Fatal("Exception when migrating Version 1.10.0 (UpdateScheduledJobs)");
Logger.Fatal(e);
} }
} }
private void UpdateScheduledJobs() private void UpdateScheduledJobs()
{
try
{ {
var settings = ScheduledJobSettings.GetSettings(); var settings = ScheduledJobSettings.GetSettings();
@ -127,8 +145,16 @@ namespace PlexRequests.Core.Migration.Migrations
ScheduledJobSettings.SaveSettings(settings); ScheduledJobSettings.SaveSettings(settings);
} }
catch (Exception e)
{
Logger.Fatal("Exception when migrating Version 1.10.0 (UpdateScheduledJobs)");
Logger.Fatal(e);
}
}
private void PopulateDefaultUserManagementSettings() private void PopulateDefaultUserManagementSettings()
{
try
{ {
var plexRequestSettings = PlexRequestSettings.GetSettings(); var plexRequestSettings = PlexRequestSettings.GetSettings();
@ -142,8 +168,16 @@ namespace PlexRequests.Core.Migration.Migrations
AutoApproveTvShows = !plexRequestSettings.RequireTvShowApproval AutoApproveTvShows = !plexRequestSettings.RequireTvShowApproval
}); });
} }
catch (Exception e)
{
Logger.Fatal("Exception when migrating Version 1.10.0 (PopulateDefaultUserMngmentSettings)");
Logger.Fatal(e);
}
}
private void UpdatePlexUsers() private void UpdatePlexUsers()
{
try
{ {
var settings = PlexSettings.GetSettings(); var settings = PlexSettings.GetSettings();
if (string.IsNullOrEmpty(settings.PlexAuthToken)) if (string.IsNullOrEmpty(settings.PlexAuthToken))
@ -210,10 +244,17 @@ namespace PlexRequests.Core.Migration.Migrations
PlexUsers.Insert(m); PlexUsers.Insert(m);
} }
}
catch (Exception e)
{
Logger.Fatal("Exception when migrating Version 1.10.0 (UpdatePlexUsers)");
Logger.Fatal(e);
}
} }
private void ResetLogLevel() private void ResetLogLevel()
{
try
{ {
var logSettings = Log.GetSettings(); var logSettings = Log.GetSettings();
logSettings.Level = LogLevel.Error.Ordinal; logSettings.Level = LogLevel.Error.Ordinal;
@ -221,8 +262,16 @@ namespace PlexRequests.Core.Migration.Migrations
LoggingHelper.ReconfigureLogLevel(LogLevel.FromOrdinal(logSettings.Level)); LoggingHelper.ReconfigureLogLevel(LogLevel.FromOrdinal(logSettings.Level));
} }
catch (Exception e)
{
Logger.Fatal("Exception when migrating Version 1.10.0 (ResetLogLvl)");
Logger.Fatal(e);
}
}
private void UpdateDb(IDbConnection con) private void UpdateDb(IDbConnection con)
{
try
{ {
// Create the two new columns // Create the two new columns
con.AlterTable("Users", "ADD", "Permissions", true, "INTEGER"); con.AlterTable("Users", "ADD", "Permissions", true, "INTEGER");
@ -243,9 +292,13 @@ namespace PlexRequests.Core.Migration.Migrations
{ {
return; return;
} }
var requestedModels = allRequests as RequestedModel[] ?? allRequests.ToArray(); var requestedModels = allRequests.ToList();
foreach (var req in requestedModels) foreach (var req in requestedModels)
{ {
if (string.IsNullOrEmpty(req.PosterPath))
{
continue;
}
if (req.PosterPath.Contains("https://image.tmdb.org/t/p/w150/")) if (req.PosterPath.Contains("https://image.tmdb.org/t/p/w150/"))
{ {
var newImg = req.PosterPath.Replace("https://image.tmdb.org/t/p/w150/", string.Empty); var newImg = req.PosterPath.Replace("https://image.tmdb.org/t/p/w150/", string.Empty);
@ -254,8 +307,16 @@ namespace PlexRequests.Core.Migration.Migrations
} }
RequestService.BatchUpdate(requestedModels); RequestService.BatchUpdate(requestedModels);
} }
catch (Exception e)
{
Logger.Fatal("Exception when migrating Version 1.10.0 (UpdateDb)");
Logger.Fatal(e);
}
}
private void UpdateAdmin() private void UpdateAdmin()
{
try
{ {
var users = UserRepo.GetAll().ToList(); var users = UserRepo.GetAll().ToList();
@ -274,5 +335,11 @@ namespace PlexRequests.Core.Migration.Migrations
UserRepo.UpdateAll(users); UserRepo.UpdateAll(users);
} }
catch (Exception e)
{
Logger.Fatal("Exception when migrating Version 1.10.0 (UpdateAdmin)");
Logger.Fatal(e);
}
}
} }
} }

View file

@ -49,42 +49,90 @@ namespace PlexRequests.Helpers.Analytics
public void TrackEvent(Category category, Action action, string label, string username, string clientId, int? value = null) public void TrackEvent(Category category, Action action, string label, string username, string clientId, int? value = null)
{ {
try
{
var cat = category.ToString(); var cat = category.ToString();
var act = action.ToString(); var act = action.ToString();
Track(HitType.@event, username, cat, act, label, clientId, value); Track(HitType.@event, username, cat, act, label, clientId, value);
} }
catch (Exception ex)
{
Log.Error(ex);
}
}
public async void TrackEventAsync(Category category, Action action, string label, string username, string clientId, int? value = null) public async void TrackEventAsync(Category category, Action action, string label, string username, string clientId, int? value = null)
{
try
{ {
var cat = category.ToString(); var cat = category.ToString();
var act = action.ToString(); var act = action.ToString();
await TrackAsync(HitType.@event, username, cat, act, clientId, label, value); await TrackAsync(HitType.@event, username, cat, act, clientId, label, value);
}
catch (Exception ex)
{
Log.Error(ex);
}
} }
public void TrackPageview(Category category, Action action, string label, string username, string clientId, int? value = null) public void TrackPageview(Category category, Action action, string label, string username, string clientId, int? value = null)
{
try
{ {
var cat = category.ToString(); var cat = category.ToString();
var act = action.ToString(); var act = action.ToString();
Track(HitType.@pageview, username, cat, act, clientId, label, value); Track(HitType.@pageview, username, cat, act, clientId, label, value);
}
catch (Exception ex)
{
Log.Error(ex);
}
} }
public async Task TrackPageviewAsync(Category category, Action action, string label, string username, string clientId, int? value = null) public async Task TrackPageviewAsync(Category category, Action action, string label, string username, string clientId, int? value = null)
{
try
{ {
var cat = category.ToString(); var cat = category.ToString();
var act = action.ToString(); var act = action.ToString();
await TrackAsync(HitType.@pageview, username, cat, act, clientId, label, value); await TrackAsync(HitType.@pageview, username, cat, act, clientId, label, value);
}
catch (Exception ex)
{
Log.Error(ex);
}
} }
public void TrackException(string message, string username, string clientId, bool fatal) public void TrackException(string message, string username, string clientId, bool fatal)
{ {
try
{
var fatalInt = fatal ? 1 : 0; var fatalInt = fatal ? 1 : 0;
Track(HitType.exception, message, fatalInt, username, clientId); Track(HitType.exception, message, fatalInt, username, clientId);
} }
catch (Exception ex)
{
Log.Error(ex);
}
}
public async Task TrackExceptionAsync(string message, string username, string clientId, bool fatal) public async Task TrackExceptionAsync(string message, string username, string clientId, bool fatal)
{ {
try
{
var fatalInt = fatal ? 1 : 0; var fatalInt = fatal ? 1 : 0;
await TrackAsync(HitType.exception, message, fatalInt, username, clientId); await TrackAsync(HitType.exception, message, fatalInt, username, clientId);
} }
catch (Exception ex)
{
Log.Error(ex);
}
}
private void Track(HitType type, string username, string category, string action, string clientId, string label, int? value = null) private void Track(HitType type, string username, string category, string action, string clientId, string label, int? value = null)
{ {

View file

@ -511,7 +511,7 @@ namespace PlexRequests.Services.Jobs
private void EndLoopHtml(StringBuilder sb) private void EndLoopHtml(StringBuilder sb)
{ {
sb.Append("<td"); sb.Append("</td>");
sb.Append("<hr>"); sb.Append("<hr>");
sb.Append("<br>"); sb.Append("<br>");
sb.Append("<br>"); sb.Append("<br>");

View file

@ -28,6 +28,8 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Threading.Tasks; using System.Threading.Tasks;
using MarkdownSharp; using MarkdownSharp;
using Nancy; using Nancy;
@ -118,10 +120,23 @@ namespace PlexRequests.UI.Modules.Admin
Analytics.TrackEventAsync(Category.Admin, PlexRequests.Helpers.Analytics.Action.Update, "AutoUpdate", Username, CookieHelper.GetAnalyticClientId(Cookies)); Analytics.TrackEventAsync(Category.Admin, PlexRequests.Helpers.Analytics.Action.Update, "AutoUpdate", Username, CookieHelper.GetAnalyticClientId(Cookies));
var url = Request.Form["url"]; var url = Request.Form["url"];
var args = (string)Request.Form["args"].ToString();
var lowered = args.ToLower();
var appPath = Path.Combine(Path.GetDirectoryName(Assembly.GetAssembly(typeof(SystemStatusModule)).Location ?? string.Empty) ?? string.Empty, "PlexRequests.Updater.exe");
if (!string.IsNullOrEmpty(lowered))
{
if (lowered.Contains("plexrequests.exe"))
{
lowered = lowered.Replace("plexrequests.exe", "");
}
}
var startArgs = string.IsNullOrEmpty(lowered) ? appPath : $"{lowered} Plexrequests.Updater.exe";
var startInfo = Type.GetType("Mono.Runtime") != null var startInfo = Type.GetType("Mono.Runtime") != null
? new ProcessStartInfo("mono PlexRequests.Updater.exe") { Arguments = url } ? new ProcessStartInfo(startArgs) { Arguments = $"{url} {lowered}", }
: new ProcessStartInfo("PlexRequests.Updater.exe") { Arguments = url }; : new ProcessStartInfo(startArgs) { Arguments = $"{url} {lowered}" };
Process.Start(startInfo); Process.Start(startInfo);

View file

@ -128,7 +128,7 @@ namespace PlexRequests.UI
private static void WriteOutVersion() private static void WriteOutVersion()
{ {
var assemblyVer = AssemblyHelper.GetProductVersion(); var assemblyVer = AssemblyHelper.GetFileVersion();
Log.Info($"Version: {assemblyVer}"); Log.Info($"Version: {assemblyVer}");
Console.WriteLine($"Version: {assemblyVer}"); Console.WriteLine($"Version: {assemblyVer}");
} }

View file

@ -41,7 +41,7 @@
<button id="clearLogs" type="submit" class="btn btn-danger-outline ">Clear Logs</button> <button id="clearLogs" type="submit" class="btn btn-danger-outline ">Clear Logs</button>
</form> </form>
<table id="example" class="table table-striped table-hover table-responsive"> <table id="logDatatable" class="table table-striped table-hover table-responsive">
<thead> <thead>
<tr> <tr>
<th>Message</th> <th>Message</th>
@ -63,7 +63,7 @@
var logsUrl = "/admin/loadlogs"; var logsUrl = "/admin/loadlogs";
var url = createBaseUrl(baseUrl, logsUrl); var url = createBaseUrl(baseUrl, logsUrl);
$('#example').DataTable({ $('#logDatatable').DataTable({
"ajax": url, "ajax": url,
"columns": [ "columns": [
{ "data": "message" }, { "data": "message" },
@ -147,5 +147,8 @@
}); });
$('body .dropdown-toggle').dropdown();
}); });
</script> </script>

View file

@ -57,7 +57,6 @@
<div class="form-group"> <div class="form-group">
<label for="ApiKey" class="control-label">Api Key</label> <label for="ApiKey" class="control-label">Api Key</label>
<div class="input-group"> <div class="input-group">
<input type="text" hidden="hidden" name="ApiKey" value="@Model.ApiKey"/>
<input type="text" readonly="readonly" class="form-control form-control-custom" id="ApiKey" name="ApiKey" value="@Model.ApiKey"> <input type="text" readonly="readonly" class="form-control form-control-custom" id="ApiKey" name="ApiKey" value="@Model.ApiKey">
<div class="input-group-addon"> <div class="input-group-addon">

View file

@ -50,6 +50,8 @@
{ {
<label class="control-label"><a href="@Model.Status.UpdateUri" target="_blank"><i class="fa fa-check"></i></a></label> <label class="control-label"><a href="@Model.Status.UpdateUri" target="_blank"><i class="fa fa-check"></i></a></label>
<br /> <br />
<input id="args" class="form-control form-control-custom " placeholder="optional launch arguments e.g. /etc/mono /opt/PlexRequests.exe">
<br/>
<button id="autoUpdate" class="btn btn-success-outline">Automatic Update (beta) <i class="fa fa-download"></i></button> <button id="autoUpdate" class="btn btn-success-outline">Automatic Update (beta) <i class="fa fa-download"></i></button>
} }
else else
@ -92,7 +94,10 @@
$.ajax({ $.ajax({
type: "Post", type: "Post",
url: "autoupdate", url: "autoupdate",
data: { url: "@Model.Status.DownloadUri" }, data: {
url: "@Model.Status.DownloadUri",
args: $('#args').val()
},
dataType: "json", dataType: "json",
error: function () { error: function () {
setTimeout( setTimeout(

View file

@ -8,7 +8,14 @@ namespace PlexRequests.Updater
{ {
Console.WriteLine ("Starting PlexRequests .Net updater"); Console.WriteLine ("Starting PlexRequests .Net updater");
var s = new Updater(); var s = new Updater();
s.Start(args[0]); if (args.Length >= 2)
{
s.Start(args[0], args[1]);
}
else
{
s.Start(args[0], string.Empty);
}
} }
} }
} }

View file

@ -29,6 +29,7 @@ using System.Diagnostics;
using System.IO; using System.IO;
using System.IO.Compression; using System.IO.Compression;
using System.Net; using System.Net;
using System.Reflection;
using System.Windows.Forms; using System.Windows.Forms;
namespace PlexRequests.Updater namespace PlexRequests.Updater
@ -67,7 +68,7 @@ namespace PlexRequests.Updater
} }
} }
public void Start(string downloadPath) public void Start(string downloadPath, string launchOptions)
{ {
try try
{ {
@ -79,6 +80,10 @@ namespace PlexRequests.Updater
Console.WriteLine("Downloading new version"); Console.WriteLine("Downloading new version");
using (var client = new WebClient()) using (var client = new WebClient())
{ {
client.DownloadProgressChanged += (s, e) =>
{
Console.WriteLine($"{e.ProgressPercentage}%");
};
client.DownloadFile(downloadPath, TempPath); client.DownloadFile(downloadPath, TempPath);
} }
Console.WriteLine("Downloaded!"); Console.WriteLine("Downloaded!");
@ -130,7 +135,7 @@ namespace PlexRequests.Updater
RestoreBackup(); RestoreBackup();
} }
FinishUpdate(); FinishUpdate(launchOptions);
} }
} }
@ -139,8 +144,9 @@ namespace PlexRequests.Updater
Console.WriteLine("Backing up the current version"); Console.WriteLine("Backing up the current version");
try try
{ {
var dir = Directory.CreateDirectory("BackupSystem"); var applicationPath = Path.GetDirectoryName(Assembly.GetAssembly(typeof(Updater)).Location ?? string.Empty) ?? string.Empty;
var applicationPath = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath));
var dir = Directory.CreateDirectory(Path.Combine(applicationPath, "BackupSystem"));
var allfiles = Directory.GetFiles(applicationPath, "*.*", SearchOption.AllDirectories); var allfiles = Directory.GetFiles(applicationPath, "*.*", SearchOption.AllDirectories);
BackupPath = Path.Combine(dir.FullName, "PlexRequestsBackup.zip"); BackupPath = Path.Combine(dir.FullName, "PlexRequestsBackup.zip");
@ -179,7 +185,9 @@ namespace PlexRequests.Updater
{ {
try try
{ {
return Directory.CreateDirectory("UpdateTemp"); var location = Path.GetDirectoryName(Assembly.GetAssembly(typeof(Updater)).Location ?? string.Empty);
var path = Path.Combine(location, "UpdateTemp");
return Directory.CreateDirectory(path);
} }
catch (Exception e) catch (Exception e)
{ {
@ -190,12 +198,10 @@ namespace PlexRequests.Updater
} }
} }
private void FinishUpdate() private void FinishUpdate(string launchOptions)
{ {
ProcessStartInfo startInfo; var args = Error ? "-u 2" : "-u 1";
startInfo = Type.GetType("Mono.Runtime") != null var startInfo = new ProcessStartInfo($"{launchOptions}PlexRequests.exe") { Arguments = args, UseShellExecute = true };
? new ProcessStartInfo("mono PlexRequests.exe") { Arguments = Error ? "-u 2" : "-u 1" }
: new ProcessStartInfo("PlexRequests.exe") { Arguments = Error ? "-u 2" : "-u 1" };
Process.Start(startInfo); Process.Start(startInfo);

View file

@ -9,8 +9,6 @@ ____
[![Github All Releases](https://img.shields.io/github/downloads/tidusjar/PlexRequests.net/total.svg)](https://github.com/tidusjar/PlexRequests.Net) [![Github All Releases](https://img.shields.io/github/downloads/tidusjar/PlexRequests.net/total.svg)](https://github.com/tidusjar/PlexRequests.Net)
[![Stories in Progress](https://badge.waffle.io/tidusjar/PlexRequests.Net.svg?label=in progress&title=In Progress)](http://waffle.io/tidusjar/PlexRequests.Net) [![Stories in Progress](https://badge.waffle.io/tidusjar/PlexRequests.Net.svg?label=in progress&title=In Progress)](http://waffle.io/tidusjar/PlexRequests.Net)
This is based off [Plex Requests by lokenx](https://github.com/lokenx/plexrequests-meteor) so big props to that guy!
I wanted to write a similar application in .Net!
# Features # Features
Here some of the features Plex Requests.Net has: Here some of the features Plex Requests.Net has: