Famous TikToker Dylan Page talks about how #TikTok is removing and hiding videos, and suspending accounts without any explanation given other than "violating community guidelines". This is a great example of why #Nostr is needed.
I got the shortcuts working to easily move blocks up and down. #dev image View quoted note →
I just implemented a very essential feature in the notes app I'm building 😁 It's now possible to rearrange blocks by moving them up and down. Added two options to the context menu that appears when right-clicking a block: "Move Up" and "Move Down". This is currently implemented for image blocks, normal text blocks, and headings - so I still got a few more blocks to work on... Next task will be getting it to work in list blocks. #dev #macOS #AppKit #Swift #SwiftUI image
I have made it possible to switch tabs by pressing `Cmd+1` and up to number 9. Can also switch tab in either direction by using `Option+Cmd+Left-arrow` or `Option+Cmd+Right-arrow` Furthermore, it's now possible to select multiple files by pressing command while clicking. Makes it much easier to move multiple files together rather than having to move one file at a time. #dev I need to debug the preview overlay for tabs. I have now experienced multiple times, where the overlay is positioned incorrectly. It's supposed to be right below the hovered tab, but this is not always the case. It's a very unpredictable bug that happens rarely, but still very annoying. Especially because once it happens, it does not go away unless relaunching the app. I expect the reason to be the `GeometryReader` not calculating the position correctly. View quoted note →
For my notes app, I should make it possible to relocate multiple files instead of having to move one file at a time. It should be possible to command+click files to select multiple. Once multiple files are selected, clicking and dragging to relocate should also be possible. Basically, exactly like it works in Finder. #dev