Skip to content

Commit

Permalink
Deprecated the PHP server side application and fixed bug where files …
Browse files Browse the repository at this point in the history
…download via the Android app are skipped
  • Loading branch information
Wassup789 committed Jan 12, 2016
1 parent c905539 commit 5651ea2
Show file tree
Hide file tree
Showing 16 changed files with 6,464 additions and 35 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
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
83 changes: 83 additions & 0 deletions desktop/c#/app/Music Sync/IPDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions desktop/c#/app/Music Sync/IPDialog.cs
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();
}
}
}
Loading

0 comments on commit 5651ea2

Please sign in to comment.