mirror of
https://github.com/dazedcat19/FMD2.git
synced 2025-02-18 10:58:17 +00:00
![riderkick](/assets/img/avatar_default.png)
- Fixing download procedure - Change parameter of updater - Add -a for update FMD - Add -h for help
23 lines
446 B
ObjectPascal
23 lines
446 B
ObjectPascal
program updater;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, uMain, uMessage;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Title:='Updater - Free Manga Downloader';
|
|
RequireDerivedFormResource := True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
Application.CreateForm(TfrmMessage, frmMessage);
|
|
Application.Run;
|
|
end.
|
|
|