-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
32 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
* Catch uncompress errors when displaying extra data (thanks to E. Lang) | ||
* Ensure spinner icon is available | ||
* Mention enable_DLOG for TYPO3 v8 in the documentation | ||
* Release version 3.0.4 | ||
|
||
2018-02-22 Francois Suter <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,30 +10,30 @@ | |
# "version" and "dependencies" must not be touched! | ||
######################################################################## | ||
|
||
$EM_CONF[$_EXTKEY] = array( | ||
'title' => 'Developer\'s Log', | ||
'description' => 'The Developer\'s Log extension provides development logging/debugging functionality for usage of GeneralUtility::devlog() and a BE module to browse the logs.', | ||
'category' => 'misc', | ||
'priority' => '', | ||
'loadOrder' => '', | ||
'module' => 'mod1', | ||
'state' => 'stable', | ||
'uploadfolder' => 0, | ||
'createDirs' => '', | ||
'modify_tables' => '', | ||
'clearCacheOnLoad' => 1, | ||
'lockType' => '', | ||
'author' => 'Francois Suter', | ||
'author_email' => '[email protected]', | ||
'author_company' => '', | ||
'version' => '3.0.3', | ||
'constraints' => array( | ||
'depends' => array( | ||
'typo3' => '7.6.0-8.9.99', | ||
), | ||
'conflicts' => array( | ||
), | ||
'suggests' => array( | ||
), | ||
), | ||
); | ||
$EM_CONF[$_EXTKEY] = [ | ||
'title' => 'Developer\'s Log', | ||
'description' => 'The Developer\'s Log extension provides development logging/debugging functionality for usage of GeneralUtility::devlog() and a BE module to browse the logs.', | ||
'category' => 'misc', | ||
'priority' => '', | ||
'loadOrder' => '', | ||
'module' => 'mod1', | ||
'state' => 'stable', | ||
'uploadfolder' => 0, | ||
'createDirs' => '', | ||
'modify_tables' => '', | ||
'clearCacheOnLoad' => 1, | ||
'lockType' => '', | ||
'author' => 'Francois Suter', | ||
'author_email' => '[email protected]', | ||
'author_company' => '', | ||
'version' => '3.0.4', | ||
'constraints' => [ | ||
'depends' => [ | ||
'typo3' => '7.6.0-8.9.99', | ||
], | ||
'conflicts' => [ | ||
], | ||
'suggests' => [ | ||
], | ||
], | ||
]; |