diff --git a/applications/lazedit/build/innosetup.iss b/applications/lazedit/build/innosetup.iss
index 52b67f1d8..8dcc328fa 100644
--- a/applications/lazedit/build/innosetup.iss
+++ b/applications/lazedit/build/innosetup.iss
@@ -3,7 +3,7 @@
[Setup]
AppName=LazEdit
-AppVerName=LazEdit v1.9
+AppVerName=LazEdit v2.0
AppPublisherURL=http://wiki.lazarus.freepascal.org/LazEdit
AppSupportURL=http://wiki.lazarus.freepascal.org/LazEdit
AppUpdatesURL=http://wiki.lazarus.freepascal.org/LazEdit
@@ -11,10 +11,10 @@ DefaultDirName={pf}\LazEdit
DefaultGroupName=Free Pascal Applications Suite
; LicenseFile=..\license.txt
OutputDir=.\
-OutputBaseFilename=LazEdit1.9_install
+OutputBaseFilename=LazEdit2.0_install
Compression=lzma
SolidCompression=yes
-VersionInfoVersion=1.9
+VersionInfoVersion=2.0
AllowNoIcons=yes
[Languages]
diff --git a/applications/lazedit/lazedit.lpi b/applications/lazedit/lazedit.lpi
index daba56b4c..d90964f50 100644
--- a/applications/lazedit/lazedit.lpi
+++ b/applications/lazedit/lazedit.lpi
@@ -164,6 +164,7 @@
+
diff --git a/applications/lazedit/lazedit_about.lfm b/applications/lazedit/lazedit_about.lfm
index a515af585..3be7515e7 100644
--- a/applications/lazedit/lazedit_about.lfm
+++ b/applications/lazedit/lazedit_about.lfm
@@ -11,19 +11,19 @@ object FormAbout: TFormAbout
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnShow = FormShow
- LCLVersion = '0.9.31'
+ LCLVersion = '1.1'
object NoteBook: TPageControl
Left = 0
Height = 408
Top = 0
Width = 545
- ActivePage = LicensePage
+ ActivePage = MainPage
Align = alTop
- TabIndex = 1
+ TabIndex = 0
TabOrder = 0
object MainPage: TTabSheet
Caption = 'General'
- ClientHeight = 382
+ ClientHeight = 380
ClientWidth = 537
object Image1: TImage
Left = 440
@@ -513,9 +513,9 @@ object FormAbout: TFormAbout
end
object ProductLabel: TLabel
Left = 12
- Height = 21
+ Height = 22
Top = 24
- Width = 110
+ Width = 107
Caption = 'ProductName'
Font.Color = clRed
Font.Height = -16
@@ -526,9 +526,9 @@ object FormAbout: TFormAbout
end
object VersionLabel: TLabel
Left = 12
- Height = 17
+ Height = 18
Top = 58
- Width = 55
+ Width = 48
Caption = 'Version'
Font.Height = -13
Font.Style = [fsBold]
@@ -538,18 +538,18 @@ object FormAbout: TFormAbout
end
object BuildDateLabel: TLabel
Left = 12
- Height = 14
+ Height = 16
Top = 82
- Width = 73
+ Width = 80
Caption = 'BuildDateLabel'
ParentColor = False
ShowAccelChar = False
end
object CopyrightLabel: TLabel
Left = 12
- Height = 14
+ Height = 16
Top = 234
- Width = 86
+ Width = 84
Caption = 'CopyrightLabel'
Font.Style = [fsBold]
ParentColor = False
@@ -558,18 +558,18 @@ object FormAbout: TFormAbout
end
object LazLabel: TLabel
Left = 12
- Height = 14
+ Height = 16
Top = 106
- Width = 44
+ Width = 46
Caption = 'LazLabel'
ParentColor = False
ShowAccelChar = False
end
object FpcLabel: TLabel
Left = 12
- Height = 14
+ Height = 16
Top = 130
- Width = 45
+ Width = 48
Caption = 'FpcLabel'
ParentColor = False
ShowAccelChar = False
@@ -577,9 +577,9 @@ object FormAbout: TFormAbout
object WebsiteLabel: TLabel
Cursor = crHandPoint
Left = 12
- Height = 14
+ Height = 16
Top = 274
- Width = 79
+ Width = 76
Caption = 'WebsiteLabel'
Font.Color = clBlue
Font.Style = [fsBold]
@@ -593,7 +593,7 @@ object FormAbout: TFormAbout
end
object LicensePage: TTabSheet
Caption = 'License'
- ClientHeight = 382
+ ClientHeight = 380
ClientWidth = 537
object LicenseMemo: TMemo
Left = 0
@@ -612,9 +612,9 @@ object FormAbout: TFormAbout
object LicenseUrlLabel: TLabel
Cursor = crHandPoint
Left = 0
- Height = 14
+ Height = 16
Top = 352
- Width = 93
+ Width = 88
Caption = 'LicenseUrlLabel'
Font.Color = clBlue
Font.Style = [fsBold]
diff --git a/applications/lazedit/lazedit_constants.pp b/applications/lazedit/lazedit_constants.pp
index 4061dbdf4..1c77893b2 100644
--- a/applications/lazedit/lazedit_constants.pp
+++ b/applications/lazedit/lazedit_constants.pp
@@ -45,7 +45,7 @@ Uses Classes, SysUtils, LCLProc;
const
AppName = 'LazEdit';
AboutTitle = 'About ' + AppName;
- AppVersion = 'Version 0.9';
+ AppVersion = 'Version 2.0';
CopyLeftStatement = 'Copyright (c) 2011, 2012 by Bart Broersma, FlyingSheep Inc. and'+ LineEnding +
'Felipe Monteiro de Carvalho';
MetaGeneratorName = AppName + #32 + AppVersion;