Skip to content

Commit

Permalink
Release 0.5.4.3 - Removed the annoying Message Dialog in the uploader.
Browse files Browse the repository at this point in the history
Added application setting for Autorun emulator (and a new Settings menu).
Added application setting for the board revision. Clicking on the board tool, in the status strip saves this automatically.
When a user loads a Watch List, display the form, if it isn't shown.
  • Loading branch information
dtremblay committed Mar 27, 2021
1 parent 2fc894e commit 460a784
Show file tree
Hide file tree
Showing 14 changed files with 25,424 additions and 29 deletions.
15 changes: 15 additions & 0 deletions Main/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
<?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="FoenixIDE.Simulator.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" />
</startup>
<userSettings>
<FoenixIDE.Simulator.Properties.Settings>
<setting name="Autorun" serializeAs="String">
<value>True</value>
</setting>
<setting name="BoardRevision" serializeAs="String">
<value>C</value>
</setting>
</FoenixIDE.Simulator.Properties.Settings>
</userSettings>
</configuration>
2 changes: 2 additions & 0 deletions Main/FoenixIDE.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,12 @@
</ItemGroup>
<ItemGroup>
<Content Include="icon.ico" />
<None Include="Resources\kernel_U_Plus.hex" />
<None Include="UI\Images\memory-btn.png" />
<None Include="UI\Images\delete-btn.png" />
<None Include="Resources\foenix-96x96.png" />
<None Include="Resources\DeleteButton.png" />
<None Include="Resources\kernel_U_Plus.lst" />
<Content Include="Resources\PET-ASCII.png" />
</ItemGroup>
<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions Main/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("C256 Foenix")]
[assembly: AssemblyProduct("FoenixIDE")]
[assembly: AssemblyCopyright("Copyright © 2020")]
[assembly: AssemblyCopyright("Copyright © 2020-2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.5.4.2")]
[assembly: AssemblyFileVersion("0.5.4.2")]
[assembly: AssemblyVersion("0.5.4.3")]
[assembly: AssemblyFileVersion("0.5.4.3")]
34 changes: 34 additions & 0 deletions Main/Properties/Resources.Designer.cs

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

6 changes: 6 additions & 0 deletions Main/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@
<data name="delete_btn" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\UI\Images\delete-btn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="kernel_U_Plus_Hex" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\kernel_U_Plus.hex;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="kernel_U_Plus_Lst" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\kernel_U_Plus.lst;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
<data name="memory_btn" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\UI\Images\memory-btn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
Expand Down
24 changes: 24 additions & 0 deletions Main/Properties/Settings.Designer.cs

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

17 changes: 11 additions & 6 deletions Main/Properties/Settings.settings
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="FoenixIDE.Simulator.Properties" GeneratedClassName="Settings">
<Profiles />
<Settings>
<Setting Name="Autorun" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="BoardRevision" Type="System.String" Scope="User">
<Value Profile="(Default)">C</Value>
</Setting>
</Settings>
</SettingsFile>
Loading

0 comments on commit 460a784

Please sign in to comment.