Thomas Luzat
Thomas Luzat
`README.md` is using the following syntax for registering backend layouts of an extension: ``` $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['BackendLayoutDataProvider'][$_EXTKEY] = 'GeorgRinger\\BelayoutFileprovider\\Provider\\FileProvider'; ``` The code currently seems to require: ``` $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['BackendLayoutFileProvider']['ext'][] = $_EXTKEY; ``` The...
To ease development with my FTDI FT232R interface I found that the following connections are useful: ESP32 Pin | Serial Pin | Comment -|-|- EN | RTS | `EN` =...
## Overview KeePassXC 2.7.1 (maybe older, too) on Windows hangs when Putty Agent SSH support is enabled and not Putty Agent is not running. ## Steps to Reproduce 1. Start...
Closes #1512.
When using SmartyBC and {php} support it seems that code such as the following [should work](https://www.smarty.net/docs/en/language.function.php.tpl): {php} $this->assign('someVar', 123); {/php} Unfortunately, when templates are compiled, `$this` does not seem to...
There seemed to be a typo (compared to jquery.mousewheel.js) which prevented the mousewheel from working correctly. In addition I've increased the mousewheel speed to a more sensible value (closer to...
This fixes the issue for me.
I am trying to import icons from within a Node package with `type: "module"` specified in `package.json`: ```typescript import { BookOutlined } from '@ant-design/icons' ``` Unfortunately, this leads to the...
With `.nvmrc` containing `v18` I get the following output: ``` $ export ASDF_NODEJS_LEGACY_FILE_DYNAMIC_STRATEGY=latest_installed $ asdf list 14.19.3 18.16.0 18.16.1 18.2.0 *18.9.0 19.4.0 ``` Expected behavior is to have `18.16.1` selected....