-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from code-orchestra/rpc
version for colt 1.1 beta
- Loading branch information
Showing
17 changed files
with
976 additions
and
148 deletions.
There are no files selected for viewing
Binary file not shown.
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,27 @@ | ||
namespace ColtPlugin | ||
{ | ||
public class COLTRemoteProject | ||
{ | ||
public string parentIDEProjectPath; | ||
|
||
public string path; | ||
public string name; | ||
|
||
public string[] sources; | ||
public string[] libraries; | ||
public string[] assets; | ||
|
||
public string htmlTemplateDir; | ||
|
||
public string flashPlayerPath; | ||
public string flexSDKPath; | ||
public string customConfigPath; | ||
|
||
public string mainClass; | ||
|
||
public string outputFileName; | ||
public string outputPath; | ||
public string targetPlayerVersion; | ||
public string compilerOptions; | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
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,38 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Text; | ||
using System.Windows.Forms; | ||
|
||
namespace ColtPlugin.Forms | ||
{ | ||
public partial class FirstTimeDialog : Form | ||
{ | ||
public Boolean AutoRun = true; | ||
public Boolean InterceptBuilds = false; | ||
public String ShortCode = null; | ||
|
||
public FirstTimeDialog() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
public FirstTimeDialog(Boolean interceptBuilds, Boolean autorun) | ||
{ | ||
InitializeComponent(); | ||
InterceptBuilds = checkBox1.Checked = interceptBuilds; | ||
AutoRun = checkBox2.Checked = autorun; | ||
} | ||
|
||
private void button1_Click(object sender, EventArgs e) | ||
{ | ||
AutoRun = checkBox2.Checked; | ||
InterceptBuilds = checkBox1.Checked; | ||
ShortCode = textBox1.Text; | ||
|
||
Close(); | ||
} | ||
} | ||
} |
Oops, something went wrong.