Skip to content

Commit

Permalink
Merge branch 'release/1.0.1'
Browse files Browse the repository at this point in the history
* release/1.0.1:
  Raise version number to 1.0.1
  [BUGFIX] fix typo in composer.json #1
  Fix formatting in Documentation
  • Loading branch information
Konafets committed Feb 22, 2018
2 parents dcd0673 + a8c13b8 commit 208492a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ statement.
:alt: DatabasePane

Info: The extension uses the *connectToDB* hook to
inject `Doctrine\DBAL\Logging\DebugStack` as a logger to the
inject ``Doctrine\DBAL\Logging\DebugStack`` as a logger to the
connection. At the end of the rendering process it retrieves the Logger
and shows the logged queries. Its important to understand, that the
extension adds `Doctrine\DBAL\Logging\DebugStack` in any case, even if
extension adds ``Doctrine\DBAL\Logging\DebugStack`` in any case, even if
its not shown in the frontend. This is due to log *all* queries from the
very beginning ... but at that point the BE User is not initialized yet
and its unclear if the DebugBar is enabled or not. Classical
Expand All @@ -144,7 +144,7 @@ VarDump
--------

Everybody knows the output of DebugUtility::var_dump() ... and everybody knows that it breaks the layout. Lets move the output
to the TYPO3 Debugbar. Use `Konafets\TYPO3DebugBar\Overrides\DebuggerUtility::var_dump($variable)` and get an output like this:
to the TYPO3 Debugbar. Use ``Konafets\TYPO3DebugBar\Overrides\DebuggerUtility::var_dump($variable)`` and get an output like this:

.. figure:: https://raw.githubusercontent.com/konafets/typo3_debugbar/develop/Documentation/Images/VarDumpPane.png
:alt: VarDumpPane
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"maximebf/debugbar": "^1.15"
},
"replace": {
"typo_debugbar": "self.version"
"typo3_debugbar": "self.version"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'uploadfolder' => '0',
'createDirs' => '',
'clearCacheOnLoad' => 1,
'version' => '1.0.0',
'version' => '1.0.1',
'constraints' => [
'depends' => [
'typo3' => '7.6.0-8.7.99',
Expand Down

0 comments on commit 208492a

Please sign in to comment.