From 20096a88c8d120a1915831d38af063b147112319 Mon Sep 17 00:00:00 2001 From: Joe R Date: Wed, 15 Feb 2023 19:29:40 -0500 Subject: [PATCH] Documentation on plugins, and code to support multiple versions of plugin import module. --- html-src/gen-html.py | 1 + html-src/index.html | 1 + html-src/plugins.html | 14 ++++++++++++++ html-src/solitaire_wizard.html | 6 ++++-- pysollib/gamedb.py | 21 +++++++++++++++++---- 5 files changed, 37 insertions(+), 6 deletions(-) create mode 100644 html-src/plugins.html diff --git a/html-src/gen-html.py b/html-src/gen-html.py index ea965f4a..c979321f 100755 --- a/html-src/gen-html.py +++ b/html-src/gen-html.py @@ -64,6 +64,7 @@ files = [ ('assist_options.html', 'PySol - Assist Options'), ('solitaire_wizard.html', 'PySol - Solitaire Wizard'), ('cardset_customization.html', 'PySol - Cardset Customization'), + ('plugins.html', 'PySol - Plugins'), ] rules_files = [ diff --git a/html-src/index.html b/html-src/index.html index 8b0ce34c..c8909c92 100644 --- a/html-src/index.html +++ b/html-src/index.html @@ -16,6 +16,7 @@
  • Assist Options
  • Solitaire Wizard
  • Cardset Customization +
  • Plugins

    Misc