Skip to content

Commit

Permalink
Merge pull request #9 from code-orchestra/rpc
Browse files Browse the repository at this point in the history
version for colt 1.1 beta
  • Loading branch information
makc committed Jun 17, 2013
2 parents 5bc0e6d + 31bb2b4 commit d3a6e1f
Show file tree
Hide file tree
Showing 17 changed files with 976 additions and 148 deletions.
Binary file added ColtPlugin.fdz
Binary file not shown.
27 changes: 27 additions & 0 deletions ColtPlugin/COLTRemoteProject.cs
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;
}
}
28 changes: 28 additions & 0 deletions ColtPlugin/ColtPlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,36 @@
</Target>
-->
<ItemGroup>
<Reference Include="Jayrock.Json">
<HintPath>jayrock\Jayrock.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.DirectoryServices" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web.Services" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.XML" />
</ItemGroup>
<ItemGroup>
<Compile Include="Forms\FirstTimeDialog.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Forms\FirstTimeDialog.Designer.cs">
<DependentUpon>FirstTimeDialog.cs</DependentUpon>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Rpc\AppStarter.cs" />
<Compile Include="COLTRemoteProject.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PluginMain.cs" />
<Compile Include="Resources\LocaleHelper.cs" />
<Compile Include="Rpc\JsonRpcClient.cs" />
<Compile Include="Settings.cs" />
</ItemGroup>
<ItemGroup>
Expand All @@ -99,6 +117,13 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Forms\FirstTimeDialog.resx">
<DependentUpon>FirstTimeDialog.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Include="Resources\en_US.resX">
<SubType>Designer</SubType>
</EmbeddedResource>
Expand Down Expand Up @@ -146,4 +171,7 @@
<EmbeddedResource Include="Resources\colt_run.png" />
<EmbeddedResource Include="Resources\colt_save.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\colt_banner.png" />
</ItemGroup>
</Project>
50 changes: 0 additions & 50 deletions ColtPlugin/ColtPlugin.sln

This file was deleted.

136 changes: 136 additions & 0 deletions ColtPlugin/Forms/FirstTimeDialog.Designer.cs

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

38 changes: 38 additions & 0 deletions ColtPlugin/Forms/FirstTimeDialog.cs
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();
}
}
}
Loading

0 comments on commit d3a6e1f

Please # to comment.