mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-29 16:31:40 +02:00
developer aka trunk version 1.5
git-svn-id: trunk@47336 -
This commit is contained in:
parent
5b71531582
commit
fc1699703a
5
.gitattributes
vendored
5
.gitattributes
vendored
@ -7259,6 +7259,7 @@ packager/frames/package_usage_options.pas svneol=native#text/pascal
|
||||
packager/globallinks/README.txt svneol=native#text/plain
|
||||
packager/globallinks/aarrebase-0.lpl svneol=native#text/plain
|
||||
packager/globallinks/aggpaslcl-1.lpl svneol=native#text/plain
|
||||
packager/globallinks/alienguidsgn-1.lpl svneol=native#text/plain
|
||||
packager/globallinks/anchordocking-0.6.lpl svneol=native#text/plain
|
||||
packager/globallinks/anchordockingdsgn-0.5.lpl svneol=native#text/plain
|
||||
packager/globallinks/appforms-1.lpl svneol=native#text/plain
|
||||
@ -7323,8 +7324,8 @@ packager/globallinks/lazutils-1.lpl svneol=native#text/plain
|
||||
packager/globallinks/lazvlc-1.lpl svneol=native#text/plain
|
||||
packager/globallinks/lazwebextra-0.9.lpl svneol=native#text/plain
|
||||
packager/globallinks/lazwiki-1.0.1.lpl svneol=native#text/plain
|
||||
packager/globallinks/lcl-1.3.lpl svneol=native#text/plain
|
||||
packager/globallinks/lclbase-1.3.lpl svneol=native#text/plain
|
||||
packager/globallinks/lcl-1.5.lpl svneol=native#text/plain
|
||||
packager/globallinks/lclbase-1.5.lpl svneol=native#text/plain
|
||||
packager/globallinks/leakview-1.lpl svneol=native#text/plain
|
||||
packager/globallinks/lhelpcontrolpkg-0.2.lpl svneol=native#text/plain
|
||||
packager/globallinks/lr_add_function-1.lpl svneol=native#text/plain
|
||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
lazarus (1.5.0) unstable; urgency=low
|
||||
|
||||
* Snapshot building.
|
||||
|
||||
-- Mattias Gaertner <mattias@freepascal.org> Sun, 11 Jan 2015 12:07:35 +0100
|
||||
|
||||
lazarus (1.3.0) unstable; urgency=low
|
||||
|
||||
* Snapshot building.
|
||||
|
@ -1 +1 @@
|
||||
'1.3'
|
||||
'1.5'
|
||||
|
@ -148,7 +148,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>Lazarus IDE v1.3 beta</string>
|
||||
<string>Lazarus IDE v1.5 beta</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>laza</string>
|
||||
<key>CFBundleVersion</key>
|
||||
|
@ -3969,4 +3969,7 @@ begin
|
||||
Done := True;
|
||||
end;
|
||||
|
||||
initialization
|
||||
writeln('AAA1 ',sizeof(TLazItemInfo));
|
||||
|
||||
end.
|
||||
|
@ -2,6 +2,7 @@
|
||||
<CONFIG>
|
||||
<Package Version="4">
|
||||
<Name Value="LCL"/>
|
||||
<Type Value="RunAndDesignTime"/>
|
||||
<Author Value="Lazarus"/>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
@ -118,17 +119,15 @@ end;"/>
|
||||
<Other>
|
||||
<CompilerMessages>
|
||||
<IgnoredMessages idx5044="True"/>
|
||||
<UseMsgFile Value="True"/>
|
||||
</CompilerMessages>
|
||||
<CustomOptions Value="$(IDEBuildOptions)"/>
|
||||
<CompilerPath Value="$(CompPath)"/>
|
||||
</Other>
|
||||
</CompilerOptions>
|
||||
<Description Value="Lazarus Component Library. Visual components with great Delphi VCL compatibility, but running natively on many platforms.
|
||||
"/>
|
||||
<License Value="modified LGPL-2
|
||||
"/>
|
||||
<Version Major="1" Minor="3"/>
|
||||
<Version Major="1" Minor="5"/>
|
||||
<Files Count="438">
|
||||
<Item1>
|
||||
<Filename Value="carbon/agl.pp"/>
|
||||
@ -2176,14 +2175,13 @@ end;"/>
|
||||
<Filename Value="gtk3/gtk3wsextdlgs.pp"/>
|
||||
<AddToUsesPkgSection Value="False"/>
|
||||
<UnitName Value="Gtk3WSExtDlgs"/>
|
||||
</Item438>
|
||||
</Item438>
|
||||
</Files>
|
||||
<LazDoc Paths="../../docs/xml/lcl"/>
|
||||
<i18n>
|
||||
<EnableI18N Value="True"/>
|
||||
<OutDir Value="../languages"/>
|
||||
</i18n>
|
||||
<Type Value="RunAndDesignTime"/>
|
||||
<RequiredPkgs Count="1">
|
||||
<Item1>
|
||||
<PackageName Value="LCLBase"/>
|
||||
|
@ -26,7 +26,7 @@
|
||||
"/>
|
||||
<License Value="modified LGPL-2
|
||||
"/>
|
||||
<Version Major="1" Minor="3"/>
|
||||
<Version Major="1" Minor="5"/>
|
||||
<Files Count="278">
|
||||
<Item1>
|
||||
<Filename Value="checklst.pas"/>
|
||||
|
@ -33,11 +33,11 @@ interface
|
||||
|
||||
const
|
||||
lcl_major = 1;
|
||||
lcl_minor = 3;
|
||||
lcl_minor = 5;
|
||||
lcl_release = 0;
|
||||
lcl_patch = 0;
|
||||
lcl_fullversion = ((lcl_major * 100 + lcl_minor) * 100 + lcl_release) * 100 + lcl_patch;
|
||||
lcl_version = '1.3';
|
||||
lcl_version = '1.5';
|
||||
|
||||
implementation
|
||||
|
||||
|
1
packager/globallinks/alienguidsgn-1.lpl
Normal file
1
packager/globallinks/alienguidsgn-1.lpl
Normal file
@ -0,0 +1 @@
|
||||
$(LazarusDir)/examples/designnonlcl/full/design/alienguidsgn.lpk
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<CONFIG>
|
||||
<EnvironmentOptions>
|
||||
<Version Value="107" Lazarus="1.3"/>
|
||||
<Version Value="107" Lazarus="1.5"/>
|
||||
<LazarusDirectory Value="__LAZARUSDIR__">
|
||||
<History Count="1">
|
||||
<Item1 Value="/usr/lib/lazarus/"/>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<CONFIG>
|
||||
<EnvironmentOptions>
|
||||
<Version Value="107" Lazarus="1.3"/>
|
||||
<Version Value="107" Lazarus="1.5"/>
|
||||
<LazarusDirectory Value="/Developer/lazarus/">
|
||||
<History Count="1">
|
||||
<Item1 Value="/Developer/lazarus/"/>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<CONFIG>
|
||||
<EnvironmentOptions>
|
||||
<Version Value="107" Lazarus="1.3"/>
|
||||
<Version Value="107" Lazarus="1.5"/>
|
||||
<LazarusDirectory Value="%LazDir%">
|
||||
</LazarusDirectory>
|
||||
<CompilerFilename Value="%FpcBinDir%\fpc.exe">
|
||||
|
Loading…
Reference in New Issue
Block a user