stackotter
stackotter
Swift Bundler has supported Windows for a while, and has been used to make the Video Village Plugins app. These should be highlighted on the website.
At the moment if someone tries to build an app on Linux, they'll get some error about failing to move a dynamic library. The underlying cause (which should at least...
Swift Bundler now uses macros to define its configuration structs. Introducing these greatly reduced the amount of repetitive code required to specify custom keys, overlay types, flattened types, etc. However,...
This is a top-level tracking issue for various config improvements I plan on making. - [ ] Add platform-specific configuration parameters to their corresponding top-level configuration types and catch catch...
Builders should be defined at the top level (next to `apps` and `projects`) so that they can be reused multiple times within the same project. This will allow people to...
At the moment, use of `.swiftLanguageMode(_:)` swift setting in package manifests results in build failures when targeting multiple architectures at once (i.e. performing a universal build). The upstream issue was...
Some properties such as the Mac Catalyst interface idiom would be handy to be able to configure once at the top level of a `Bundler.toml` instead of once per app....
When running xcodebuild with `-showdestinations`, it shows available devices and ineligible devices. A common reason for ineligibility is that Xcode doesn't have a new enough platform SDK installed to support...
When bundling apps, Swift Bundler copies dynamic libraries referenced by the main executable into the app bundle. This involves updating the install name of each library to reflect its new...
I came across #30 while investigating the prospect of swift-nio-extras using a vendored copy of zlib. It's been 6 years and Swift is starting to get used for more than...