- Update README.ENG. Patch by Ismael Ferreras Morezuelas, with review by Jared Smudde
CORE-9060

svn path=/trunk/; revision=67028
This commit is contained in:
Thomas Faber 2015-04-04 06:48:44 +00:00
parent bd82c844a9
commit 1e9cbe5aab

View file

@ -1,35 +1,69 @@
For more information for RAPPS, see: https://www.reactos.org/wiki/RAPPS For more information about RAPPS, take a look at <https://reactos.org/wiki/RAPPS>
ADDING DOWNLOADABLE PROGRAMMS ADDING DOWNLOADABLE PROGRAMS TO THE RAPPS DATABASE
--------------------------------------------------
For an each programm would be creacted an INI alike syntax. Each program entry consists of a text file formatted with an INI-like syntax.
Also an each field is language inhdepended and individual, an URL's to a source programm is
also maybe different or even nonexisting for anothers languages.
For instance a programm 1C which is mostly interested only for russian users and have no
reason for peoples living in another countries.
The File Overview: They must be encoded in UTF-16 LE (Little Endian) or characters out of the ANSI range
will display broken mojibake, some editors like Notepad++ call this format UCS-2 Little Endian.
If you plan on including your program entry in the ReactOS source code versioning keep in mind
that entries are stored in UTF-8 without BOM (Byte Order Mask) for VCS friendliness.
They get automatically converted to UTF-16 when creating the compressed rappmgr.cab package,
which is how clients obtain their program lists every time a Database upgrade is triggered.
Also, 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 here, includes neutral codes:
<https://msdn.microsoft.com/en-us/library/windows/desktop/dd318693%28v=vs.85%29.aspx>
Now 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.
File format overview:
; This is a INI-style comment, useful for adding additional information.
; Lines starting with a ; character are skipped by the parser.
[Section] [Section]
Name = program name Name = My fun stuff-o-matic
RegName = Name in registry RegName = Name in Registry
Version = 1.1.1 Version = 1.1.1
License = GPL License = GPL
Description = Description Description = Shortish description giving some additional background information about what it does.
Size = 10 mb Size = 10 MB
Category = 5 Category = 5
URLSite = http://www.site.com/ URLSite = https://example.org/
URLDownload = http://ftp.site.com/pub/installer.exe URLDownload = https://ftp.example.org/pub/installer.exe
CDPath = ; Ïîêà íå èñïîëüçóåòñÿ CDPath = ; Path in the local filesystem
[Section.0419] ; 0419 - for Russian language [Section.0419] ; 0419 - for Russian language
Description = Description in Russian language Description = Description in Russian language
...
Obligatory fields are: Name, Category, URLDownload The mandatory fields are: Name, Category and URLDownload
Other fields to fill not necessarily. All other fields are completely optional and can be skipped.
Categories list: List of valid categories:
1 - Audio 1 - Audio
2 - Video 2 - Video
3 - Graphics 3 - Graphics
@ -46,11 +80,21 @@ Categories list:
14 - Libraries 14 - Libraries
15 - Other 15 - Other
The list downloadable programms is keeping on a server and updating from a server The official list of downloadable programs is kept on a public ReactOS server
automatically at first time thes programm is running! and synced every time RAPPS is launched for the first time.
For generating a list of a programm (usually a CAB archive), could be used a batch file CreateCabFile.bat
After downloading (at first time the programm runs around), this file is placing NOTE: You can find the most current URL in rapps.h, defined as APPLICATION_DATABASE_URL.
in the same folder where downloaded programm located to future usage them.
If in some cases an unpacked file is moved, deleted or not exist, then the procedure To generate a RAPPS database (usually a rappmgr.cab archive), use the included scripts:
to create a new one would be repeated.
If the CAB file is moved, deleted or not exist, then it would be downloaded again. For Windows & other NT-derived: CreateCabFile.bat
For Linux & other UNIX flavors: CreateCabFile.sh
Once the rappmgr.cab is downloaded to %appdata%\rapps, RAPPS extracts it using cabinet.dll
inside %appdata%\rapps\rapps, after that, it will parse all the *.txt files contained therein.
Every subsequent time the program tries to access the local .txt files
until a database update is manually triggered by the user.
If the rappmgr.cab file is moved or just missing, RAPPS will download it again.