Skip to content

Commit 326a459

Browse files
committed
New release v1.3.0.3
support for mfkey32 keyrecovery for RevG rev2 / Chameleon Tiny fw-based devices @grspy
1 parent 15919c4 commit 326a459

File tree

7 files changed

+47
-44
lines changed

7 files changed

+47
-44
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
44

55
## [unreleased]
66

7+
## [1.3.0.3] - 2020-05-19
8+
- Enable mfkey32 key recovery for RevG rev2 / Chameleon Tiny (@grspy)
9+
- Support for RevG - rev2 / Chameleon Tiny 's mfkey data format. (@grspy)
10+
711
## [1.3.0.2] - 2020-03-10
812
- tab serial: sorted command list, use a arrow pointer, a light background color. (@iceman1001)
913

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

ChameleonMiniGUI/App.config

+36-36
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<configuration>
3-
<configSections>
4-
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
5-
<section name="ChameleonMiniGUI.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
6-
</sectionGroup>
7-
</configSections>
8-
<startup>
9-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
10-
</startup>
11-
<appSettings>
12-
<add key="BOOTLOADER_EXE" value="BOOT_LOADER_EXE.exe" />
13-
<add key="BOOTLOADER_PATH" value="Extras\" />
14-
<add key="FLASH_BINARY" value="myfile.bin" />
15-
<add key="EEPROM_BINARY" value="myfilee.bin" />
16-
<add key="AVRDUDE_EXE" value="avrdude.exe" />
17-
<add key="REVG_FLASH_HEX" value="Chameleon-RevG.hex" />
18-
<add key="REVG_EEPROM_HEX" value="Chameleon-RevG.eep" />
19-
<add key="ClientSettingsProvider.ServiceUri" value="" />
20-
</appSettings>
21-
<userSettings>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<configSections>
4+
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
5+
<section name="ChameleonMiniGUI.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
6+
</sectionGroup>
7+
</configSections>
8+
<startup>
9+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
10+
</startup>
11+
<appSettings>
12+
<add key="BOOTLOADER_EXE" value="BOOT_LOADER_EXE.exe" />
13+
<add key="BOOTLOADER_PATH" value="Extras\" />
14+
<add key="FLASH_BINARY" value="myfile.bin" />
15+
<add key="EEPROM_BINARY" value="myfilee.bin" />
16+
<add key="AVRDUDE_EXE" value="avrdude.exe" />
17+
<add key="REVG_FLASH_HEX" value="Chameleon-RevG.hex" />
18+
<add key="REVG_EEPROM_HEX" value="Chameleon-RevG.eep" />
19+
<add key="ClientSettingsProvider.ServiceUri" value="" />
20+
</appSettings>
21+
<userSettings>
2222
<ChameleonMiniGUI.Properties.Settings>
2323
<setting name="DownloadDumpPath" serializeAs="String">
2424
<value />
@@ -33,20 +33,20 @@
3333
<value>4000</value>
3434
</setting>
3535
<setting name="version" serializeAs="String">
36-
<value>v1.3.0.2</value>
36+
<value>v1.3.0.3</value>
3737
</setting>
38-
</ChameleonMiniGUI.Properties.Settings>
39-
</userSettings>
40-
<system.web>
41-
<membership defaultProvider="ClientAuthenticationMembershipProvider">
42-
<providers>
43-
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
44-
</providers>
45-
</membership>
46-
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
47-
<providers>
48-
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
49-
</providers>
50-
</roleManager>
51-
</system.web>
38+
</ChameleonMiniGUI.Properties.Settings>
39+
</userSettings>
40+
<system.web>
41+
<membership defaultProvider="ClientAuthenticationMembershipProvider">
42+
<providers>
43+
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
44+
</providers>
45+
</membership>
46+
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
47+
<providers>
48+
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
49+
</providers>
50+
</roleManager>
51+
</system.web>
5252
</configuration>

ChameleonMiniGUI/ChameleonMiniGUI.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<MinimumRequiredVersion>1.2.1.0</MinimumRequiredVersion>
3434
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
3535
<WebPage>publish.htm</WebPage>
36-
<ApplicationRevision>3</ApplicationRevision>
36+
<ApplicationRevision>4</ApplicationRevision>
3737
<ApplicationVersion>1.3.0.%2a</ApplicationVersion>
3838
<UseApplicationTrust>false</UseApplicationTrust>
3939
<CreateDesktopShortcut>true</CreateDesktopShortcut>

ChameleonMiniGUI/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.3.0.2")]
36-
[assembly: AssemblyFileVersion("1.3.0.2")]
35+
[assembly: AssemblyVersion("1.3.0.3")]
36+
[assembly: AssemblyFileVersion("1.3.0.3")]

ChameleonMiniGUI/Properties/Settings.Designer.cs

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ChameleonMiniGUI/Properties/Settings.settings

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<Value Profile="(Default)">4000</Value>
1616
</Setting>
1717
<Setting Name="version" Type="System.String" Scope="User">
18-
<Value Profile="(Default)">v1.3.0.2</Value>
18+
<Value Profile="(Default)">v1.3.0.3</Value>
1919
</Setting>
2020
</Settings>
2121
</SettingsFile>

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You find the [changelog](https://github.com/iceman1001/ChameleonMini-rebootedGUI
2424
## Binary distribution / windows installer
2525
For the sake of easiness or for those who can't compile this project there is a _click-once deployment_ installation located here.
2626

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

2929
__Prerequisite__
3030
* dot.net 4.6.2

0 commit comments

Comments
 (0)