Skip to content

Commit

Permalink
Merge pull request #24 from Tygo-bear/testing
Browse files Browse the repository at this point in the history
v1.0.1.7 release
  • Loading branch information
Tygo-bear committed Aug 5, 2020
2 parents d11a458 + e2ab919 commit d42649e
Show file tree
Hide file tree
Showing 42 changed files with 1,839 additions and 538 deletions.
24 changes: 22 additions & 2 deletions MultiBoard/MultiBoard.sln
@@ -1,12 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.329
# Visual Studio Version 16
VisualStudioVersion = 16.0.29519.181
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiBoard", "MultiBoard\MultiBoard.csproj", "{7B223EAE-F106-420F-8106-810FCD472B83}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoHotkey.Interop", "..\AutoHotkey.Interop-master\src\AutoHotkey.Interop\AutoHotkey.Interop.csproj", "{2869DBFE-7762-4930-95EA-2B0C111CF353}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiBoardKeyboard", "MultiBoardKeyboard\MultiBoardKeyboard.csproj", "{641262A6-B2C8-4D7F-B394-030DC5E9302D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiBoardHeadless", "MultiBoardHeadless\MultiBoardHeadless.csproj", "{0C722BB1-45F5-425B-B8A9-59C97F2F9CE8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -31,6 +35,22 @@ Global
{2869DBFE-7762-4930-95EA-2B0C111CF353}.Release|Any CPU.Build.0 = Release|Any CPU
{2869DBFE-7762-4930-95EA-2B0C111CF353}.Release|x64.ActiveCfg = Release|x64
{2869DBFE-7762-4930-95EA-2B0C111CF353}.Release|x64.Build.0 = Release|x64
{641262A6-B2C8-4D7F-B394-030DC5E9302D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{641262A6-B2C8-4D7F-B394-030DC5E9302D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{641262A6-B2C8-4D7F-B394-030DC5E9302D}.Debug|x64.ActiveCfg = Debug|Any CPU
{641262A6-B2C8-4D7F-B394-030DC5E9302D}.Debug|x64.Build.0 = Debug|Any CPU
{641262A6-B2C8-4D7F-B394-030DC5E9302D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{641262A6-B2C8-4D7F-B394-030DC5E9302D}.Release|Any CPU.Build.0 = Release|Any CPU
{641262A6-B2C8-4D7F-B394-030DC5E9302D}.Release|x64.ActiveCfg = Release|Any CPU
{641262A6-B2C8-4D7F-B394-030DC5E9302D}.Release|x64.Build.0 = Release|Any CPU
{0C722BB1-45F5-425B-B8A9-59C97F2F9CE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0C722BB1-45F5-425B-B8A9-59C97F2F9CE8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0C722BB1-45F5-425B-B8A9-59C97F2F9CE8}.Debug|x64.ActiveCfg = Debug|Any CPU
{0C722BB1-45F5-425B-B8A9-59C97F2F9CE8}.Debug|x64.Build.0 = Debug|Any CPU
{0C722BB1-45F5-425B-B8A9-59C97F2F9CE8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0C722BB1-45F5-425B-B8A9-59C97F2F9CE8}.Release|Any CPU.Build.0 = Release|Any CPU
{0C722BB1-45F5-425B-B8A9-59C97F2F9CE8}.Release|x64.ActiveCfg = Release|Any CPU
{0C722BB1-45F5-425B-B8A9-59C97F2F9CE8}.Release|x64.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
12 changes: 6 additions & 6 deletions MultiBoard/MultiBoard/App.config
@@ -1,20 +1,20 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="MultiBoard.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="MultiBoard.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
</startup>
<userSettings>
<MultiBoard.Properties.Settings>
<setting name="FileOpen_LastLocation" serializeAs="String">
<value>c:\</value>
</setting>
<setting name="ErrorList" serializeAs="String">
<value />
<value/>
</setting>
<setting name="ThreadPriority" serializeAs="String">
<value>6</value>
Expand All @@ -33,4 +33,4 @@
</setting>
</MultiBoard.Properties.Settings>
</userSettings>
</configuration>
</configuration>
5 changes: 3 additions & 2 deletions MultiBoard/MultiBoard/ErrorSystem/ErrorMangePanel.Designer.cs

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

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

0 comments on commit d42649e

Please sign in to comment.