1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

correct grammar

This commit is contained in:
Shlomi Fish 2018-03-14 12:47:28 +02:00
parent 87ebf11996
commit 58f458f58a

View file

@ -2,18 +2,18 @@
Introduction Introduction
------------ ------------
This is a (inofficial) Fork of the PysolFC-2.0 open source project This is a version of the PySol FC open source project
(http://pysolfc.sourceforge.net) (http://pysolfc.sourceforge.net)
Early investigations of the code showed, that it would not be Early investigations of the code showed, that it would not be
a too big effort to replace or add a new user interface (UI). a too big effort to add a new user interface (UI).
The new UI using kivy has been designed to meet requirments The new UI using kivy has been designed to meet requirements
of tablet and smartphone devices. Most of the functionality of tablet and smartphone devices. Most of the functionality
of the original version has been maintained of the original version has been maintained
The new UI is selected via a new command line option '--kivy'. The new UI is selected via a new command line option '--kivy'.
Original user interfaces will continue to work. To run the The original user interfaces will continue to work. To run the
kivy version call: kivy version call:
$ python pysol.py --kivy $ python pysol.py --kivy
@ -22,27 +22,27 @@ $ python pysol.py --kivy
Images Images
------ ------
Original images supplied by the collection are of type The original images supplied by the collection are of type
gif. In kivy that image type loads very slow. Also many gif. In kivy, that image type loads very slowly. Moreover, many
cards cannot be loaded, because of decoding errors. cards cannot be loaded, because of decoding errors.
To prevent from these problems, the kivy version was To prevent these problems, the kivy version was
modified to not read any gif images. modified to not read any gif images.
Some cardsets have been translated to png, a format Some cardsets have been translated to PNG, a format
that is processed by both the tcl and the kivy version. that is processed by both the tk and the kivy versions.
Some others, for which transparency information is not Some others, for which transparency information is not
processed correctly even from png images, have been translated processed correctly even from the PBF images, have been translated
to the bmp image format (while keeping their gif variant for to the BMP image format (while keeping their GIF variant for
the tcl version). bmp format is only processed by the the tk version). BMP format is only processed by the
kivy version. kivy version.
Additional cardsets are available from the SourceForge Additional cardsets are available from the SourceForge
project. To use them with kivy, they need to be converted to project. To use them with kivy, they need to be converted to
bmp format. A shell script 'cardsetsgiftobmp' has been added the BMP format. A shell script, 'cardsetsgiftobmp' , has been added
to the scripts directory (needs bash and ImageMagick). to the scripts directory (it requires Bash and ImageMagick).
For all gif-images in directories data/images and data/tiles For all GIF images in the directories data/images and data/tiles ,
a duplicate image in png format has been added too. corresponding images in the PNG format have been added too.
LB170321. LB170321.