quite a bit, too much to summarize here
This commit is contained in:
parent
24845b6b52
commit
5f22d25559
336 changed files with 171740 additions and 351 deletions
|
@ -7,8 +7,9 @@ using System.Drawing;
|
|||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using System.Net.Http;
|
||||
|
||||
namespace WindowsFormsApplication2
|
||||
namespace JellyfinRPC
|
||||
{
|
||||
public partial class ConfigForm : Form
|
||||
{
|
||||
|
@ -46,13 +47,16 @@ namespace WindowsFormsApplication2
|
|||
this.Close();
|
||||
}
|
||||
|
||||
private void ConfigForm_Load(object sender, EventArgs e)
|
||||
static string quickConnectLabel;
|
||||
private async void ConfigForm_Load(object sender, EventArgs e)
|
||||
{
|
||||
textBox1.Text = ConfigManager.GetEntry("ServerURL");
|
||||
textBox2.Text = ConfigManager.GetEntry("UserID");
|
||||
maskedTextBox1.Text = ConfigManager.GetEntry("APIKey");
|
||||
textBox4.Text = ConfigManager.GetEntry("ServerURL");
|
||||
textBox5.Text = ConfigManager.GetEntry("ServerURL");
|
||||
quickConnectLabel = await JellyfinAPI.SendQuickConnectRequest();
|
||||
label9.Text = quickConnectLabel;
|
||||
}
|
||||
|
||||
private void label4_Click(object sender, EventArgs e)
|
||||
|
@ -77,7 +81,7 @@ namespace WindowsFormsApplication2
|
|||
|
||||
private void button4_Click(object sender, EventArgs e)
|
||||
{
|
||||
ConfigManager.SetEntry("ServerURL", textBox4.Text);
|
||||
ConfigManager.SetEntry("ServerURL", textBox4.Text);
|
||||
}
|
||||
|
||||
private void label6_Click(object sender, EventArgs e)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue