we can actually get a quick connect code now, and authenticating by username and password works!

This commit is contained in:
random() 2025-05-13 13:16:58 -06:00
parent 55e3babc5b
commit d5017d32ba
96 changed files with 381 additions and 724 deletions

View file

@ -97,6 +97,27 @@ namespace JellyfinRPC
private void button5_Click(object sender, EventArgs e)
{
ConfigManager.SetEntry("ServerURL", textBox5.Text);
JellyfinAPI.GetTokenFromUsernameAndPassword(Username: textBox6.Text, Password: maskedTextBox2.Text);
}
private void textBox4_MouseHover(object sender, EventArgs e)
{
toolTip1.Show("Format like https://mydomain.local.", textBox4, textBox4.PointToClient(textBox4.Location).X + 30, textBox4.PointToClient(textBox4.Location).Y + 90, 2000);
}
private void textBox4_MouseEnter(object sender, EventArgs e)
{
}
private void textBox5_MouseHover(object sender, EventArgs e)
{
toolTip1.Show("Format like https://mydomain.local.", textBox5, textBox5.PointToClient(textBox5.Location).X + 30, textBox5.PointToClient(textBox5.Location).Y + 90, 2000);
}
private void textBox1_MouseHover(object sender, EventArgs e)
{
toolTip1.Show("Format like https://mydomain.local.", textBox1, textBox1.PointToClient(textBox1.Location).X + 30, textBox1.PointToClient(textBox1.Location).Y + 90, 2000);
}
}
}