tillhainbach
tillhainbach
Hey, I forked this displaz onto my repository and changed some stuff so that it builds a stable standalone Mac OS X Bundle. Unfortunately I haven't add the time to...
Thanks for the hint. I created a little wrapper class around SPUStandardUserDriver which conforms to ObservableObject and SPUUserDriver protocol, so SwiftUI gets notified whenever "canCheckForUpdates" is set. Apparently, there is...
> @tillhainbach I added and tested a simple sample (with some help from outside resources including your samples) using SwiftUI on Sparkle's documentation website - https://sparkle-project.org/documentation/programmatic-setup/ (I'm not that familiar...
here you go: https://github.com/tillhainbach/SpotifyQuickStart
> If the comments from @stephencelis are blocking to get this merged, I'd be happy to create a new PR with that feedback implemented Would be great if you can...
Tested on macOS 10.15.5 and the symlink for com.apple.Terminal.plist stay intact. Are you still observing the overwriting behaviour?
Fix: a little hacky, but anyways: in encodingdb.py added: ```python STRIP_PARTAFTERDOT = re.compile(r'[a-z]*') ``` in `name2unicode(name)` added: ```python m = STRIP_PARTAFTERDOT.search(name) [0] if m: return glyphname2unicode[m]```