Skip to content

Commit

Permalink
v2.12 release! 😲
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakKemble committed May 19, 2020
1 parent 7f785f9 commit 0b15ce6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2020-05-19 (v2.12):
- Added Japanese translation
- Added Italian translation
- Added a donate button
- Fixed a possible hang
- Fixed not loading USBasp frequency from previous session
- Installer updated to Inno Setup 6

2019-10-12 (v2.11):
- Fixed null exception if no MCU selected and "Set fuses" ticked
- Updated Polish translation
Expand Down
8 changes: 4 additions & 4 deletions installer/avrdudess.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

#define MyAppName "AVRDUDESS"
#define MyAppDescription "A GUI for AVRDUDE"
#define MyAppVersion "2.11"
#define MyAppVersion "2.12"
#define MyAppPublisher "Zak Kemble"
#define MyAppURL "https://zakkemble.net/"
#define MyAppExeName "avrdudess.exe"
#define MyAppContact "contact@zakkemble.net"
#define MyAppCopyright "Copyright © 2019 Zak Kemble"
#define MyAppCopyright "Copyright © 2020 Zak Kemble"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
Expand All @@ -33,7 +33,7 @@ AllowNoIcons=yes
LicenseFile=..\License.txt
;InfoAfterFile=Readme.txt
OutputDir=.\
OutputBaseFilename=setup-{#MyAppName}-{#MyAppVersion}
OutputBaseFilename={#MyAppName}-{#MyAppVersion}-setup
Compression=lzma2/ultra64
SolidCompression=yes
WizardSmallImageFile=wizardsmall.bmp
Expand Down Expand Up @@ -115,7 +115,7 @@ Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{group}\{cm:ProgramOnTheWeb,{#MyAppName}}"; Filename: "{#MyAppURL}"
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
;Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon

[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent runasoriginaluser
6 changes: 3 additions & 3 deletions src/avrdudess/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Zak Kemble")]
[assembly: AssemblyProduct("AVRDUDESS")]
[assembly: AssemblyCopyright("Copyright © 2019 Zak Kemble")]
[assembly: AssemblyCopyright("Copyright © 2020 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.11.*")]
[assembly: AssemblyFileVersion("2.11.0.0")]
[assembly: AssemblyVersion("2.12.*")]
[assembly: AssemblyFileVersion("2.12.0.0")]

0 comments on commit 0b15ce6

Please sign in to comment.