1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-03-12 04:07:01 -04:00

Android version

- version info updates
- bug fix
This commit is contained in:
lufebe16 2024-10-31 09:33:08 +01:00
parent ba202f67c1
commit b7569e79c2
12 changed files with 19 additions and 8 deletions

View file

@ -11,8 +11,8 @@ Main Authors
* macOS package maintainer
* [Shlomi Fish](https://www.shlomifish.org/)
* Continued PySolFC maintenance, port to python 3, test suite (Note: he places all his changes under the Expat licence).
* https://github.com/lufebe16
* Added the Kivy toolkit
* [lufebe16](https://github.com/lufebe16)
* Added the Kivy toolkit and all the Android app related code and build procedures.
* [Roderik Ploszek](https://github.com/Programator2)
* Fixes and enhancements
* [Joe R.](https://github.com/joeraz)

View file

@ -9,7 +9,7 @@ else
fi
# current android version mumber.
version="3.0.0"
version="3.1.0"
sversion=$(echo $version | sed -E "s:(.*)\..*:\1:")
tuple=$(echo $version | sed -E "s:(.*)\.(.*)\.(.*):(\1, \2, \3):")

View file

@ -11,10 +11,10 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 102130000,
"versionName": "3.0.0",
"versionCode": 102130100,
"versionName": "3.1.0",
"outputFile": "pysolfc-release.apk"
}
],
"elementType": "File"
}
}

View file

@ -0,0 +1,3 @@
- some new games (see under games/by-pysol-version)
- bugfixes.
- consult NEWS.asscidoc or html-src/news.html on the github repo and https://pysolfc.sourceforge.io for more informations.

View file

@ -6,7 +6,7 @@
<li><a href="https://sourceforge.net/u/skomoroh/profile/">Skomoroh</a> - Author of PySolFC</li>
<li><a href="https://sourceforge.net/u/brianl/profile/">Brian Lenihan</a> - MacOS package maintainer</li>
<li><a href="https://www.shlomifish.org/">Shlomi Fish</a> - Continued PySolFC maintenance, port to python 3, test suite (Note: he places all his changes under the Expat licence).</li>
<li><a href="https://github.com/lufebe16">https://github.com/lufebe16</a> - Added the Kivy toolkit</li>
<li><a href="https://github.com/lufebe16">lufebe16</a> - Added the Kivy toolkit and all the Android app related code and build procedures.</li>
<li><a href="https://github.com/Programator2">Roderik Ploszek</a> - Fixes and enhancements</li>
<li><a href="https://github.com/joeraz">Joe R.</a> - Many new games and continued PySolFC maintenance and development.</li>
</ul>
@ -36,4 +36,4 @@
</ul>
<p>
<a href="credits_old.html">View original PySol credits</a>
</p>
</p>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -1401,6 +1401,11 @@ class LWorkWindow(Widget):
# return True
# =============================================================================
# TkBase:
# When using (introducing) new methods of the main tk window in the tk-version
# please check if that method is catched here. And provide appropriate
# implementation if needed. Otherwise the android version will crash.
# LB241029.
class LTkBase:
@ -1564,6 +1569,9 @@ class LTkBase:
return True
# ???
def attributes(self, *args):
pass
# =============================================================================