lazedit: Upgrades to 2.0

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2472 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
sekelsenmat
2012-07-05 10:07:43 +00:00
parent cd7611184d
commit 87daaf8466
4 changed files with 26 additions and 25 deletions

View File

@ -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]

View File

@ -164,6 +164,7 @@
<Filename Value="lazedit_about.pas"/>
<IsPartOfProject Value="True"/>
<ComponentName Value="FormAbout"/>
<HasResources Value="True"/>
<ResourceBaseClass Value="Form"/>
<UnitName Value="LazEdit_About"/>
</Unit14>

View File

@ -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]

View File

@ -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;