Ross Smith II
Ross Smith II
https://github.com/cmldk/HumanizeDuration.js provides relative time. If internationalization is needed, perhaps the easiest way would be to merge this fork's changes into https://github.com/rasa/HumanizeDuration.js, though I haven't looked into how easy that would...
@kdeldycke Linters should all be reasonably up to date, and are listed in https://github.com/rasa/workflows/actions/runs/11044502120/job/30680530531#step:5:184 mypy: v1.11.1 pyright: v1.1.376 (latest is v1.1.382) pylint: v3.2.6 using these settings: mypy: [.mypy.ini](https://github.com/rasa/workflows/blob/main/.github/linters/.mypy.ini) pyright: [.pyrightconfig-loose.json](https://github.com/rasa/workflows/blob/main/.github/linters/.pyrightconfig-loose.json)...
One issue with this is if a user runs this GUI version from inside an SSH session, they won't see any output. The console window will appear on the desktop.
While I appreciate the thoughtful and detailed writeup, this essentially is a duplicate of #7311, yes?
It would be easy enough to do both, with the file processed second, if it exists?
> Anyone else have an idea how negated global patterns may be practically useful? Perhaps the user doesn't want any folder specific ignores, but simply wants ``` !/foo !*.pdf *...
The error "Failed to handle symlink" is for ``` symlink ../private/cfg.d/keepassxc /sdcard/private/cfg.d/keepassxc/home/.config/keepassxc ``` My guess is that symlinks are not supported on the underlying filesystem, so it's probably exFAT or...
I use [cmdow](https://ritchielawrence.github.io/cmdow/) to hide windows. It [uses](https://github.com/ritchielawrence/cmdow/blob/1bbcd2b6313f181f68fd9252f642867f5c8c9e99/wlist.cpp#L423) `ShowWindowAsync(w->hwnd, SW_HIDE)`. We currently [use](https://github.com/syncthing/syncthing/blob/532e30eb6b5fbc3e283241d8a4feaa3b329cacef/lib/osutil/hidden_windows.go#L14) `ShowWindow`. I'll see if `ShowWindowAsync` will actually help in our case.