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

Android/Kivy:

- metadata updates
- some cleanup
This commit is contained in:
lufebe16 2024-03-21 20:35:04 +01:00
parent d9d02d47ca
commit 468feeb4e1
7 changed files with 31 additions and 62 deletions

View file

@ -1,39 +1,9 @@
#!/bin/bash #!/bin/bash
#set -eux #set -eux
#loadmode="forge"
loadmode=" "
rm -rf cardsets rm -rf cardsets
if [ "$loadmode" == "forge" ]; then if [ 1 ]; then
cardsets_dir=PySolFC-Cardsets--Minimal-2.2.0
cardsets_file=${cardsets_dir}.tar.xz
echo '### prepare cardsets'
if [ ! -f ${cardsets_file} ]; then
echo '### downloading cardsets'
wget https://netix.dl.sourceforge.net/project/pysolfc/PySolFC-Cardsets/minimal/${cardsets_file}
fi
if [ ! -d ${cardsets_dir} ]; then
echo '### extracting cardsets'
tar -xf ${cardsets_file}
fi
echo '### processing cardsets'
(
cd ${cardsets_dir}
../../scripts/cardconv gif png
for i in cardset-*-png; do
rm -rf `basename $i -png`
done
)
ln -s ${cardsets_dir} cardsets
else
cardsets_dir=PySolFC-Cardsets cardsets_dir=PySolFC-Cardsets
if [ ! -d ${cardsets_dir} ]; then if [ ! -d ${cardsets_dir} ]; then

View file

@ -1,11 +1,12 @@
PySolFC ist eine Kollektion von Solitair Spielen. PySolFC ist eine Kollektion von Solitair Spielen.
Das Projekt bietet über mehr als 1000 unterschiedliche Spiele wie Patiencen, PySolFC ist eine Desktop-Anwendung, die unter Linux, Windows und Mac läuft. Sie
Mahjongg, shishensho, memories und andere. Das Originalprojekt läuft unter bietet mehr als 1000 Solitärspiele wie Patiencen, Mahjongg, Shishensho, Memory
Linux, Windows und MacOS und wurde ursprünglich auf Sourceforge publiziert. und andere und wird auf
<a href="https://pysolfc.sourceforge.io/">https://pysolfc.sourceforge.io/</a>. <a href="https://pysolfc.sourceforge.io/">https://pysolfc.sourceforge.io</a>
veröffentlicht. Wenn Sie nach einer Desktop-Version suchen, werfen Sie einen
Blick darauf.
Das Projekt war in weiser Voraussicht so konzipiert, dass Die Android-App basiert auf dieser Arbeit und stellt eine Auswahl der
es unterschiedliche Grafik Systeme zu unterstützen in der Lage war. Auf diesem Desktopfunktionen bereit. Sie wird von ausgewählten Snapshots aus
Ansatz wurde eine neue Grafikoberfläche mit dem Kivy Framework realisiert, den Quellen erstellt und veröffentlicht.
welches auch auf Android lauffähig ist.

View file

@ -1,24 +1,14 @@
Android specific: Android specific:
- Temporary screen orientation lock added. When the app starts (or - Temporary screen orientation lock added. When the app starts (or restarts) the screen will rotate according to the device orientation. While playing a game screen rotation is locked with the first card selection. Screen rotation lock can be disabled by a double click to the free game area.
restarts) the screen will rotate according to the device orientation. - Toolbar: general toolbar show/hide for inividual buttons added to the options menu.
While playing a game screen rotation is locked with the first
card selection. Screen rotation lock can be disabled by a double click to
the free game area.
- Toolbar: general toolbar show/hide for inividual buttons added to the
options menu.
- Toolbar: dynamic updates on Toolbar and Options settings. - Toolbar: dynamic updates on Toolbar and Options settings.
- Toolbar: To prevent occasional restarts or redeals due to 'fat fingers' - Toolbar: To prevent occasional restarts or redeals due to 'fat fingers' a toast has been added to buttons for 'new deal' and 'restart'. To accept the command tap onto it.
a toast has been added to buttons for 'new deal' and 'restart'. To
accept the command tap onto it.
- Implementation of full picture preview for the new puzzle type games. - Implementation of full picture preview for the new puzzle type games.
- Background images from the save-aspect folder now are preserving - Background images from the save-aspect folder now are preserving correct aspect ratio (bug fix).
correct aspect ratio (bug fix).
- Mahjongg tile overlapping (3d simulation) is now implemented. - Mahjongg tile overlapping (3d simulation) is now implemented.
- Animation of card moves reworked. This fixes some stacking order corruptions - Animation of card moves reworked. This fixes some stacking order corruptions reported earlier.
reported earlier.
- Display of html-text (game rules, licence etc): Black windows fixed. - Display of html-text (game rules, licence etc): Black windows fixed.
- Upstream libraries updated to kivy v2.2.1 and python v3.10 - Upstream libraries updated to kivy v2.2.1 and python v3.10
Main version: Main version:
- many new games. - many new games.
- consult NEWS.asscidoc or html-src/news.html on the github repo for more - consult NEWS.asscidoc or html-src/news.html on the github repo for more change informations.
change informations.

View file

@ -1,7 +1,11 @@
PySolFC is a collection of solitaire games written in Python. PySolFC is a collection of solitaire games written in Python.
The project provides more than 1000 solitaire games such as patiences, mahjongg, PySolFC is a desktop application that runs on Linux, Windows and Mac. It
shishensho, memory and others. The original project runs on linux, windows and offers more than 1000 solitaire games such as Patience, Mahjongg, Shishensho,
macos and was published at sourceforge. See <a href="https://pysolfc.sourceforge.io/">https://pysolfc.sourceforge.io/</a>. Memory and others and is published on
A new user interface has been developed using the kivy framework to meet <a href="https://pysolfc.sourceforge.io/">https://pysolfc.sourceforge.io</a>.
requirements of touch screens devices. If you are looking for a desktop version, take a look.
The Android app is based on this work and provides a selection of the desktop
functions. It is created and published from selected snapshots out of
the sources.

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

View file

@ -228,7 +228,7 @@ class PysolAboutDialog(object):
logging.info('PysolAboutDialog: txt=%s' % text) logging.info('PysolAboutDialog: txt=%s' % text)
text = text + '\n\n' + 'Adaptation to Kivy/Android\n' + \ text = text + '\n\n' + 'Adaptation to Kivy/Android\n' + \
' Copyright (C) (2016-23) LB' ' Copyright (C) (2016-24) LB'
self.parent = parent self.parent = parent
self.app = app self.app = app

View file

@ -405,7 +405,11 @@ class Options:
self.mouse_button1 = 1 self.mouse_button1 = 1
self.mouse_button2 = 2 self.mouse_button2 = 2
self.mouse_button3 = 3 self.mouse_button3 = 3
self.mouse_type = 'drag-n-drop' # or 'sticky-mouse' or 'point-n-click' # mouse_type: 'drag-n-drop' or 'sticky-mouse' or 'point-n-click'
if TOOLKIT == 'kivy':
self.mouse_type = 'point-n-click'
else:
self.mouse_type = 'drag-n-drop'
self.mouse_undo = False # use mouse for undo/redo self.mouse_undo = False # use mouse for undo/redo
self.negative_bottom = True self.negative_bottom = True
self.translate_game_names = True self.translate_game_names = True