Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
2adaecd2
Commit
2adaecd2
authored
Mar 21, 2021
by
Carsten Rose
Browse files
Merge branch 'master' into 'develop'
Master See merge request
!324
parents
fe9aca70
3e47bfc3
Pipeline
#5067
passed with stages
in 4 minutes and 14 seconds
Changes
9
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
2adaecd2
...
...
@@ -53,6 +53,30 @@ Features
Bug Fixes
^^^^^^^^^
Version 21.3.1
--------------
Date: 21.03.2021
Notes
^^^^^
*
Custom QFQ Function:
*
Call QFQ function from inside a report, at any place, as often as needed. The QFQ function code will be parsed only
one time. Variables will be replaced in time.
*
Based on QFQ function: a new download source can be specified : source:
<function
name
>
Features
^^^^^^^^
*
#11998 / Custom QFQ-Function
*
#12015 / Use Advanced FormEditor
Bug Fixes
^^^^^^^^^
*
Bug with empty Fabric string fixed
Version 21.3.0
--------------
...
...
Documentation-develop/NewVersion.md
View file @
2adaecd2
...
...
@@ -44,7 +44,7 @@ Neue Versionsnummer
**Achtung**
: die Release Minor darf KEINE fuehrenden Nullen enthalten!!! Ansonsten funktioniert die Verteilung vie TER nicht.
**Auto**
: ./setVersion.sh 21.3.
0
**Auto**
: ./setVersion.sh 21.3.
1
Manuell:
*
extension/Documentation/_make/conf.py: release, version-
...
...
@@ -59,12 +59,12 @@ Neue Versionsnummer
*
Commit & Push new version changes to master branch:
New version 21.3.
0
New version 21.3.
1
7)
**New Tag**
:
git tag v21.3.
0
git push -u origin v21.3.
0
git tag v21.3.
1
git push -u origin v21.3.
1
8)
**Merge 'master' into 'develop'**
...
...
Documentation/Release.rst
View file @
2adaecd2
...
...
@@ -53,6 +53,30 @@ Features
Bug Fixes
^^^^^^^^^
Version 21.3.1
--------------
Date: 21.03.2021
Notes
^^^^^
* Custom QFQ Function:
* Call QFQ function from inside a report, at any place, as often as needed. The QFQ function code will be parsed only
one time. Variables will be replaced in time.
* Based on QFQ function: a new download source can be specified : source:<function name>
Features
^^^^^^^^
* #11998 / Custom QFQ-Function
* #12015 / Use Advanced FormEditor
Bug Fixes
^^^^^^^^^
* Bug with empty Fabric string fixed
Version 21.3.0
--------------
...
...
Documentation/Settings.cfg
View file @
2adaecd2
...
...
@@ -22,7 +22,7 @@
project = QFQ - Quick Form Query
version = 21.3
release = 21.3.
0
release = 21.3.
1
t3author = Carsten Rose
copyright = since 2017 by the author
...
...
Documentation/conf.py
View file @
2adaecd2
...
...
@@ -64,7 +64,7 @@ author = 'Carsten Rose, Benjamin Baer, Marc Egger'
# The short X.Y version.
version
=
'21.3'
# The full version, including alpha/beta/rc tags.
release
=
'21.3.
0
'
release
=
'21.3.
1
'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
extension/RELEASE.txt
View file @
2adaecd2
...
...
@@ -53,6 +53,30 @@ Features
Bug Fixes
^^^^^^^^^
Version 21.3.1
--------------
Date: 21.03.2021
Notes
^^^^^
* Custom QFQ Function:
* Call QFQ function from inside a report, at any place, as often as needed. The QFQ function code will be parsed only
one time. Variables will be replaced in time.
* Based on QFQ function: a new download source can be specified : source:<function name>
Features
^^^^^^^^
* #11998 / Custom QFQ-Function
* #12015 / Use Advanced FormEditor
Bug Fixes
^^^^^^^^^
* Bug with empty Fabric string fixed
Version 21.3.0
--------------
...
...
extension/ext_emconf.php
View file @
2adaecd2
...
...
@@ -12,7 +12,7 @@ $EM_CONF['qfq'] = array(
'dependencies'
=>
'fluid,extbase'
,
'clearcacheonload'
=>
true
,
'state'
=>
'stable'
,
'version'
=>
'21.3.
0
'
,
'version'
=>
'21.3.
1
'
,
'constraints'
=>
[
'depends'
=>
[
'typo3'
=>
'7.0.0-10.9.99'
,
...
...
javascript/src/Plugins/qfq.fabric.js
View file @
2adaecd2
...
...
@@ -336,15 +336,15 @@ $(function (n) {
that
.
userChangePossible
=
true
;
});
}
else
{
if
(
!
isReadOnly
)
{
that
.
setBackground
();
that
.
setBackground
();
if
(
!
isReadOnly
)
{
that
.
setBrush
();
}
that
.
canvas
.
renderAll
();
that
.
userChangePossible
=
true
;
this
.
history
.
put
(
this
.
canvas
.
toJSON
());
}
var
defaultColor
=
$fabric
Element
.
data
(
'
fabric-color
'
)
||
false
;
var
defaultColor
=
this
.
parent
Element
.
data
(
'
fabric-color
'
)
||
false
;
if
(
defaultColor
)
{
this
.
setColor
(
defaultColor
);
}
...
...
version
View file @
2adaecd2
21.3.
0
21.3.
1
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment