Janis Jendraß

Results 4 comments of Janis Jendraß

``` server.on('console', (event) => { const stripped = event.match(/([\w]+).was.(.+).by.([\w]+)/) if (stripped) { server.emit('slain', { player: stripped[1], by: stripped[2], killer: stripped[3] }) } }) ``` This is what I'm using to...

I have somewhat the same problem with vanilla 1.18.2 Trying to get playerData aaaand... crash: 2022-04-27 13:29:13 error: uncaughtException: Cannot read properties of null (reading '2') TypeError: Cannot read properties...

You can use ` import { appWindow } from '@tauri-apps/api/window' appWindow.listen('tauri://menu', ({ event, payload }) => { console.log(event, payload) })` the payload holds the menu item label I tried to...

Same here in Nuxt 3 Edit: fixed by using "@vueuse/motion": "^2.0.0-beta.18" instead of "latest" which refers to "2.0.0-beta.12"