Skip to content

Commit

Permalink
New release v1.3.0.3
Browse files Browse the repository at this point in the history
support for mfkey32 keyrecovery for RevG rev2 / Chameleon Tiny fw-based devices @grspy
  • Loading branch information
iceman1001 committed May 19, 2020
1 parent 15919c4 commit 326a459
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 44 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac

## [unreleased]

## [1.3.0.3] - 2020-05-19
- Enable mfkey32 key recovery for RevG rev2 / Chameleon Tiny (@grspy)
- Support for RevG - rev2 / Chameleon Tiny 's mfkey data format. (@grspy)

## [1.3.0.2] - 2020-03-10
- tab serial: sorted command list, use a arrow pointer, a light background color. (@iceman1001)


## [1.3.0.1] - 2020-03-10
- rectified minimum version error introduced in 1.3.0.0 (@iceman1001)

Expand Down
72 changes: 36 additions & 36 deletions ChameleonMiniGUI/App.config
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
<?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="ChameleonMiniGUI.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.5.2" />
</startup>
<appSettings>
<add key="BOOTLOADER_EXE" value="BOOT_LOADER_EXE.exe" />
<add key="BOOTLOADER_PATH" value="Extras\" />
<add key="FLASH_BINARY" value="myfile.bin" />
<add key="EEPROM_BINARY" value="myfilee.bin" />
<add key="AVRDUDE_EXE" value="avrdude.exe" />
<add key="REVG_FLASH_HEX" value="Chameleon-RevG.hex" />
<add key="REVG_EEPROM_HEX" value="Chameleon-RevG.eep" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>
<userSettings>
<?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="ChameleonMiniGUI.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.5.2" />
</startup>
<appSettings>
<add key="BOOTLOADER_EXE" value="BOOT_LOADER_EXE.exe" />
<add key="BOOTLOADER_PATH" value="Extras\" />
<add key="FLASH_BINARY" value="myfile.bin" />
<add key="EEPROM_BINARY" value="myfilee.bin" />
<add key="AVRDUDE_EXE" value="avrdude.exe" />
<add key="REVG_FLASH_HEX" value="Chameleon-RevG.hex" />
<add key="REVG_EEPROM_HEX" value="Chameleon-RevG.eep" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>
<userSettings>
<ChameleonMiniGUI.Properties.Settings>
<setting name="DownloadDumpPath" serializeAs="String">
<value />
Expand All @@ -33,20 +33,20 @@
<value>4000</value>
</setting>
<setting name="version" serializeAs="String">
<value>v1.3.0.2</value>
<value>v1.3.0.3</value>
</setting>
</ChameleonMiniGUI.Properties.Settings>
</userSettings>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
</ChameleonMiniGUI.Properties.Settings>
</userSettings>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
</configuration>
2 changes: 1 addition & 1 deletion ChameleonMiniGUI/ChameleonMiniGUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<MinimumRequiredVersion>1.2.1.0</MinimumRequiredVersion>
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
<WebPage>publish.htm</WebPage>
<ApplicationRevision>3</ApplicationRevision>
<ApplicationRevision>4</ApplicationRevision>
<ApplicationVersion>1.3.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
Expand Down
4 changes: 2 additions & 2 deletions ChameleonMiniGUI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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("1.3.0.2")]
[assembly: AssemblyFileVersion("1.3.0.2")]
[assembly: AssemblyVersion("1.3.0.3")]
[assembly: AssemblyFileVersion("1.3.0.3")]
4 changes: 2 additions & 2 deletions ChameleonMiniGUI/Properties/Settings.Designer.cs

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

2 changes: 1 addition & 1 deletion ChameleonMiniGUI/Properties/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Value Profile="(Default)">4000</Value>
</Setting>
<Setting Name="version" Type="System.String" Scope="User">
<Value Profile="(Default)">v1.3.0.2</Value>
<Value Profile="(Default)">v1.3.0.3</Value>
</Setting>
</Settings>
</SettingsFile>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ You find the [changelog](https://github.com/iceman1001/ChameleonMini-rebootedGUI
## Binary distribution / windows installer
For the sake of easiness or for those who can't compile this project there is a _click-once deployment_ installation located here.

Release: [v1.3.0.2](http://www.icesql.se/download/ChameleonMiniGUI/publish.htm)
Release: [v1.3.0.3](http://www.icesql.se/download/ChameleonMiniGUI/publish.htm)

__Prerequisite__
* dot.net 4.6.2
Expand Down

0 comments on commit 326a459

Please sign in to comment.