Skip to content

Commit

Permalink
4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
krystofkomanec committed Mar 5, 2024
1 parent f5b2e08 commit 77870a8
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ To request users to agree with **Privacy Policy** and/or **Terms of Service** do
Support
=======

These settings also allow us to configure **Support Email** that users can use to request help or report issues. Similarly **Support Repository Name** and **Support Repository URL** can be used in case we want users to create tickets in issue tracker of some repository, e.g., on GitHub. These support links are then shown in :guilabel:`Report issue` modal window.
These settings also allow us to configure **Support Email** that users can use to request help or report issues. Similarly **Support Site Name** and **Support Site URL** can be used in case we want users to create tickets in issue tracker of some repository, e.g., on GitHub. These support links are then shown in :guilabel:`Report issue` modal window.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
project_name_full = 'Data Stewardship Wizard'

# The full version, including alpha/beta/rc tags
version = release = '4.3'
version = release = '4.4'

rst_prolog = f"""
Expand Down
20 changes: 12 additions & 8 deletions docs/more/development/document-templates/steps/pandoc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,29 @@ Options
- ``from`` = specification of the input format (passed to Pandoc via ``--from``, see `docs <https://pandoc.org/MANUAL.html#general-options>`__)
- ``to`` = specification of the output format (passed to Pandoc via ``--to``, see `docs <https://pandoc.org/MANUAL.html#general-options>`__)
- (optional) ``args`` = additional command line arguments passed to `pandoc <https://pandoc.org/MANUAL.html>`__
- (optional, experimental) ``filters`` = additional `Pandoc filters <https://pandoc.org/MANUAL.html#general-options>`__ to be used, need to be located under ``/pandoc/filters`` directory (or other set by ``PANDOC_FILTERS`` environment variable), comma separated
- (optional, experimental) ``template`` = `Pandoc template <https://pandoc.org/MANUAL.html#general-options>`__ to be used, need to be located under ``/pandoc/templates`` directory (or other set by ``PANDOC_TEMPLATES`` environment variable)

Notes
=====

- Pandoc filter ``pandoc-docx-pagebreakpy`` can be found in `addons <../../addons>`__ directory.
- Pandoc filter ``pandoc-docx-pagebreakpy`` will be removed with the next template metamodel version, use `` for the ``filters`` option instead.

Example
=======

.. code:: json
{
"name" : "pandoc",
"options" : {
"from" : "html",
"to" : "docx",
"args": "--filter=pandoc-docx-pagebreakpy --reference-doc=src/reference.docx"
}
}
{
"name" : "pandoc",
"options" : {
"from" : "html",
"to" : "docx",
"args": "--filter=pandoc-docx-pagebreakpy --reference-doc=src/reference.docx",
"filters": "docx-pagebreak.lua, docx-toc.lua"
}
}
.. |badge-status| image:: https://img.shields.io/badge/status-stable-green
.. |badge-metamodel| image:: https://img.shields.io/badge/metamodel%20version-%E2%89%A5%201-blue
5 changes: 5 additions & 0 deletions docs/more/self-hosted-dsw/upgrade-guidelines.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ Usually, nothing special is required for the upgrade. Internal structure changes

Make sure to stop ``document-worker`` and ``mailer`` before upgrading to the next version. Run ``wizard-server`` first, then run the workers. Otherwise the database migrations might not work correctly.

4.3.X to 4.4.X
----------------

*(nothing)*

4.2.X to 4.3.X
----------------

Expand Down

0 comments on commit 77870a8

Please sign in to comment.