Skip to content

Commit

Permalink
1.0.7 - Bugfixes
Browse files Browse the repository at this point in the history
* [BUGFIX] fixed plugin text about available placeholder in mail text
* [BUGFIX] fixed error in application form when no messageMaxLength is configured
* [FEATURE] show all contacts if no contact is selected in the contact plugin
  • Loading branch information
itx-stefanie-doell committed Apr 18, 2022
1 parent 59111f8 commit 5bfe267
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 20 deletions.
6 changes: 6 additions & 0 deletions Documentation/ChangeLog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
Changelog
=========

1.0.7 - Bugfixes
-----------------
* [BUGFIX] fixed plugin text about available placeholder in mail text
* [BUGFIX] fixed error in application form when no messageMaxLength is configured
* [FEATURE] show all contacts if no contact is selected in the contact plugin

1.0.6 - Build fix
-----------------
* this update contains no actual content, and only fixes a build issue
Expand Down
35 changes: 18 additions & 17 deletions Documentation/Developer/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,27 @@ If you want to have custom filters you can do that by performing three steps.
#. Configure every filter you want in TypoScript settings, like the default config:
.. code-block:: php
filter {
repositoryConfiguration {
division { // Relation name: This is the name you should assign the form element property and the constraint property
relation = division // Define the relation a la Repository query e.g.: posting.contact.email
relationType = equals // choose equals, contains or in. This depends on the given relation
}
filter {
repositoryConfiguration {
division { // Relation name: This is the name you should assign the form element property and the constraint property
relation = division // Define the relation a la Repository query e.g.: posting.contact.email
relationType = equals // choose equals, contains or in. This depends on the given relation
}
careerLevel {
relation = careerLevel
relationType = equals
}
careerLevel {
relation = careerLevel
relationType = equals
}
employmentType {
relation = employmentType
relationType = contains
}
employmentType {
relation = employmentType
relationType = contains
}
location {
relation = location
relationType = contains
location {
relation = location
relationType = contains
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Settings.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ project = Jobapplications Extension
# ... (recommended) version, displayed next to title (desktop) and in <meta name="book-version"
# .................................................................................

release = 1.0.6
release = 1.0.7

# .................................................................................
# ... (recommended) displayed in footer
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "typo3-cms-extension",
"description": "This extension enables you to manage job postings, has an application form for applicants to apply and an Application Managment Backend Module",
"license": "GPL-3.0-or-later",
"version": "1.0.6",
"version": "1.0.7",
"homepage": "http://www.itx.de",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
'uploadfolder' => 1,
'createDirs' => '',
'clearCacheOnLoad' => 1,
'version' => '1.0.6',
'version' => '1.0.7',
'constraints' => [
'depends' => [
'typo3' => '9.5.0 - 10.4.99',
Expand Down

0 comments on commit 5bfe267

Please sign in to comment.