cemu-DS4Windows/DS4Tool/Hotkeys.cs
jays2kings 107d71ef04 Auto Profiles are live(beta) - Automatically load profiles when starting up certain programs or games.
DS4Tool.exe merged with it's dll's, now named DS4Windows.exe
Settings tab - Hide DS4, Run at start up, Change update rate or disable it all together, turn off notifications and more there
 there
When battery is low and starts flashing, it will not continue to flash when charging
Possible fix for memory leak
Small UI changes such as not being able to edit the text in combo boxes
Spelling fixes
Updater: Now doesn't need admin rights to run, DS4Windows will try to start the updater with admin permissions if DS4Windows is located in an admin folder like program files, also renamed DS4Updater.exe. The old updater will automatically be deleted
2014-06-06 16:38:52 -04:00

52 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using DS4Control;
using System.Net;
using System.IO;
namespace ScpServer
{
public partial class Hotkeys : Form
{
ScpForm form;
public Hotkeys(ScpForm main)
{
form = main;
InitializeComponent();
lbAbout.Text += Global.getVersion().ToString() + ")";
}
private void button1_Click(object sender, EventArgs e)
{
this.Close();
}
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://code.google.com/r/jays2kings-ds4tool/source/list?name=jay");
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://code.google.com/r/brianfundakowskifeldman-ds4windows/");
}
private void linkInhexSTER_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://code.google.com/p/ds4-tool/");
}
private void linkJhebbel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://code.google.com/r/jhebbel-ds4tool/source/browse/");
}
}
}