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] [Setup]
AppName=LazEdit AppName=LazEdit
AppVerName=LazEdit v1.9 AppVerName=LazEdit v2.0
AppPublisherURL=http://wiki.lazarus.freepascal.org/LazEdit AppPublisherURL=http://wiki.lazarus.freepascal.org/LazEdit
AppSupportURL=http://wiki.lazarus.freepascal.org/LazEdit AppSupportURL=http://wiki.lazarus.freepascal.org/LazEdit
AppUpdatesURL=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 DefaultGroupName=Free Pascal Applications Suite
; LicenseFile=..\license.txt ; LicenseFile=..\license.txt
OutputDir=.\ OutputDir=.\
OutputBaseFilename=LazEdit1.9_install OutputBaseFilename=LazEdit2.0_install
Compression=lzma Compression=lzma
SolidCompression=yes SolidCompression=yes
VersionInfoVersion=1.9 VersionInfoVersion=2.0
AllowNoIcons=yes AllowNoIcons=yes
[Languages] [Languages]

View File

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

View File

@ -11,19 +11,19 @@ object FormAbout: TFormAbout
OnCreate = FormCreate OnCreate = FormCreate
OnKeyDown = FormKeyDown OnKeyDown = FormKeyDown
OnShow = FormShow OnShow = FormShow
LCLVersion = '0.9.31' LCLVersion = '1.1'
object NoteBook: TPageControl object NoteBook: TPageControl
Left = 0 Left = 0
Height = 408 Height = 408
Top = 0 Top = 0
Width = 545 Width = 545
ActivePage = LicensePage ActivePage = MainPage
Align = alTop Align = alTop
TabIndex = 1 TabIndex = 0
TabOrder = 0 TabOrder = 0
object MainPage: TTabSheet object MainPage: TTabSheet
Caption = 'General' Caption = 'General'
ClientHeight = 382 ClientHeight = 380
ClientWidth = 537 ClientWidth = 537
object Image1: TImage object Image1: TImage
Left = 440 Left = 440
@ -513,9 +513,9 @@ object FormAbout: TFormAbout
end end
object ProductLabel: TLabel object ProductLabel: TLabel
Left = 12 Left = 12
Height = 21 Height = 22
Top = 24 Top = 24
Width = 110 Width = 107
Caption = 'ProductName' Caption = 'ProductName'
Font.Color = clRed Font.Color = clRed
Font.Height = -16 Font.Height = -16
@ -526,9 +526,9 @@ object FormAbout: TFormAbout
end end
object VersionLabel: TLabel object VersionLabel: TLabel
Left = 12 Left = 12
Height = 17 Height = 18
Top = 58 Top = 58
Width = 55 Width = 48
Caption = 'Version' Caption = 'Version'
Font.Height = -13 Font.Height = -13
Font.Style = [fsBold] Font.Style = [fsBold]
@ -538,18 +538,18 @@ object FormAbout: TFormAbout
end end
object BuildDateLabel: TLabel object BuildDateLabel: TLabel
Left = 12 Left = 12
Height = 14 Height = 16
Top = 82 Top = 82
Width = 73 Width = 80
Caption = 'BuildDateLabel' Caption = 'BuildDateLabel'
ParentColor = False ParentColor = False
ShowAccelChar = False ShowAccelChar = False
end end
object CopyrightLabel: TLabel object CopyrightLabel: TLabel
Left = 12 Left = 12
Height = 14 Height = 16
Top = 234 Top = 234
Width = 86 Width = 84
Caption = 'CopyrightLabel' Caption = 'CopyrightLabel'
Font.Style = [fsBold] Font.Style = [fsBold]
ParentColor = False ParentColor = False
@ -558,18 +558,18 @@ object FormAbout: TFormAbout
end end
object LazLabel: TLabel object LazLabel: TLabel
Left = 12 Left = 12
Height = 14 Height = 16
Top = 106 Top = 106
Width = 44 Width = 46
Caption = 'LazLabel' Caption = 'LazLabel'
ParentColor = False ParentColor = False
ShowAccelChar = False ShowAccelChar = False
end end
object FpcLabel: TLabel object FpcLabel: TLabel
Left = 12 Left = 12
Height = 14 Height = 16
Top = 130 Top = 130
Width = 45 Width = 48
Caption = 'FpcLabel' Caption = 'FpcLabel'
ParentColor = False ParentColor = False
ShowAccelChar = False ShowAccelChar = False
@ -577,9 +577,9 @@ object FormAbout: TFormAbout
object WebsiteLabel: TLabel object WebsiteLabel: TLabel
Cursor = crHandPoint Cursor = crHandPoint
Left = 12 Left = 12
Height = 14 Height = 16
Top = 274 Top = 274
Width = 79 Width = 76
Caption = 'WebsiteLabel' Caption = 'WebsiteLabel'
Font.Color = clBlue Font.Color = clBlue
Font.Style = [fsBold] Font.Style = [fsBold]
@ -593,7 +593,7 @@ object FormAbout: TFormAbout
end end
object LicensePage: TTabSheet object LicensePage: TTabSheet
Caption = 'License' Caption = 'License'
ClientHeight = 382 ClientHeight = 380
ClientWidth = 537 ClientWidth = 537
object LicenseMemo: TMemo object LicenseMemo: TMemo
Left = 0 Left = 0
@ -612,9 +612,9 @@ object FormAbout: TFormAbout
object LicenseUrlLabel: TLabel object LicenseUrlLabel: TLabel
Cursor = crHandPoint Cursor = crHandPoint
Left = 0 Left = 0
Height = 14 Height = 16
Top = 352 Top = 352
Width = 93 Width = 88
Caption = 'LicenseUrlLabel' Caption = 'LicenseUrlLabel'
Font.Color = clBlue Font.Color = clBlue
Font.Style = [fsBold] Font.Style = [fsBold]

View File

@ -45,7 +45,7 @@ Uses Classes, SysUtils, LCLProc;
const const
AppName = 'LazEdit'; AppName = 'LazEdit';
AboutTitle = 'About ' + AppName; AboutTitle = 'About ' + AppName;
AppVersion = 'Version 0.9'; AppVersion = 'Version 2.0';
CopyLeftStatement = 'Copyright (c) 2011, 2012 by Bart Broersma, FlyingSheep Inc. and'+ LineEnding + CopyLeftStatement = 'Copyright (c) 2011, 2012 by Bart Broersma, FlyingSheep Inc. and'+ LineEnding +
'Felipe Monteiro de Carvalho'; 'Felipe Monteiro de Carvalho';
MetaGeneratorName = AppName + #32 + AppVersion; MetaGeneratorName = AppName + #32 + AppVersion;