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

Fixed HTTPS linking in the documentation.

This commit is contained in:
Joe R 2021-12-28 17:13:02 -05:00
parent 14658b9a6c
commit 3f9853f7ec
4 changed files with 9 additions and 6 deletions

View file

@ -35,7 +35,7 @@ Enhancements to the tree select dialogs for selecting games, cardsets, and table
</li>
<li>
<p>
Further additions/improvements to the <a href="doc/index.html">documentation</a>.
Further additions/improvements to the <a href="index.html">documentation</a>.
</p>
</li>
<li>
@ -138,10 +138,10 @@ v2.8.0</a>. New in this release:</p>
<p>Fixed <a href="https://github.com/shlomif/PySolFC/issues/111">Three Peaks scoring</a>.</p>
</li>
<li>
<p>Compatibility with Pillow 6.x - <a href="https://github.com/shlomif/PySolFC/issues/108" class="bare">https://github.com/shlomif/PySolFC/issues/108</a></p>
<p>Compatibility with Pillow 6.x (<a href="https://github.com/shlomif/PySolFC/issues/108" class="bare">ticket</a>)</p>
</li>
<li>
<p>Restore the "Save games geometry" feature - <a href="https://github.com/shlomif/PySolFC/issues/84" class="bare">https://github.com/shlomif/PySolFC/issues/84</a></p>
<p>Restore the "Save games geometry" feature (<a href="https://github.com/shlomif/PySolFC/issues/84" class="bare">ticket</a>)</p>
</li>
<li>
<p>Added a NEWS.asciidoc file.</p>

View file

@ -39,7 +39,8 @@ from pysollib.mygettext import _
from pysollib.pysoltk import MfxMessageDialog
from pysollib.settings import TITLE
REMOTE_PROTOCOLS = ("ftp:", "gopher:", "http:", "mailto:", "news:", "telnet:")
REMOTE_PROTOCOLS = ("ftp:", "gopher:", "http:", "https:", "mailto:", "news:",
"telnet:")
# ************************************************************************
# *

View file

@ -48,7 +48,8 @@ if __name__ == '__main__':
import gettext
gettext.install('pysol', d, unicode=True)
REMOTE_PROTOCOLS = ('ftp:', 'gopher:', 'http:', 'mailto:', 'news:', 'telnet:')
REMOTE_PROTOCOLS = ('ftp:', 'gopher:', 'http:', 'https:', 'mailto:', 'news:',
'telnet:')
# ************************************************************************

View file

@ -33,7 +33,8 @@ from pysollib.ui.tktile.tkutil import bind, unbind_destroy
from six.moves import tkinter
REMOTE_PROTOCOLS = ("ftp:", "gopher:", "http:", "mailto:", "news:", "telnet:")
REMOTE_PROTOCOLS = ("ftp:", "gopher:", "http:", "https:", "mailto:", "news:",
"telnet:")
# ************************************************************************
# *