Michael Lenaghan
Michael Lenaghan
Adding to that: Pocketbase uses WAL mode, and WAL mode requires that all processes using a database be on the same host: https://www.sqlite.org/wal.html I don’t think you’re violating that requirement,...
For what it's worth, the differences seem to be fairly [significant](https://github.com/processwire/processwire/compare/2ea60ee..3cc76cc): "32 changed files with 296 additions and 180 deletions".
I left a bunch of drive-by comments. I don't know if that's annoying, or helpful, or perhaps a bit of both. :-) I see some other potential improvements. If the...
What I'd suggest, if you're interested, is that we talk some things through first. I was leaving comments as I was reading from top to bottom; I have more, and...
Different, but related I think: setting something like `$headings-color` doesn't work as expected. Imagine setting `$body-color` to, say, `$gray-700`, and `$headings-color` to `$gray-900`. You end up with the wrong heading...
**TL;DR** On macCatalyst, observe `NSWindowDidBecomeMainNotification` rather than `UIScene.willEnterForegroundNotification`. Since that's an `NSWindow` notification name, and since `NSWindow` notification names aren't available in macCatalyst without special effort, subscribe using the stringified...
Well, it depends what you mean by "break." Stats would change. Since it takes time for people to update, that change would happen over a period of time rather than...
Sorry; I'll verify the fix on Mon.
It looks like this is not fixed. Notice that `File Atom.atom`, `File Robots.txt`, and `File Sitemap.xml` appear in the menu on the right, but not in the list on the...
It looks like the problem is here: https://github.com/processwire/processwire/blob/5b0e37e3aecf2f2480a404bd5b4b5bbd4b820fb5/wire/modules/Process/ProcessPageList/ProcessPageList.module#L562-L570 Specifically, here: ```php if($c != $nots) $a = array_merge($a, $this->hidePages); ``` `$nots` is the set of optional conditions that turn off page...