Skip to content

Commit 0b15ce6

Browse files
committed
v2.12 release! 😲
1 parent 7f785f9 commit 0b15ce6

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

Changelog.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2020-05-19 (v2.12):
2+
- Added Japanese translation
3+
- Added Italian translation
4+
- Added a donate button
5+
- Fixed a possible hang
6+
- Fixed not loading USBasp frequency from previous session
7+
- Installer updated to Inno Setup 6
8+
19
2019-10-12 (v2.11):
210
- Fixed null exception if no MCU selected and "Set fuses" ticked
311
- Updated Polish translation

installer/avrdudess.iss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
#define MyAppName "AVRDUDESS"
55
#define MyAppDescription "A GUI for AVRDUDE"
6-
#define MyAppVersion "2.11"
6+
#define MyAppVersion "2.12"
77
#define MyAppPublisher "Zak Kemble"
88
#define MyAppURL "https://zakkemble.net/"
99
#define MyAppExeName "avrdudess.exe"
1010
#define MyAppContact "contact@zakkemble.net"
11-
#define MyAppCopyright "Copyright © 2019 Zak Kemble"
11+
#define MyAppCopyright "Copyright © 2020 Zak Kemble"
1212

1313
[Setup]
1414
; NOTE: The value of AppId uniquely identifies this application.
@@ -33,7 +33,7 @@ AllowNoIcons=yes
3333
LicenseFile=..\License.txt
3434
;InfoAfterFile=Readme.txt
3535
OutputDir=.\
36-
OutputBaseFilename=setup-{#MyAppName}-{#MyAppVersion}
36+
OutputBaseFilename={#MyAppName}-{#MyAppVersion}-setup
3737
Compression=lzma2/ultra64
3838
SolidCompression=yes
3939
WizardSmallImageFile=wizardsmall.bmp
@@ -115,7 +115,7 @@ Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
115115
Name: "{group}\{cm:ProgramOnTheWeb,{#MyAppName}}"; Filename: "{#MyAppURL}"
116116
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
117117
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
118-
;Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon
118+
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon
119119

120120
[Run]
121121
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent runasoriginaluser

src/avrdudess/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Zak Kemble")]
1212
[assembly: AssemblyProduct("AVRDUDESS")]
13-
[assembly: AssemblyCopyright("Copyright © 2019 Zak Kemble")]
13+
[assembly: AssemblyCopyright("Copyright © 2020 Zak Kemble")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -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("2.11.*")]
36-
[assembly: AssemblyFileVersion("2.11.0.0")]
35+
[assembly: AssemblyVersion("2.12.*")]
36+
[assembly: AssemblyFileVersion("2.12.0.0")]

0 commit comments

Comments
 (0)