source: UpdateChecker/UpdateChecker.pas

Last change on this file was 433, checked in by chronos, 12 years ago
  • Added: Custom new version info form with option to show release notes.
  • Fixed: Run setup with elevated privileges.
  • Added: Can read version info file from local filesystem.
  • Added: Demo application.
File size: 451 bytes
Line 
1{ This file was automatically created by Lazarus. Do not edit!
2 This source is only used to compile and install the package.
3 }
4
5unit UpdateChecker;
6
7interface
8
9uses
10 UUpdateChecker, UFormDownloadProgress, UFormNewVersionOffer,
11 LazarusPackageIntf;
12
13implementation
14
15procedure Register;
16begin
17 RegisterUnit('UUpdateChecker', @UUpdateChecker.Register);
18end;
19
20initialization
21 RegisterPackage('UpdateChecker', @Register);
22end.
Note: See TracBrowser for help on using the repository browser.