-
Notifications
You must be signed in to change notification settings - Fork 9
/
INSTALL.TXT
executable file
·66 lines (41 loc) · 2.52 KB
/
INSTALL.TXT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
To install ideU, download the release from here:
https://github.com/fredvs/ideU/releases/
choose the asset of your system, unzip it and run:
For Unix system: (The last character of ideU is a U majuscule)
# /directory/of/ideU/ideU
For MacOs system:
# /directory/of/ideU/ideU.app
For Windows system:
# C:\directory\of\ideU\ideU.exe
-------------------------------------------
To compile-use last commit of ideU, download ideU source code from here:
https://github.com/fredvs/ideU/archive/refs/heads/main.zip
Unzip it and compile the project-file: /ideu/src/ideU.prj using ideU release.
If you want to compile ideU from commandline, go in directory ideu/src/ and
for Linux use that command:
fpc -oideU -Fu/directory_of_mseide-msegui/lib/common/kernel/linux -Fu/directory_of_mseide-msegui/lib/common/* -Mobjfpc -Sh -Fcutf8 -dmse_with_zeoslib -gl -B -Xs -CX -XX -O1 -dmse_dynpo -SIcorba -FUunits -vewinhq -dusemo ideU.pas
for Windows use that command:
fpc.exe -oideU.exe -Fu/directory_of_mseide-msegui/lib/common/kernel/windows -Fu/directory_of_mseide-msegui/lib/common/* -Mobjfpc -Sh -Fcutf8 -dmse_with_zeoslib -B -Xs -CX -XX -O1 -WG -dmse_dynpo -SIcorba -FUunits -vewinhq -dusemo ideU.pas
When ideU is re-compiled, copy the binary in /src/ideU(.exe) and replace the old binary of ideU(.exe) that is in release directory with the copy of the new one.
This because in release is added all the plugins that are not in the source.
--------------------------------------------------------------------------------
To add a new language, use a copy of '/ideu/lang/ideu_empty.po' and fill all the msgstr "" with the translation.
When done, rename the file with the code of your language after the "_" , like 'ideu_xz.po'.
You may also add the translation of the new language name at end of each .po file (not obligatory).
Example add this at end of of the po files:
msgid "Mylanguage [xz]"
msgstr "MyTranslatedLanguage [xz]"
When your .po file is ready, just add it into '/ideu/lang/' folder.
It will be available via the menu Settings-Language.
The .po file is loaded after each menu Settings-Language so you may change the content of the .po when you want.
No need to recompile ideU binary.
-------------------------------------------------------------------------------------
To reset the config to default, delete the folders:
For Windows:
C:\Users\You_User\AppData\Local\ideU
and
C:\Users\You_User\AppData\Roaming\.ideu
For Unix:
/home_user_directory/.ideu
---------------------------------------------------------------------------------------
Fre;D