-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecated the PHP server side application and fixed bug where files …
…download via the Android app are skipped
- Loading branch information
Showing
16 changed files
with
6,464 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
Changelog | ||
===== | ||
## v1.0.0.1 (01-12-2015) | ||
* Fixed bug where files will not download | ||
* PHP version is now deprecated. (Special characters will not function at all with PHP) | ||
|
||
## v1.0.0.0 (01-10-2015) | ||
* Initial Release |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
|
||
namespace MusicSync | ||
{ | ||
public partial class IPDialog : Form | ||
{ | ||
private string dialogMessage; | ||
private string dialogTitle = "Server IP"; | ||
|
||
public IPDialog(string message, string title) | ||
{ | ||
dialogMessage = message; | ||
dialogTitle = title; | ||
InitializeComponent(); | ||
} | ||
|
||
private void IPDialog_Load(object sender, EventArgs e) | ||
{ | ||
mainTextBox.Text = dialogMessage; | ||
this.Text = dialogTitle; | ||
} | ||
|
||
private void closeButton_Click(object sender, EventArgs e) | ||
{ | ||
this.Close(); | ||
} | ||
} | ||
} |
Oops, something went wrong.