From 0bdc8a9bed45e45c17d71374483ae3c8b241bf53 Mon Sep 17 00:00:00 2001 From: Stefano Kowalke Date: Mon, 19 Feb 2018 14:15:34 +0100 Subject: [PATCH 1/3] Fix formatting in Documentation --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 8710fc5..0acc76e 100644 --- a/README.rst +++ b/README.rst @@ -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 @@ -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 From 8140548534f15768d73bcb774f2e457a8b483b5f Mon Sep 17 00:00:00 2001 From: Peter Kraume Date: Thu, 22 Feb 2018 22:02:38 +0100 Subject: [PATCH 2/3] [BUGFIX] fix typo in composer.json #1 This fixes the error: TYPO3 Fatal Error: Extension key "typo3_debugbar" is NOT loaded --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 9f7ccd0..d0f8aec 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ "maximebf/debugbar": "^1.15" }, "replace": { - "typo_debugbar": "self.version" + "typo3_debugbar": "self.version" }, "autoload": { "psr-4": { From a8c13b8fb5f5a7c911960cf48d347151f92568b9 Mon Sep 17 00:00:00 2001 From: Stefano Kowalke Date: Thu, 22 Feb 2018 22:59:52 +0100 Subject: [PATCH 3/3] Raise version number to 1.0.1 --- ext_emconf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext_emconf.php b/ext_emconf.php index e182dc1..4e213bd 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -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',