Alex Parrill
Alex Parrill
@Telroshan `type-declarations` fails because it can't find `tsconfig.json` - I don't see one anywhere in the repo. I'm assuming that's what you're using to generate `src/htmx.d.ts`?
Looks like e1143de8500dc91f54ed40aa05306a0049720804 generates the `d.ts` as part of `npm run types-generate`, and both the `type-declarations` command and the `src/html.d.ts` file are not used anymore. Should probably delete those.
Looks like Typescript v5.1 and up generate `let` instead of `const` for all of the exported members of the htmx namespace, so the solution might just be to update typescript....
Workaround: ```js document.addEventListener("htmx:beforeHistorySave", () => { for(const el of document.body.querySelectorAll("video[autoplay]")) { el.setAttribute("data-saved-src", el.getAttribute("src")); el.removeAttribute("src"); } }); document.addEventListener("htmx:historyRestore", () => { for(const el of document.body.querySelectorAll("video[autoplay]")) { el.setAttribute("src", el.getAttribute("data-saved-src")); el.removeAttribute("data-saved-src"); } });...
I don't think taking the minimum score is a good thing to do here. For CVSSv3.1, the temporal and environmental scores are separate "sub-scores". While we don't have an actual...
I can't reproduce this. The function you mentioned isn't called from anywhere (it's the only hit for a search for `prepareCVSSCalc`). I'll put in a patch to remove it, but...
I'm not able to interact with any of the examples on https://atlassian.design/components/pragmatic-drag-and-drop/examples/ using touch. Touches just scroll the page. I've tested it on Firefox and Chrome on Android, as well...
Most AUR packages build from source. The ones that don't have a `-bin` suffix.
Found something - node dumps core apparently. Only found it in the journald logs. Something in lightningcss apparently. ``` Sep 09 20:52:08 col-desktop-linux systemd-coredump[96907]: [🡕] Process 96818 (node) of user...
Tauri issue: https://github.com/tauri-apps/tauri/issues/10702 The `WEBKIT_DISABLE_DMABUF_RENDERER` fix works. Seems like an issue with webkit2gtk since I get the exact same error when running their MiniBrowser for version 4.1.