-
Notifications
You must be signed in to change notification settings - Fork 4
Installation En
To install the mod, go here. Insert it on both the server and the client.
To simplify data storage, the mod requires the creation of a database. Several options are available; you can connect the mod to an SQL database or use SQLite for local operation. MongoDB usage is planned for the future.
To establish the connection between the database and the server, the mod will create a bdd.properties file.
For MySQL, use the url
, user
, and password
properties (see example). For MySQL installation, search the internet as numerous tutorials already exist, such as this one.
Example for MySQL:
url=jdbc:mysql://[DATABASE IP]:[DATABASE PORT]/[DATABASE NAME]?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&autoReconnect=true
user=
password=
dbtype=mysql
user
and password
are used to provide the database connection credentials.
And here's an example for SQLITE:
dbtype=sqlite
The mod will automatically create a file sphone.db
. If you want to edit this file, various software is available: DB Browser for SQLITE.
⚠️ Use SQLITE at your own risk.
If you want to customize the mod (e.g., the city name in the Weather application), you can edit the .lang files of the mod. You will find several properties such as sphone.meteo.cityname
to modify the displayed city name in the application.
(WIP)
- You can add wallpapers by editing the
backgrounds.json
file inassets/sphone/ui/backgrounds/backgrounds.json
. Simply add an element to the JSON file like this:
{
"backgrounds":[
{
"id":"example",
"name":"Example"
}
]
}
The image should be located like this: assets/sphone/textures/ui/background/[ID].png
- You can change the time format displayed here:
by modifying the value sphone.timeformat
in the .lang file.
Note: The
id
property must be unique.