Maintain 1.1.0 changelog

This commit is contained in:
Daniel Siepmann 2023-01-04 08:36:39 +01:00
parent 7aed483b33
commit 9b22d7d196
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
6 changed files with 145 additions and 1 deletions

View file

@ -0,0 +1,13 @@
.. _changelog:
=========
Changelog
=========
.. toctree::
:glob:
:reversed:
Changelog/*

View file

@ -0,0 +1,58 @@
1.1.0
=====
Breaking
--------
Nothing
Features
--------
* Add context to foreign data factory.
The factory can optionally implement the ``WerkraumMedia\Calendar\Domain\Model\ContextSpecificFactory`` interface.
That way it will receive a bit of context to react on the current situation.
* Add Extbase Settings to configure default arguments for each action:
.. code-block:: typoscript
plugin.tx_calendar_example {
settings {
arguments {
year = 1988
month = 11
week = 12
day = 1988-11-03
}
}
}
StdWrap is applied, so more complex setups are possible, e.g.:
.. code-block:: typoscript
arguments {
year {
strtotime = midnight first day of -1 year
strftime = %Y
}
}
* The current plugin name is available to the ``AssignTemplateVariables`` event.
Fixes
-----
Nothing
Tasks
-----
Nothing
Deprecation
-----------
Nothing

15
Documentation/Index.rst Normal file
View file

@ -0,0 +1,15 @@
.. _start:
============
EXT:calendar
============
Table of Contents
=================
.. toctree::
:maxdepth: 1
:titlesonly:
Changelog
Sitemap

View file

@ -0,0 +1,49 @@
[general]
# .................................................................................
# ... (required) title (displayed in left sidebar (desktop) or top panel (mobile)
# .................................................................................
project = TYPO3 EXT:calendar
# .................................................................................
# ... (recommended) version, displayed next to title (desktop) and in <meta name="book-version"
# .................................................................................
release = latest
# .................................................................................
# ... (recommended) displayed in footer
# .................................................................................
copyright = by werkraum-media
[html_theme_options]
# .................................................................................
# ... (recommended) to get the "Edit me on Github Button"
# .................................................................................
github_branch = main
github_repository = werkraum-media/calendar
# usually an email address
project_contact = coding@daniel-siepmann.de
# URL of online discussions, you can leave this blank
project_discussions =
# URL of webpage of your extension (if it has one)
project_home = https://github.com/werkraum-media/calendar
# URL to Issues
project_issues = https://github.com/werkraum-media/calendar/issues
# URL of repository
project_repository = https://github.com/werkraum-media/calendar
[intersphinx_mapping]
# .................................................................................
# for cross-referencing across manuals (intersphinx) with :ref:
# You must uncomment all manuals you use in your cross-references
#
# Example usage:
# :ref:`t3contribute:start` will link to start page of Contribution Guide
# .................................................................................

View file

@ -0,0 +1,9 @@
:template: sitemap.html
.. _sitemap:
=======
Sitemap
=======
.. template 'sitemap.html' will insert the toctree as a sitemap here below normal contents

View file

@ -10,7 +10,7 @@ $EM_CONF['calendar'] = [
'state' => 'alpha',
'uploadfolder' => 0,
'clearCacheOnLoad' => 0,
'version' => '1.0.0',
'version' => '1.1.0',
'constraints' => [
'depends' => [
'typo3' => '*',