Skip to content

Commit

Permalink
v2.7 release! 💯
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakKemble committed Jan 22, 2019
1 parent b16e79f commit 7beecc5
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 6 deletions.
11 changes: 11 additions & 0 deletions Changelog.txt
@@ -1,3 +1,14 @@
2019-01-22 (v2.7):
- Added Polish translation
- Added Chinese translation
- Added AVRDUDE support for ATmega328PB
- Added displaying MCU signature near to the flash and EEPROM sizes
- Fixed being unable to load xml file in the fuse bit selector window in Linux
- Fixed flash and EEPROM file operation only being able to verify when a language other than English is chosen
- All configuration settings are now saved across sessions instead of only the last selected preset
- Window size is now saved across sessions
- Use save file dialog when appropriate instead of only using an open file dialog

2018-09-20 (v2.6):
- Fetch a different XML file when checking for updates as older versions of AVRDUDESS don't like the new format

Expand Down
1 change: 1 addition & 0 deletions TODO.txt
Expand Up @@ -5,3 +5,4 @@ Add: Simple UI mode
Add: Options to run external programs before and after running AVRDUDE
Add: Accept the same command line arguments as AVRDUDE, which will then be applied to the UI
Fix: High verbosity level resulting in slow programming caused by slow console output
Fix: When auto-detecting MCU have a better guess at what programming interface to use (at the moment it only uses ISP or bootloader)
4 changes: 2 additions & 2 deletions installer/avrdudess.iss
Expand Up @@ -3,12 +3,12 @@

#define MyAppName "AVRDUDESS"
#define MyAppDescription "A GUI for AVRDUDE"
#define MyAppVersion "2.6"
#define MyAppVersion "2.7"
#define MyAppPublisher "Zak Kemble"
#define MyAppURL "http://zakkemble.net/"
#define MyAppExeName "avrdudess.exe"
#define MyAppContact "contact@zakkemble.net"
#define MyAppCopyright "Copyright © 2018 Zak Kemble"
#define MyAppCopyright "Copyright © 2019 Zak Kemble"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
Expand Down
33 changes: 32 additions & 1 deletion src/avrdudess/Files/config.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<ConfigData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<configVersion>1</configVersion>
<preset>Default</preset>
<updateCheck>0</updateCheck>
<skipVersion>
<Major>0</Major>
Expand All @@ -18,4 +17,36 @@
<language>english</language>
<hiddenMCUs />
<hiddenProgrammers />
<previousSettings>
<programmer />
<mcu />
<port />
<baud />
<bitclock />
<flashFile />
<flashFormat>a</flashFormat>
<flashOp>w</flashOp>
<EEPROMFile />
<EEPROMFormat>a</EEPROMFormat>
<EEPROMOp>w</EEPROMOp>
<force>false</force>
<disableVerify>false</disableVerify>
<disableFlashErase>false</disableFlashErase>
<eraseFlashAndEEPROM>false</eraseFlashAndEEPROM>
<doNotWrite>false</doNotWrite>
<lfuse />
<hfuse />
<efuse />
<setFuses>false</setFuses>
<lockBits />
<setLock>false</setLock>
<additional />
<verbosity>0</verbosity>
<name />
</previousSettings>
<usePreviousSettings>true</usePreviousSettings>
<windowSize>
<Width>0</Width>
<Height>0</Height>
</windowSize>
</ConfigData>
6 changes: 3 additions & 3 deletions src/avrdudess/Properties/AssemblyInfo.cs
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Zak Kemble")]
[assembly: AssemblyProduct("AVRDUDESS")]
[assembly: AssemblyCopyright("Copyright © 2018 Zak Kemble")]
[assembly: AssemblyCopyright("Copyright © 2019 Zak Kemble")]
[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("2.6.*")]
[assembly: AssemblyFileVersion("2.6.0.0")]
[assembly: AssemblyVersion("2.7.*")]
[assembly: AssemblyFileVersion("2.7.0.0")]

0 comments on commit 7beecc5

Please sign in to comment.