Skip to content

Commit d6b61f1

Browse files
committed
Updated installer versions.
1 parent 3a07f01 commit d6b61f1

8 files changed

+23
-25
lines changed

NEWS.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Version 6.1 - 2 November 2020
2+
3+
- Updated: C++ keyword highlighting. Added some C++20 keywords.
4+
- Updated: Font ligature support.
5+
- Updated: SVGIconImageList dependency
6+
- Updated: SynEdit dependency.
7+
- Updated: Text file loading and saving dialogs with Encodings.
8+
- Added: Visual Studio Dark theme.
9+
- Fixed: Automatic Tab widths.
10+
- Fixed: Launching help from directory with spaces.
11+
- Fixed: Welcome screen issue when canceling closing.
12+
- Fixed: Shortcuts Form dark styling.
13+
- Fixed: Crash in Issue #26.
14+
115
Version 6.0 - 12 October 2020
216

317
- Upgraded TDM-GCC to 32/64 9.2.0.

Source/devcpp.dproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<ProjectGuid>{0B6930FF-C1A8-45A0-B448-2D23D500E0F7}</ProjectGuid>
44
<MainSource>devcpp.dpr</MainSource>
55
<Base>True</Base>
6-
<Config Condition="'$(Config)'==''">Debug</Config>
6+
<Config Condition="'$(Config)'==''">Release</Config>
77
<TargetedPlatforms>1</TargetedPlatforms>
88
<AppType>Application</AppType>
99
<FrameworkType>VCL</FrameworkType>
@@ -101,8 +101,8 @@
101101
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
102102
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
103103
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
104-
<VerInfo_MinorVer>0</VerInfo_MinorVer>
105-
<VerInfo_Keys>CompanyName=Embarcadero Technologies, Inc.;FileDescription=Embarcadero Dev C++;FileVersion=6.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=Embarcadero Dev C++;ProductVersion=6.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName)</VerInfo_Keys>
104+
<VerInfo_MinorVer>1</VerInfo_MinorVer>
105+
<VerInfo_Keys>CompanyName=Embarcadero Technologies, Inc.;FileDescription=Embarcadero Dev C++;FileVersion=6.1.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=Embarcadero Dev C++;ProductVersion=6.1.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName)</VerInfo_Keys>
106106
<Icon_MainIcon>..\devcpp.ico</Icon_MainIcon>
107107
<VerInfo_MajorVer>6</VerInfo_MajorVer>
108108
</PropertyGroup>

Source/main.dfm

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,6 @@ object MainForm: TMainForm
196196
OnChange = MessageControlChange
197197
object CompSheet: TTabSheet
198198
Caption = 'Compiler'
199-
ExplicitLeft = 0
200-
ExplicitTop = 0
201-
ExplicitWidth = 0
202-
ExplicitHeight = 0
203199
object CompilerOutput: TListView
204200
Left = 0
205201
Top = 0
@@ -244,10 +240,6 @@ object MainForm: TMainForm
244240
object ResSheet: TTabSheet
245241
Caption = 'Resource'
246242
ImageIndex = 1
247-
ExplicitLeft = 0
248-
ExplicitTop = 0
249-
ExplicitWidth = 0
250-
ExplicitHeight = 0
251243
object ResourceOutput: TListView
252244
Left = 0
253245
Top = 0
@@ -522,10 +514,6 @@ object MainForm: TMainForm
522514
object FindSheet: TTabSheet
523515
Caption = 'Find results'
524516
ImageIndex = 4
525-
ExplicitLeft = 0
526-
ExplicitTop = 0
527-
ExplicitWidth = 0
528-
ExplicitHeight = 0
529517
object FindOutput: TListView
530518
Left = 0
531519
Top = 0
@@ -616,10 +604,6 @@ object MainForm: TMainForm
616604
object CloseSheet: TTabSheet
617605
Caption = 'Close'
618606
ImageIndex = 6
619-
ExplicitLeft = 0
620-
ExplicitTop = 0
621-
ExplicitWidth = 0
622-
ExplicitHeight = 0
623607
end
624608
end
625609
object ToolbarDock: TControlBar
@@ -1637,7 +1621,7 @@ object MainForm: TMainForm
16371621
Top = 309
16381622
Width = 18
16391623
Height = 16
1640-
Caption = '6.0'
1624+
Caption = '6.1'
16411625
Font.Charset = DEFAULT_CHARSET
16421626
Font.Color = clRed
16431627
Font.Height = -13

devcppmingw64.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
!define COMPILERNAME "TDM-GCC 4.9.2"
55
!define COMPILERFOLDER "MinGW64"
6-
!define DEVCPP_VERSION "6.0"
6+
!define DEVCPP_VERSION "6.1"
77
!define FINALNAME "Embarcadero_Dev-Cpp_${DEVCPP_VERSION}_${COMPILERNAME}_Setup.exe"
88
!define DISPLAY_NAME "Embarcadero Dev-C++ ${DEVCPP_VERSION}"
99

devcppnocompiler.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
!define COMPILERNAME "No Compiler"
55
!define COMPILERFOLDER ""
6-
!define DEVCPP_VERSION "6.0"
6+
!define DEVCPP_VERSION "6.1"
77
!define FINALNAME "Embarcadero_Dev-Cpp_${DEVCPP_VERSION}_${COMPILERNAME}_Setup.exe"
88
!define DISPLAY_NAME "Embarcadero Dev-C++ ${DEVCPP_VERSION}"
99

devcppnocompilerNoFonts.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
!define COMPILERNAME "No Compiler"
55
!define COMPILERFOLDER ""
6-
!define DEVCPP_VERSION "6.0"
6+
!define DEVCPP_VERSION "6.1"
77
!define FINALNAME "Embarcadero_Dev-Cpp_${DEVCPP_VERSION}_${COMPILERNAME}_Setup.exe"
88
!define DISPLAY_NAME "Embarcadero Dev-C++ ${DEVCPP_VERSION}"
99

devcpptdmgcc64.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
!define COMPILERNAME "TDM-GCC 9.2"
55
!define COMPILERFOLDER "TDM-GCC-64"
6-
!define DEVCPP_VERSION "6.0"
6+
!define DEVCPP_VERSION "6.1"
77
!define FINALNAME "Embarcadero_Dev-Cpp_${DEVCPP_VERSION}_${COMPILERNAME}_Setup.exe"
88
!define DISPLAY_NAME "Embarcadero Dev-C++ ${DEVCPP_VERSION}"
99

devcpptdmgcc64NoFonts.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
!define COMPILERNAME "TDM-GCC 9.2"
55
!define COMPILERFOLDER "TDM-GCC-64"
6-
!define DEVCPP_VERSION "6.0"
6+
!define DEVCPP_VERSION "6.1"
77
!define FINALNAME "Embarcadero_Dev-Cpp_${DEVCPP_VERSION}_${COMPILERNAME}_Setup.exe"
88
!define DISPLAY_NAME "Embarcadero Dev-C++ ${DEVCPP_VERSION}"
99

0 commit comments

Comments
 (0)