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
|
For more information about RAPPS, please take a look at the [wiki](https://reactos.org/wiki/RAPPS)
ADDING PROGRAMS TO THE RAPPS DATABASE
--------------------------------------------------
Each program entry consists of a text file formatted with an INI-like syntax.
They must be encoded in UTF-8 without BOM (Byte Order Mask) in this repository.
However, when you are testing a new entry file with RAPPS in ReactOS or Windows, they are stored in UTF-16 LE (Little Endian) encoding in the `rapps` folder on disk - otherwise characters out of the ANSI range will display broken.
**Note:** some editors like Notepad++ call this format `UCS-2 Little Endian.`
Each `[Section]` is language-independent and individual, you can override the URL to a source program or any other field by adding a language-specific `[Section.]`, followed by the language code.
**Note:** You can find a complete listing of LCIDs and language names on [MSDN](https://msdn.microsoft.com/en-us/library/windows/desktop/dd318693%28v=vs.85%29.aspx), includes neutral codes:
RAPPS also accepts neutral language codes, meaning that you can do things like this:
; Default English fallback, used if everything else fails.
[Section]
Name = Name in English
; Neutral Spanish, used if the specific variant of Spanish does not match.
[Section.0a]
Name = Name in Generic Spanish
; Spanish from Spain, used if the system is configured for it.
[Section.0c0a]
Name = Name in Castilian Spanish
You can also define an entry without English fallback to make it visible to certain users only.
For instance; software from 1C, which is mostly for Russian speakers and unusable for anyone else.
For a complete file format overview see the [File Schema on the ReactOS wiki](https://reactos.org/wiki/RAPPS#File_Schema)
The mandatory fields are: *Name*, *Category*, *URLDownload* and *SizeBytes*.
All other fields are completely optional and can be skipped.
List of valid categories:
1. Audio
2. Video
3. Graphics
4. Games
5. Internet
6. Office
7. Development
8. Edutainment
9. Engineering
10. Finance
11. Science
12. Tools
13. Drivers
14. Libraries
15. Themes
16. Other
The official list of downloadable programs is kept on a public ReactOS server and synced every time RAPPS is launched for the first time.
|