Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
emiMobile
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mac Stephens
emiMobile
Commits
ca97cf69
Commit
ca97cf69
authored
Sep 07, 2026
by
Elias Sarraf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ver 0.9.4.3 wip
parent
b47e6601
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
14 deletions
+19
-14
Common.Ini.pas
emiMobileServer/Source/Common.Ini.pas
+1
-1
Main.pas
emiMobileServer/Source/Main.pas
+8
-0
emiMobileServer.ini
emiMobileServer/bin/emiMobileServer.ini
+5
-5
emiMobileServer.dpr
emiMobileServer/emiMobileServer.dpr
+2
-2
emiMobileServer.dproj
emiMobileServer/emiMobileServer.dproj
+2
-2
wcEmiMobile.dpr
webEMIMobile/wcEmiMobile.dpr
+1
-4
No files found.
emiMobileServer/Source/Common.Ini.pas
View file @
ca97cf69
...
@@ -97,7 +97,7 @@ begin
...
@@ -97,7 +97,7 @@ begin
FDatabaseServer
:=
iniFile
.
ReadString
(
'Database'
,
'Server'
,
''
);
FDatabaseServer
:=
iniFile
.
ReadString
(
'Database'
,
'Server'
,
''
);
FDatabaseServerFromIni
:=
iniFile
.
ValueExists
(
'Database'
,
'Server'
);
FDatabaseServerFromIni
:=
iniFile
.
ValueExists
(
'Database'
,
'Server'
);
FDatabasePort
:=
iniFile
.
ReadInteger
(
'Database'
,
'Port'
,
543
3
);
FDatabasePort
:=
iniFile
.
ReadInteger
(
'Database'
,
'Port'
,
543
2
);
FDatabasePortFromIni
:=
iniFile
.
ValueExists
(
'Database'
,
'Port'
);
FDatabasePortFromIni
:=
iniFile
.
ValueExists
(
'Database'
,
'Port'
);
FDatabaseName
:=
iniFile
.
ReadString
(
'Database'
,
'Database'
,
'lems_wcso'
);
FDatabaseName
:=
iniFile
.
ReadString
(
'Database'
,
'Database'
,
'lems_wcso'
);
...
...
emiMobileServer/Source/Main.pas
View file @
ca97cf69
...
@@ -181,6 +181,14 @@ begin
...
@@ -181,6 +181,14 @@ begin
Logger
.
Log
(
1
,
LogValue
(
'--Settings->LogFileNum'
,
IniEntries
.
LogFileNum
.
ToString
,
IniEntries
.
LogFileNumFromIni
));
Logger
.
Log
(
1
,
LogValue
(
'--Settings->LogFileNum'
,
IniEntries
.
LogFileNum
.
ToString
,
IniEntries
.
LogFileNumFromIni
));
Logger
.
Log
(
1
,
LogValue
(
'--Settings->webClientVersion'
,
IniEntries
.
WebClientVersion
,
IniEntries
.
WebClientVersionFromIni
));
Logger
.
Log
(
1
,
LogValue
(
'--Settings->webClientVersion'
,
IniEntries
.
WebClientVersion
,
IniEntries
.
WebClientVersionFromIni
));
Logger
.
Log
(
1
,
'--- Database ---'
);
Logger
.
Log
(
1
,
LogValue
(
'--Database->Server'
,
IniEntries
.
DatabaseServer
,
IniEntries
.
DatabaseServerFromIni
));
Logger
.
Log
(
1
,
LogValue
(
'--Database->Port'
,
IniEntries
.
DatabasePort
.
ToString
,
IniEntries
.
DatabasePortFromIni
));
Logger
.
Log
(
1
,
LogValue
(
'--Database->Name'
,
IniEntries
.
DatabaseName
,
IniEntries
.
DatabaseNameFromIni
));
Logger
.
Log
(
1
,
LogValue
(
'--Database->Username'
,
IniEntries
.
DataBaseUsername
,
IniEntries
.
DatabaseUsernameFromIni
));
Logger
.
Log
(
1
,
LogValue
(
'--Database->Password'
,
IniEntries
.
DatabasePassword
,
IniEntries
.
DatabasePasswordFromIni
));
Logger
.
Log
(
1
,
''
);
Logger
.
Log
(
1
,
''
);
Logger
.
Log
(
1
,
''
);
Logger
.
Log
(
1
,
'--- URLs ---'
);
Logger
.
Log
(
1
,
'--- URLs ---'
);
...
...
emiMobileServer/bin/emiMobileServer.ini
View file @
ca97cf69
[Settings]
[Settings]
LogFileNum
=
1
55
LogFileNum
=
1
01
webClientVersion
=
0.9.4.
1
webClientVersion
=
0.9.4.
2
[Database]
[Database]
Server
=
192.168.91.1
36
Server
=
192.168.91.1
29
--Server
=
192.168.102.10
--Server
=
192.168.102.10
--Server
=
192.168.56.129
--Server
=
192.168.56.129
--Port
=
5432
--Port
=
5432
--Port
=
5433
--Port
=
5433
Database
=
lems_wcso
Database
=
lems_wcso
Username
=
postgres
Username
=
postgres
Password
=
postgreSQL
--
Password
=
postgreSQL
--
Password
=
emsys01
Password
=
emsys01
--Postgre!SQL
--Postgre!SQL
emiMobileServer/emiMobileServer.dpr
View file @
ca97cf69
...
@@ -112,9 +112,9 @@ begin
...
@@ -112,9 +112,9 @@ begin
iniFile := TIniFile.Create( ChangeFileExt(Application.ExeName, '.ini') );
iniFile := TIniFile.Create( ChangeFileExt(Application.ExeName, '.ini') );
try
try
fileNum := iniFile.ReadInteger( 'Settings', 'LogFileNum', 0 );
fileNum := iniFile.ReadInteger( 'Settings', 'LogFileNum', 0 )
+ 1
;
FFilename := AFilename + Format( '%.4d', [fileNum] );
FFilename := AFilename + Format( '%.4d', [fileNum] );
iniFile.WriteInteger( 'Settings', 'LogFileNum', fileNum
+ 1
);
iniFile.WriteInteger( 'Settings', 'LogFileNum', fileNum );
finally
finally
iniFile.Free;
iniFile.Free;
end;
end;
...
...
emiMobileServer/emiMobileServer.dproj
View file @
ca97cf69
...
@@ -108,9 +108,9 @@
...
@@ -108,9 +108,9 @@
<VerInfo_MajorVer>0</VerInfo_MajorVer>
<VerInfo_MajorVer>0</VerInfo_MajorVer>
<VerInfo_MinorVer>9</VerInfo_MinorVer>
<VerInfo_MinorVer>9</VerInfo_MinorVer>
<VerInfo_Release>4</VerInfo_Release>
<VerInfo_Release>4</VerInfo_Release>
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=0.9.4.
1
;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=0.9.2.0;Comments=</VerInfo_Keys>
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=0.9.4.
2
;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=0.9.2.0;Comments=</VerInfo_Keys>
<DCC_UnitSearchPath>C:\RADTOOLS\FastMM4;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
<DCC_UnitSearchPath>C:\RADTOOLS\FastMM4;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
<VerInfo_Build>
1
</VerInfo_Build>
<VerInfo_Build>
2
</VerInfo_Build>
</PropertyGroup>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
<PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
...
...
webEMIMobile/wcEmiMobile.dpr
View file @
ca97cf69
program wcEmiMobile;
program wcEmiMobile;
{$R *.dres}
{$R *.dres}
uses
uses
...
@@ -82,3 +78,4 @@ begin
...
@@ -82,3 +78,4 @@ begin
Application.Run;
Application.Run;
DMConnection.InitApp(@StartApplication, @UnauthorizedAccessProc);
DMConnection.InitApp(@StartApplication, @UnauthorizedAccessProc);
end.
end.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment