mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
Delphi 11.1: copy/create main package files
This commit is contained in:
113
packages/Delphi11.1/heidisql.dpr
vendored
Normal file
113
packages/Delphi11.1/heidisql.dpr
vendored
Normal file
@@ -0,0 +1,113 @@
|
||||
program heidisql;
|
||||
|
||||
uses
|
||||
madExcept,
|
||||
Forms,
|
||||
SysUtils,
|
||||
Dialogs,
|
||||
Windows,
|
||||
main in '..\..\source\main.pas' {MainForm},
|
||||
about in '..\..\source\about.pas' {AboutBox},
|
||||
connections in '..\..\source\connections.pas' {connform},
|
||||
loaddata in '..\..\source\loaddata.pas' {loaddataform},
|
||||
usermanager in '..\..\source\usermanager.pas' {UserManagerForm},
|
||||
preferences in '..\..\source\preferences.pas' {frmPreferences},
|
||||
tabletools in '..\..\source\tabletools.pas' {frmTableTools},
|
||||
printlist in '..\..\source\printlist.pas' {printlistForm},
|
||||
copytable in '..\..\source\copytable.pas' {CopyTableForm},
|
||||
insertfiles in '..\..\source\insertfiles.pas' {frmInsertFiles},
|
||||
apphelpers in '..\..\source\apphelpers.pas',
|
||||
sqlhelp in '..\..\source\sqlhelp.pas' {frmSQLhelp},
|
||||
dbstructures in '..\..\source\dbstructures.pas',
|
||||
dbstructures.mysql in '..\..\source\dbstructures.mysql.pas',
|
||||
dbstructures.mssql in '..\..\source\dbstructures.mssql.pas',
|
||||
dbstructures.postgresql in '..\..\source\dbstructures.postgresql.pas',
|
||||
dbstructures.sqlite in '..\..\source\dbstructures.sqlite.pas',
|
||||
dbstructures.interbase in '..\..\source\dbstructures.interbase.pas',
|
||||
column_selection in '..\..\source\column_selection.pas' {frmColumnSelection},
|
||||
data_sorting in '..\..\source\data_sorting.pas' {frmDataSorting},
|
||||
createdatabase in '..\..\source\createdatabase.pas' {CreateDatabaseForm},
|
||||
updatecheck in '..\..\source\updatecheck.pas' {frmUpdateCheck},
|
||||
editvar in '..\..\source\editvar.pas' {frmEditVariable},
|
||||
view in '..\..\source\view.pas' {frmView},
|
||||
selectdbobject in '..\..\source\selectdbobject.pas' {frmSelectDBObject},
|
||||
texteditor in '..\..\source\texteditor.pas' {frmTextEditor},
|
||||
bineditor in '..\..\source\bineditor.pas' {frmBinEditor},
|
||||
grideditlinks in '..\..\source\grideditlinks.pas',
|
||||
routine_editor in '..\..\source\routine_editor.pas' {frmRoutineEditor},
|
||||
table_editor in '..\..\source\table_editor.pas' {frmTableEditor},
|
||||
dbconnection in '..\..\source\dbconnection.pas',
|
||||
trigger_editor in '..\..\source\trigger_editor.pas' {frmTriggerEditor: TFrame},
|
||||
searchreplace in '..\..\source\searchreplace.pas' {frmSearchReplace},
|
||||
event_editor in '..\..\source\event_editor.pas' {frmEventEditor: TFrame},
|
||||
loginform in '..\..\source\loginform.pas' {frmLogin},
|
||||
Cromis.DirectoryWatch in '..\..\source\Cromis.DirectoryWatch.pas',
|
||||
exportgrid in '..\..\source\exportgrid.pas' {frmExportGrid},
|
||||
syncdb in '..\..\source\syncdb.pas' {frmSyncDB},
|
||||
gnugettext in '..\..\source\gnugettext.pas',
|
||||
JumpList in '..\..\source\JumpList.pas',
|
||||
extra_controls in '..\..\source\extra_controls.pas',
|
||||
change_password in '..\..\source\change_password.pas' {frmPasswordChange},
|
||||
Vcl.Themes,
|
||||
Vcl.Styles,
|
||||
Vcl.Graphics,
|
||||
theme_preview in '..\..\source\theme_preview.pas' {frmThemePreview},
|
||||
csv_detector in '..\..\source\csv_detector.pas' {frmCsvDetector},
|
||||
generic_types in '..\..\source\generic_types.pas';
|
||||
|
||||
{.$R *.RES}
|
||||
{$R ..\..\res\icon.RES}
|
||||
{$R ..\..\res\icon-question.RES}
|
||||
{$R ..\..\res\version.RES}
|
||||
{$R ..\..\res\manifest.RES}
|
||||
{$R ..\..\res\updater.RES}
|
||||
{$R ..\..\res\styles.RES}
|
||||
|
||||
var
|
||||
AppLanguage: String;
|
||||
WantedStyle: String;
|
||||
begin
|
||||
PostponedLogItems := TDBLogItems.Create(True);
|
||||
//Application.MainFormOnTaskBar := True;
|
||||
|
||||
// Use MySQL standard format for date/time variables: YYYY-MM-DD HH:MM:SS
|
||||
// Be aware that Delphi internally converts the slashes in ShortDateFormat to the DateSeparator
|
||||
FormatSettings.DateSeparator := '-';
|
||||
FormatSettings.TimeSeparator := ':';
|
||||
FormatSettings.ShortDateFormat := 'yyyy/mm/dd';
|
||||
FormatSettings.LongTimeFormat := 'hh:nn:ss';
|
||||
|
||||
AppSettings := TAppSettings.Create;
|
||||
SecondInstMsgId := RegisterWindowMessage(APPNAME);
|
||||
if (not AppSettings.ReadBool(asAllowMultipleInstances)) and CheckForSecondInstance then begin
|
||||
AppSettings.Free;
|
||||
Application.Terminate;
|
||||
end else begin
|
||||
|
||||
AppLanguage := AppSettings.ReadString(asAppLanguage);
|
||||
// SysLanguage may be zh_CN, while we don't offer such a language, but anyway, this is just the current system language:
|
||||
SysLanguage := gnugettext.DefaultInstance.GetCurrentLocaleName;
|
||||
gnugettext.UseLanguage(AppLanguage);
|
||||
// First time translation via dxgettext.
|
||||
// Issue #3064: Ignore TFont, so "Default" on mainform for WinXP users does not get broken.
|
||||
gnugettext.TP_GlobalIgnoreClass(TFont);
|
||||
|
||||
Application.Initialize;
|
||||
Application.Title := APPNAME;
|
||||
Application.UpdateFormatSettings := False;
|
||||
|
||||
// Try to set style name. If that fails, the user gets an error message box - reset it to default when that happened
|
||||
WantedStyle := AppSettings.ReadString(asTheme);
|
||||
TStyleManager.TrySetStyle(WantedStyle);
|
||||
if TStyleManager.ActiveStyle.Name <> WantedStyle then begin
|
||||
AppSettings.WriteString(asTheme, TStyleManager.ActiveStyle.Name);
|
||||
end;
|
||||
|
||||
Application.CreateForm(TMainForm, MainForm);
|
||||
MainForm.AfterFormCreate;
|
||||
Application.OnDeactivate := MainForm.ApplicationDeActivate;
|
||||
Application.OnShowHint := MainForm.ApplicationShowHint;
|
||||
Application.MainFormOnTaskBar := True;
|
||||
Application.Run;
|
||||
end;
|
||||
end.
|
||||
1187
packages/Delphi11.1/heidisql.dproj
vendored
Normal file
1187
packages/Delphi11.1/heidisql.dproj
vendored
Normal file
File diff suppressed because it is too large
Load Diff
84
packages/Delphi11.1/heidisql.groupproj
vendored
Normal file
84
packages/Delphi11.1/heidisql.groupproj
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{C4296A31-CCFB-4D2F-8BEC-26CD630E9987}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Projects Include="..\..\components\virtualtreeview\packages\RAD Studio 10.4+\VirtualTreesR.dproj">
|
||||
<Dependencies/>
|
||||
</Projects>
|
||||
<Projects Include="..\..\components\virtualtreeview\packages\RAD Studio 10.4+\VirtualTreesD.dproj">
|
||||
<Dependencies/>
|
||||
</Projects>
|
||||
<Projects Include="..\..\components\synedit\Packages\110A\SynEdit_R.dproj">
|
||||
<Dependencies/>
|
||||
</Projects>
|
||||
<Projects Include="..\..\components\synedit\Packages\110A\SynEdit_D.dproj">
|
||||
<Dependencies/>
|
||||
</Projects>
|
||||
<Projects Include="heidisql.dproj">
|
||||
<Dependencies/>
|
||||
</Projects>
|
||||
</ItemGroup>
|
||||
<ProjectExtensions>
|
||||
<Borland.Personality>Default.Personality.12</Borland.Personality>
|
||||
<Borland.ProjectType/>
|
||||
<BorlandProject>
|
||||
<Default.Personality/>
|
||||
</BorlandProject>
|
||||
</ProjectExtensions>
|
||||
<Target Name="VirtualTreesR">
|
||||
<MSBuild Projects="..\..\components\virtualtreeview\packages\RAD Studio 10.4+\VirtualTreesR.dproj"/>
|
||||
</Target>
|
||||
<Target Name="VirtualTreesR:Clean">
|
||||
<MSBuild Projects="..\..\components\virtualtreeview\packages\RAD Studio 10.4+\VirtualTreesR.dproj" Targets="Clean"/>
|
||||
</Target>
|
||||
<Target Name="VirtualTreesR:Make">
|
||||
<MSBuild Projects="..\..\components\virtualtreeview\packages\RAD Studio 10.4+\VirtualTreesR.dproj" Targets="Make"/>
|
||||
</Target>
|
||||
<Target Name="VirtualTreesD">
|
||||
<MSBuild Projects="..\..\components\virtualtreeview\packages\RAD Studio 10.4+\VirtualTreesD.dproj"/>
|
||||
</Target>
|
||||
<Target Name="VirtualTreesD:Clean">
|
||||
<MSBuild Projects="..\..\components\virtualtreeview\packages\RAD Studio 10.4+\VirtualTreesD.dproj" Targets="Clean"/>
|
||||
</Target>
|
||||
<Target Name="VirtualTreesD:Make">
|
||||
<MSBuild Projects="..\..\components\virtualtreeview\packages\RAD Studio 10.4+\VirtualTreesD.dproj" Targets="Make"/>
|
||||
</Target>
|
||||
<Target Name="SynEdit_R">
|
||||
<MSBuild Projects="..\..\components\synedit\Packages\110A\SynEdit_R.dproj"/>
|
||||
</Target>
|
||||
<Target Name="SynEdit_R:Clean">
|
||||
<MSBuild Projects="..\..\components\synedit\Packages\110A\SynEdit_R.dproj" Targets="Clean"/>
|
||||
</Target>
|
||||
<Target Name="SynEdit_R:Make">
|
||||
<MSBuild Projects="..\..\components\synedit\Packages\110A\SynEdit_R.dproj" Targets="Make"/>
|
||||
</Target>
|
||||
<Target Name="SynEdit_D">
|
||||
<MSBuild Projects="..\..\components\synedit\Packages\110A\SynEdit_D.dproj"/>
|
||||
</Target>
|
||||
<Target Name="SynEdit_D:Clean">
|
||||
<MSBuild Projects="..\..\components\synedit\Packages\110A\SynEdit_D.dproj" Targets="Clean"/>
|
||||
</Target>
|
||||
<Target Name="SynEdit_D:Make">
|
||||
<MSBuild Projects="..\..\components\synedit\Packages\110A\SynEdit_D.dproj" Targets="Make"/>
|
||||
</Target>
|
||||
<Target Name="heidisql">
|
||||
<MSBuild Projects="heidisql.dproj"/>
|
||||
</Target>
|
||||
<Target Name="heidisql:Clean">
|
||||
<MSBuild Projects="heidisql.dproj" Targets="Clean"/>
|
||||
</Target>
|
||||
<Target Name="heidisql:Make">
|
||||
<MSBuild Projects="heidisql.dproj" Targets="Make"/>
|
||||
</Target>
|
||||
<Target Name="Build">
|
||||
<CallTarget Targets="VirtualTreesR;VirtualTreesD;SynEdit_R;SynEdit_D;heidisql"/>
|
||||
</Target>
|
||||
<Target Name="Clean">
|
||||
<CallTarget Targets="VirtualTreesR:Clean;VirtualTreesD:Clean;SynEdit_R:Clean;SynEdit_D:Clean;heidisql:Clean"/>
|
||||
</Target>
|
||||
<Target Name="Make">
|
||||
<CallTarget Targets="VirtualTreesR:Make;VirtualTreesD:Make;SynEdit_R:Make;SynEdit_D:Make;heidisql:Make"/>
|
||||
</Target>
|
||||
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
|
||||
</Project>
|
||||
164
packages/Delphi11.1/heidisql.mes
vendored
Normal file
164
packages/Delphi11.1/heidisql.mes
vendored
Normal file
@@ -0,0 +1,164 @@
|
||||
[GeneralSettings]
|
||||
HandleExceptions=1
|
||||
AppendMapFileToBinary=1
|
||||
NoOwnMadExceptSettings=0
|
||||
CheckFileCrc=1
|
||||
CheckForFrozenMainThread=0
|
||||
FreezeTimeout=60000
|
||||
AutomaticallySaveBugReport=0
|
||||
AutoSaveBugReportIfNotSent=0
|
||||
AutomaticallyMailBugReport=0
|
||||
AutoMailProgressBox=0
|
||||
CopyBugReportToClipboard=0
|
||||
SuspendAllRunningThreads=0
|
||||
ShowPleaseWaitBox=1
|
||||
PleaseWaitIcon=plwait1
|
||||
AutomaticallyContinueApplication=1
|
||||
AutomaticallyRestartApplication=0
|
||||
AutomaticallyCloseApplication=0
|
||||
MailAddress=
|
||||
SendInBackground=0
|
||||
Send32Icon=send321
|
||||
MailAsSmtpServer=0
|
||||
MailAsSmtpClient=0
|
||||
UploadViaHttp=1
|
||||
MailViaMapi=0
|
||||
MailViaMailto=0
|
||||
SmtpServer=
|
||||
SmtpPort=0
|
||||
SmtpAccount=
|
||||
SmtpPassword=
|
||||
HttpServer=www.heidisql.com/bugreport.php
|
||||
HttpPort=443
|
||||
HttpAccount=
|
||||
HttpPassword=
|
||||
BugReportFile=bugreport.txt
|
||||
AttachBugReport=1
|
||||
AttachBugReportFile=1
|
||||
DeleteBugReportFile=1
|
||||
BugReportSendAs=bugreport.txt
|
||||
BugReportZip=
|
||||
ScreenShotDepth=0
|
||||
ScreenShotAppOnly=1
|
||||
ScreenShotSendAs=screenshot.png
|
||||
ScreenShotZip=
|
||||
AdditionalAttachments=
|
||||
AppendBugReports=0
|
||||
BugReportFileSize=100000
|
||||
DontSaveDuplicateExceptions=1
|
||||
DontSaveDuplicateFreezings=1
|
||||
DuplicateExceptionDefinition=1
|
||||
DuplicateFreezeDefinition=2
|
||||
ShowExceptionBox=1
|
||||
OkBtnText=&OK
|
||||
DetailsBtnText=&Details
|
||||
PleaseWaitTitle=Information
|
||||
PleaseWaitText=Please wait a moment...
|
||||
MailSubject=bug report
|
||||
MailBody=please find the bug report attached
|
||||
SendBoxTitle=Sending bug report...
|
||||
PrepareAttachMsg=Preparing attachments...
|
||||
MxLookupMsg=Searching for mail server...
|
||||
ConnectMsg=Connecting to server...
|
||||
AuthMsg=Authentication...
|
||||
SendMailMsg=Sending mail...
|
||||
FieldsMsg=Setting fields...
|
||||
SendAttachMsg=Sending attachments...
|
||||
SendFinalizeMsg=Finalizing...
|
||||
MailFailureMsg=Sorry, sending the bug report didn't work.
|
||||
VersionVariable=
|
||||
MesVersion=4
|
||||
LinkInCode=1
|
||||
ReportLeaks=0
|
||||
WindowsLogo=0
|
||||
CrashOnBuffer=0
|
||||
CrashOnUnderrun=0
|
||||
SendHelper=196608
|
||||
HttpSsl=1
|
||||
UploadToFogBugz=0
|
||||
UploadToBugZilla=0
|
||||
UploadToMantis=0
|
||||
BugTrackerAccount=
|
||||
BugTrackerPassword=
|
||||
BugTrackerProject=
|
||||
BugTrackerArea=
|
||||
BugTrackerAssignTo=
|
||||
SmtpSsl=0
|
||||
SmtpTls=0
|
||||
BugTrackerTitle=%25appname%25, %25exceptMsg%25
|
||||
BugTrackerDescr=error details: %0d%0a%25errorDetails%25
|
||||
[ExceptionBox]
|
||||
ShowButtonMailBugReport=1
|
||||
ShowButtonSaveBugReport=1
|
||||
ShowButtonPrintBugReport=0
|
||||
ShowButtonShowBugReport=1
|
||||
ShowButtonContinueApplication=1
|
||||
ShowButtonRestartApplication=1
|
||||
ShowButtonCloseApplication=1
|
||||
IconButtonSendBugReport=send1
|
||||
IconButtonSaveBugReport=save1
|
||||
IconButtonPrintBugReport=print1
|
||||
IconButtonShowBugReport=show1
|
||||
IconButtonContinueApplication=continue1
|
||||
IconButtonCantContinueApplication=cantContinue1
|
||||
IconButtonRestartApplication=restart1
|
||||
IconButtonCloseApplication=close1
|
||||
FocusedButton=0
|
||||
SendAssistant=SendAssistant
|
||||
SaveAssistant=
|
||||
PrintAssistant=PrintAssistant
|
||||
AutomaticallyShowBugReport=0
|
||||
NoOwnerDrawButtons=0
|
||||
BigExceptionIcon=big1
|
||||
TitleBar=%25appname%25
|
||||
ExceptionMessage=An error occurred in the application.
|
||||
FrozenMessage=The application seems to be frozen.
|
||||
BitFaultMsg=The file "%25modname%25" seems to be corrupt!
|
||||
MailBugReportText=send bug report
|
||||
SaveBugReportText=save bug report
|
||||
PrintBugReportText=print bug report
|
||||
ShowBugReportText=show bug report
|
||||
ContinueApplicationText=continue application
|
||||
RestartApplicationText=restart application
|
||||
CloseApplicationText=close application
|
||||
[BugReport]
|
||||
ListThreads=0
|
||||
ListModules=0
|
||||
ListHardware=0
|
||||
ShowCpuRegisters=0
|
||||
ShowStackDump=0
|
||||
Disassembly=0
|
||||
HideUglyItems=0
|
||||
ShowRelativeAddrs=0
|
||||
ShowRelativeLines=1
|
||||
FormatDisassembly=0
|
||||
LimitDisassembly=5
|
||||
EnabledPlugins=
|
||||
[Filters]
|
||||
Filter1ExceptionClasses=EDBEditError
|
||||
Filter1DontCreateBugReport=1
|
||||
Filter1DontCreateScreenshot=1
|
||||
Filter1DontSuspendThreads=1
|
||||
Filter1DontCallHandlers=1
|
||||
Filter1ShowBox=3
|
||||
Filter1Assis=
|
||||
Filter2ExceptionClasses=
|
||||
Filter2DontCreateBugReport=0
|
||||
Filter2DontCreateScreenshot=0
|
||||
Filter2DontSuspendThreads=0
|
||||
Filter2DontCallHandlers=0
|
||||
Filter2ShowBox=0
|
||||
Filter2Assis=
|
||||
GeneralDontCreateBugReport=0
|
||||
GeneralDontCreateScreenshot=0
|
||||
GeneralDontSuspendThreads=0
|
||||
GeneralDontCallHandlers=0
|
||||
GeneralShowBox=0
|
||||
GeneralAssis=
|
||||
[Assistants]
|
||||
Assistant1=SendAssistant|Send Assistant|ContactForm|DetailsForm|ScrShotForm
|
||||
Assistant2=SaveAssistant|Save Assistant|ContactForm|DetailsForm
|
||||
Assistant3=PrintAssistant|Print Assistant|ContactForm|DetailsForm
|
||||
Forms1=TPF0%0eTMEContactForm%0bContactForm%07Message%0c%13%00%00%00Contact Information%08MinWidth%04%00%00%00%00%08OnAction%0c%1b%00%00%00madExcept.HandleContactForm%05Timer%04%00%00%00%00%00%09INVButton%0bContinueBtn%07Caption%0c%08%00%00%00Continue%07Enabled%09%0bNoOwnerDraw%08%07Visible%09%00%00%09INVButton%07SkipBtn%07Caption%0c%04%00%00%00Skip%07Enabled%08%0bNoOwnerDraw%08%07Visible%09%00%00%09INVButton%09CancelBtn%07Caption%0c%06%00%00%00Cancel%07Enabled%09%0bNoOwnerDraw%08%07Visible%09%00%00%08INVLabel%06Label1%07Caption%0c%0a%00%00%00your name:%07Enabled%09%07Spacing%04%00%00%00%00%00%00%07INVEdit%08NameEdit%07Colored%09%07Enabled%09%05Lines%04%01%00%00%00%08Optional%09%0aOutputName%0c%0c%00%00%00contact name%0aOutputType%07%09nvoHeader%07Spacing%04%00%00%00%00%04Text%0c%00%00%00%00%05Valid%09%00%00%08INVLabel%06Label2%07Caption%0c%0b%00%00%00your email:%07Enabled%09%07Spacing%04%00%00%00%00%00%00%07INVEdit%09EmailEdit%07Colored%09%07Enabled%09%05Lines%04%01%00%00%00%08Optional%08%0aOutputName%0c%0d%00%00%00contact email%0aOutputType%07%09nvoHeader%07Spacing%04%00%00%00%00%04Text%0c%00%00%00%00%05Valid%09%00%00%0bINVCheckBox%08MemCheck%07Caption%0c%0b%00%00%00remember me%07Checked%08%07Enabled%09%0aOutputName%0c%00%00%00%00%07Spacing%04%00%00%00%00%00%00%00
|
||||
Forms2=TPF0%0eTMEDetailsForm%0bDetailsForm%07Message%0c%0d%00%00%00Error Details%08MinWidth%04%00%00%00%00%08OnAction%0c%00%00%00%00%05Timer%04%00%00%00%00%00%09INVButton%0bContinueBtn%07Caption%0c%08%00%00%00Continue%07Enabled%09%0bNoOwnerDraw%08%07Visible%09%00%00%09INVButton%07SkipBtn%07Caption%0c%04%00%00%00Skip%07Enabled%09%0bNoOwnerDraw%08%07Visible%09%00%00%09INVButton%09CancelBtn%07Caption%0c%06%00%00%00Cancel%07Enabled%09%0bNoOwnerDraw%08%07Visible%09%00%00%08INVLabel%06Label1%07Caption%0c'%00%00%00in which situation did the error occur?%07Enabled%09%07Spacing%04%00%00%00%00%00%00%07INVEdit%0bDetailsMemo%07Colored%09%07Enabled%09%05Lines%04%09%00%00%00%08Optional%08%0aOutputName%0c%0d%00%00%00error details%0aOutputType%07%0dnvoOwnSection%07Spacing%04%00%00%00%00%04Text%0c%00%00%00%00%05Valid%09%00%00%00
|
||||
Forms3=TPF0%0eTMEScrShotForm%0bScrShotForm%0dActiveControl%07%0bContinueBtn%07Message%0c%18%00%00%00Screenshot Configuration%08MinWidth%04%00%00%00%00%08OnAction%0c%1e%00%00%00madExcept.HandleScreenshotForm%05Timer%04%fa%00%00%00%00%09INVButton%0bContinueBtn%07Caption%0c%08%00%00%00Continue%07Enabled%09%0bNoOwnerDraw%08%07Visible%09%00%00%09INVButton%07SkipBtn%07Caption%0c%04%00%00%00Skip%07Enabled%08%0bNoOwnerDraw%08%07Visible%09%00%00%09INVButton%09CancelBtn%07Caption%0c%06%00%00%00Cancel%07Enabled%09%0bNoOwnerDraw%08%07Visible%09%00%00%0bINVCheckBox%0bAttachCheck%07Caption%0c%25%00%00%00attach a screenshot to the bug report%07Checked%09%07Enabled%09%0aOutputName%0c%00%00%00%00%07Spacing%04%00%00%00%00%00%00%08INVImage%0aScrShotImg%06Border%09%09Clickable%09%07Enabled%09%04File%0c%00%00%00%00%06Height%04%00%00%00%00%07Spacing%04%00%00%00%00%05Width%04%00%00%00%00%00%00%08INVLabel%06Label1%07Caption%0c%15%00%00%00(click to edit image)%07Enabled%09%07Spacing%04%00%00%00%00%00%00%00
|
||||
Reference in New Issue
Block a user