Matthew Nelson
Matthew Nelson
Yes, the underlying abstract class `KmpTorLoader` calls the protected abstract method `startTor` from a coroutine using a static `Mutex`; was better that way since that abstraction is in a separate...
Completely understandable if it was internal, but it is a part of the public API. Anyone from `commonMain` relying on `SystemPathSeparator` would "assume" that it delegates to the actual system...
Running into this same issue trying to connect to snort.social . Newest Kiwi browser version seems to have borked things.
Running into the same issue. Also put binaries into a `.zip` and that worked, but stapling failed `Error: do not know how to staple .zip`
I Found that placing them in an app bundle worked. Just make the bundle executable a copy of your cli binary with `.program` extension (so that your actual binary gets...
I tend not to believe apple's documentation over their header files which are all identical for each platform (device or simulator). ``` admin@Mac_Mini /Applications % xcodebuild -version Xcode 15.0.1 Build...
So I would like to re-spec how I'm passing connection information from node to client. As I've yet to release my application and corresponding libraries, doing so now in order...
> Just after a quick read I would strongly disagree with passing the v3 auth private key along with the onion hostname, the whole point is these two are separate...
What if a key is generated server side, and a hash of it is passed in the URL. Then the user types in the key and it can be verified...
### Modules You can maintain the modularized codebase by simply modifying the `build.gradle` to add the targets you'd like to support, then change the package name to `commonMain`. I think...