Swiftpack.co - Swift Packages by p-x9

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.

Packages published by p-x9

p-x9/CocoaUI 0.2.1
☕️ Obtain and customize UIKit/Cocoa objects from SwiftUI components.
⭐️ 35
🕓 43 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.2.1
43 weeks ago
## What's Changed * fix issue that build failed on tvOS by @p-x9 in https://github.com/p-x9/CocoaUI/pull/13 **Full Changelog**: https://github.com/p-x9/CocoaUI/compare/0.2.0...0.2.1
v0.2.0
46 weeks ago
## What's Changed * Updated `README.md` regarding life cycle event modifiers. by @p-x9 in https://github.com/p-x9/CocoaUI/pull/10 * make "customize" handler optional by @p-x9 in https://github.com/p-x9/CocoaUI/pull/12 **Full Changelog**: https://github.com/p-x9/CocoaUI/compare/0.1.0...0.2.0
v0.1.0
49 weeks ago
## What's Changed * rename associated type of `CocoaViewBridging` by @p-x9 in https://github.com/p-x9/CocoaUI/pull/7 * lifecycle event modifier by @p-x9 in https://github.com/p-x9/CocoaUI/pull/8 * Rename bridging protocol by @p-x9 in https://github.com/p-x9/CocoaUI/pull/9 **Full Changelog**: https://github.com/p-x9/CocoaUI/compare/0.0.5...0.1.0
v0.0.5
52 weeks ago
## What's Changed * set background of UIHostingViewController to clear by @p-x9 in https://github.com/p-x9/CocoaUI/pull/6 **Full Changelog**: https://github.com/p-x9/CocoaUI/compare/0.0.4...0.0.5
v0.0.4
1 year ago
## What's Changed * add supporting components by @p-x9 in https://github.com/p-x9/CocoaUI/pull/5 **Full Changelog**: https://github.com/p-x9/CocoaUI/compare/0.0.3...0.0.4
v0.0.3
1 year ago
## What's Changed * support `tvOS` platform by @p-x9 in https://github.com/p-x9/CocoaUI/pull/4 **Full Changelog**: https://github.com/p-x9/CocoaUI/compare/0.0.2...0.0.3
v0.0.2
1 year ago
## What's Changed * re-set the rootView in method named `updateUIViewController` by @p-x9 in https://github.com/p-x9/CocoaUI/pull/2 ## New Contributors * @p-x9 made their first contribution in https://github.com/p-x9/CocoaUI/pull/2 **Full Changelog**: https://github.com/p-x9/CocoaUI/compare/0.0.1...0.0.2
v0.0.1
1 year ago
**Full Changelog**: https://github.com/p-x9/CocoaUI/commits/0.0.1
iOS macOS tvOS
p-x9/AppContainer 0.3.1
🧳 Library that makes it easy to create multiple environments within a single app. You can switch environments without deleting the application.
⭐️ 29
🕓 25 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
0.3.1
25 weeks ago
## What's Changed * DocC by @p-x9 in https://github.com/p-x9/AppContainer/pull/47 **Full Changelog**: https://github.com/p-x9/AppContainer/compare/0.3.0...0.3.1
v0.3.0
37 weeks ago
## What's Changed * rename plist file for AppContainer settings by @p-x9 in https://github.com/p-x9/AppContainer/pull/45 ## Breaking Changes ### Setting plist file path is changed (#45) Renamed settings file from `settings.plist` to `com.p-x9.AppContainer.settings.plist`. > **Warning** > Information on the currently active container will be lost. > This change will not cause any loss of information for containers other than the currently active container. If you want to carry over information created in previous versions, you will need to rename the file as follows. ```swift let fileManager = FileManager.default let home = NSHomeDirectory() // If you are using it for App Group, change as follows // let home = fileManager.containerURL(forSecurityApplicationGroupIdentifier: "YOUR APP GROUP IDENTIFIER")!.absoluteString let libraryPath = home + "/Library" let oldPath = libraryPath + "/settings.plist" let newPath = libraryPath + "/com.p-x9.AppContainer.settings.plist" guard fileManager.fileExists(atPath: oldPath) else { return } try? fileManager.moveItem(atPath: oldPath, toPath: newPath) ``` **Full Changelog**: https://github.com/p-x9/AppContainer/compare/0.2.2...0.3.0
v0.2.2
38 weeks ago
## What's Changed * add empty `Package.swift` by @p-x9 in https://github.com/p-x9/AppContainer/pull/43 * bump `EditValueView` to 0.4.0 by @p-x9 in https://github.com/p-x9/AppContainer/pull/44 **Full Changelog**: https://github.com/p-x9/AppContainer/compare/0.2.1...0.2.2
v0.2.1
39 weeks ago
## What's Changed * Bump `EditValueView` to v0.0.7 by @p-x9 in https://github.com/p-x9/AppContainer/pull/42 **Full Changelog**: https://github.com/p-x9/AppContainer/compare/0.2.0...0.2.1
v0.2.0
43 weeks ago
## What's Changed * enable `ExistentialAny` by @p-x9 in https://github.com/p-x9/AppContainer/pull/39 * update dependencies by @p-x9 in https://github.com/p-x9/AppContainer/pull/41 * support for customizing files to be excluded from the move target. by @p-x9 in https://github.com/p-x9/AppContainer/pull/40 **Full Changelog**: https://github.com/p-x9/AppContainer/compare/0.1.0...0.2.0
v0.1.0
1 year ago
## What's Changed * Notification by @p-x9 in https://github.com/p-x9/AppContainer/pull/36 * Delegate by @p-x9 in https://github.com/p-x9/AppContainer/pull/37 **Full Changelog**: https://github.com/p-x9/AppContainer/compare/0.0.5...0.1.0
0.0.5
1 year ago
## What's Changed * fix to use `KeyPathValue` package by @p-x9 in https://github.com/p-x9/AppContainer/pull/31 * add swiftlint plug-in by @p-x9 in https://github.com/p-x9/AppContainer/pull/26 * implemented method for clone container by @p-x9 in https://github.com/p-x9/AppContainer/pull/32 * update dependencies by @p-x9 in https://github.com/p-x9/AppContainer/pull/34 **Full Changelog**: https://github.com/p-x9/AppContainer/compare/0.0.4...0.0.5
0.0.4
1 year ago
## What's Changed * updated README.md for `HTTPCookieStorage` by @p-x9 in https://github.com/p-x9/AppContainer/pull/27 * add screenshot of example app by @p-x9 in https://github.com/p-x9/AppContainer/pull/28 * AppContainer UI by @p-x9 in https://github.com/p-x9/AppContainer/pull/29 **Full Changelog**: https://github.com/p-x9/AppContainer/compare/0.0.3...0.0.4
0.0.3
1 year ago
## What's Changed * fix UserDefaults suites that should be synchronized by @p-x9 in https://github.com/p-x9/AppContainer/pull/25 * fix to handle files directory under the home directory by @p-x9 in https://github.com/p-x9/AppContainer/pull/24 **Full Changelog**: https://github.com/p-x9/AppContainer/compare/0.0.2...0.0.3
0.0.2
1 year ago
## What's Changed * add default suite name by @p-x9 in https://github.com/p-x9/AppContainer/pull/23 * fix to export http cookies before stashing container by @p-x9 in https://github.com/p-x9/AppContainer/pull/22 **Full Changelog**: https://github.com/p-x9/AppContainer/compare/0.0.1...0.0.2
iOS
p-x9/SwiftUIColor 0.4.0
🎨 Make system color defined in UIColor/NSColor available to SwiftUI Color.
⭐️ 22
🕓 31 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.4.0
31 weeks ago
## What's Changed * New writing style by @p-x9 in https://github.com/p-x9/SwiftUIColor/pull/15 ```swift let color: Color = .iOS(systemBackground) // The existing writing method can be used at the same time. let color: Color = Color.iOS.systemBackground ``` **Full Changelog**: https://github.com/p-x9/SwiftUIColor/compare/0.3.0...0.4.0
v0.3.0
39 weeks ago
## What's Changed * Remove plugin and place color definition files directly by @p-x9 in https://github.com/p-x9/SwiftUIColor/pull/12 **Full Changelog**: https://github.com/p-x9/SwiftUIColor/compare/0.2.1...0.3.0
v0.2.1
1 year ago
## What's Changed * display colors in both light and dark mode by @p-x9 in https://github.com/p-x9/SwiftUIColor/pull/11 **Full Changelog**: https://github.com/p-x9/SwiftUIColor/compare/0.2.0...0.2.1
v0.2.0
1 year ago
## What's Changed * add colors of `tvOS` and `watchOS` by @p-x9 in https://github.com/p-x9/SwiftUIColor/pull/10 **Full Changelog**: https://github.com/p-x9/SwiftUIColor/compare/0.1.0...0.2.0
v0.1.0
1 year ago
## What's Changed * fix typos by @p-x9 in https://github.com/p-x9/SwiftUIColor/pull/6 * fix color definitions by @p-x9 in https://github.com/p-x9/SwiftUIColor/pull/7 * universal color by @p-x9 in https://github.com/p-x9/SwiftUIColor/pull/9 **Full Changelog**: https://github.com/p-x9/SwiftUIColor/compare/0.0.6...0.1.0
v0.0.6
1 year ago
## What's Changed * add description of color list by @p-x9 in https://github.com/p-x9/SwiftUIColor/pull/4 * Example App by @p-x9 in https://github.com/p-x9/SwiftUIColor/pull/5 **Full Changelog**: https://github.com/p-x9/SwiftUIColor/compare/0.0.5...0.0.6
v0.0.5
1 year ago
## What's Changed * script for create artifactbundle by @p-x9 in https://github.com/p-x9/SwiftUIColor/pull/1 * add color list by @p-x9 in https://github.com/p-x9/SwiftUIColor/pull/3 ## New Contributors * @p-x9 made their first contribution in https://github.com/p-x9/SwiftUIColor/pull/1 **Full Changelog**: https://github.com/p-x9/SwiftUIColor/compare/0.0.4...0.0.5
v0.0.4
1 year ago
v0.0.3
1 year ago
v0.0.2
1 year ago
iOS macOS
p-x9/EditValueView 0.7.0
Library that makes easy to display property edit screens for SwiftUI.
⭐️ 15
🕓 3 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.7.0
3 weeks ago
## What's Changed * Improve type description view by @p-x9 in https://github.com/p-x9/EditValueView/pull/31 **Full Changelog**: https://github.com/p-x9/EditValueView/compare/0.6.0...0.7.0
v0.6.0
10 weeks ago
## What's Changed * Use `MagicMirror` by @p-x9 in https://github.com/p-x9/EditValueView/pull/29 * Fix action sheet items for optional image by @p-x9 in https://github.com/p-x9/EditValueView/pull/30 **Full Changelog**: https://github.com/p-x9/EditValueView/compare/0.5.0...0.6.0
v0.5.0
10 weeks ago
## What's Changed * Add AnyJSONEditor to support `[Any]`, `[String: Any]`, etc. by @Ryu0118 in https://github.com/p-x9/EditValueView/pull/27 ## New Contributors * @Ryu0118 made their first contribution in https://github.com/p-x9/EditValueView/pull/27 **Full Changelog**: https://github.com/p-x9/EditValueView/compare/0.4.1...0.5.0
v0.4.1
38 weeks ago
## What's Changed * fix to be able to build for macOS by @p-x9 in https://github.com/p-x9/EditValueView/pull/26 **Full Changelog**: https://github.com/p-x9/EditValueView/compare/0.4.0...0.4.1
v0.4.0
38 weeks ago
## What's Changed * allow custom presentation style by @p-x9 in https://github.com/p-x9/EditValueView/pull/24 * fix to set initial state of optional toggle by @p-x9 in https://github.com/p-x9/EditValueView/pull/25 **Full Changelog**: https://github.com/p-x9/EditValueView/compare/0.3.0...0.4.0
v0.3.0
38 weeks ago
## What's Changed * fix image type conversion by @p-x9 in https://github.com/p-x9/EditValueView/pull/21 * adjust layout when pushed by @p-x9 in https://github.com/p-x9/EditValueView/pull/22 * Example App by @p-x9 in https://github.com/p-x9/EditValueView/pull/23 **Full Changelog**: https://github.com/p-x9/EditValueView/compare/0.2.0...0.3.0
v0.2.0
38 weeks ago
## What's Changed * fix layout size of editor by @p-x9 in https://github.com/p-x9/EditValueView/pull/18 * Support Image editing (iOS only) by @p-x9 in https://github.com/p-x9/EditValueView/pull/20 **Full Changelog**: https://github.com/p-x9/EditValueView/compare/0.1.0...0.2.0
v0.1.0
39 weeks ago
## What's Changed * refactor by @p-x9 in https://github.com/p-x9/EditValueView/pull/17 **Full Changelog**: https://github.com/p-x9/EditValueView/compare/0.0.7...0.1.0
v0.0.7
39 weeks ago
## What's Changed * Bump `SwiftUIColor` to v0.3.0 by @p-x9 in https://github.com/p-x9/EditValueView/pull/16 **Full Changelog**: https://github.com/p-x9/EditValueView/compare/0.0.6...0.0.7
v0.0.6
1 year ago
## What's Changed * update `SwiftUIColor` version to 0.2.0 by @p-x9 in https://github.com/p-x9/EditValueView/pull/15 **Full Changelog**: https://github.com/p-x9/EditValueView/compare/0.0.5...0.0.6
iOS macOS
p-x9/SDCALayer 0.5.0
Server-Driven CALayer.
⭐️ 10
🕓 2 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.5.0
2 weeks ago
## What's Changed * CAAnimation by @p-x9 in https://github.com/p-x9/SDCALayer/pull/22 **Full Changelog**: https://github.com/p-x9/SDCALayer/compare/0.4.0...0.5.0
v0.4.0
2 weeks ago
## What's Changed * Support `CAReplicatorLayer` by @p-x9 in https://github.com/p-x9/SDCALayer/pull/17 * Support `CATransformLayer` by @p-x9 in https://github.com/p-x9/SDCALayer/pull/20 * Support `CATiledLayer` by @p-x9 in https://github.com/p-x9/SDCALayer/pull/21 **Full Changelog**: https://github.com/p-x9/SDCALayer/compare/0.3.0...0.4.0
v0.3.0
2 weeks ago
## What's Changed * Refactor by @p-x9 in https://github.com/p-x9/SDCALayer/pull/16 **Full Changelog**: https://github.com/p-x9/SDCALayer/compare/0.2.2...0.3.0
v0.2.2
47 weeks ago
## What's Changed * fix `codableTypeName` method can be overridden by @p-x9 in https://github.com/p-x9/SDCALayer/pull/13 * use `sRGB` color space when converting color code to `CGColor` by @p-x9 in https://github.com/p-x9/SDCALayer/pull/15 **Full Changelog**: https://github.com/p-x9/SDCALayer/compare/0.2.1...0.2.2
v0.2.1
1 year ago
## What's Changed * Fix star.json to simpler writing. by @p-x9 in https://github.com/p-x9/SDCALayer/pull/9 * fix access controls to allows creation of custom classes by @p-x9 in https://github.com/p-x9/SDCALayer/pull/10 * fix conversion from CGColor to color code by @p-x9 in https://github.com/p-x9/SDCALayer/pull/11 * support macOS by @p-x9 in https://github.com/p-x9/SDCALayer/pull/12 **Full Changelog**: https://github.com/p-x9/SDCALayer/compare/0.2.0...0.2.1
v0.2.0
1 year ago
## What's Changed * fix to not reflect default values to model by @p-x9 in https://github.com/p-x9/SDCALayer/pull/7 * fix not to export null value by @p-x9 in https://github.com/p-x9/SDCALayer/pull/8 **Full Changelog**: https://github.com/p-x9/SDCALayer/compare/0.1.0...0.2.0
v0.1.0
1 year ago
## What's Changed * fix dependencies to use versions from 0.0.1 to the next minor by @p-x9 in https://github.com/p-x9/SDCALayer/pull/5 * support YAML by @p-x9 in https://github.com/p-x9/SDCALayer/pull/6 **Full Changelog**: https://github.com/p-x9/SDCALayer/compare/0.0.1...0.1.0
v0.0.1
1 year ago
Initial Release
iOS macOS linux macOS iOS
p-x9/Modify 0.0.5
⛏Swift syntax sugar for modifying properties
⭐️ 7
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.0.5
1 year ago
## What's Changed * add `callAsFunction` method to `AssignmentDynamicMemberWrap` by @p-x9 in https://github.com/p-x9/Modify/pull/5 **Full Changelog**: https://github.com/p-x9/Modify/compare/0.0.4...0.0.5
0.0.4
1 year ago
## What's Changed * callAsFunction for `modify` closure by @p-x9 in https://github.com/p-x9/Modify/pull/4 **Full Changelog**: https://github.com/p-x9/Modify/compare/0.0.3...0.0.4
v0.0.3
1 year ago
## What's Changed * add disfavored overload by @p-x9 in https://github.com/p-x9/Modify/pull/3 **Full Changelog**: https://github.com/p-x9/Modify/compare/0.0.2...0.0.3
v0.0.2
1 year ago
## What's Changed * remove (at)_disfavoredOverload by @p-x9 in https://github.com/p-x9/Modify/pull/1 * support `^=` operator for class types by @p-x9 in https://github.com/p-x9/Modify/pull/2 ## New Contributors * @p-x9 made their first contribution in https://github.com/p-x9/Modify/pull/1 **Full Changelog**: https://github.com/p-x9/Modify/compare/0.0.1...0.0.2
v0.0.1
1 year ago
**Full Changelog**: https://github.com/p-x9/Modify/commits/0.0.1
p-x9/KeyPathValue 0.1.0
🔑 Structure for assigning values using keypath
⭐️ 4
🕓 3 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.1.0
3 weeks ago
## What's Changed * implemented Initializer using `PartialKeyPath` by @p-x9 in https://github.com/p-x9/KeyPathValue/pull/1 * unit test by @p-x9 in https://github.com/p-x9/KeyPathValue/pull/3 * returns whether the value was successfully applied or not by @p-x9 in https://github.com/p-x9/KeyPathValue/pull/4 ## New Contributors * @p-x9 made their first contribution in https://github.com/p-x9/KeyPathValue/pull/1 **Full Changelog**: https://github.com/p-x9/KeyPathValue/compare/0.0.1...0.1.0
v0.0.1
1 year ago
**Full Changelog**: https://github.com/p-x9/KeyPathValue/commits/0.0.1
p-x9/DistributedNotificationCenter 1.0.0
Make `DistributedNotificationCenter` available on iOS.
⭐️ 4
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v1.0.0
1 year ago
iOS
p-x9/DeclarativeCocoa 0.0.2
🚃 Declarative UIKit/Cocoa. Allow defining properties in the method chain.
⭐️ 4
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.0.2
1 year ago
## What's Changed * add `DeclarativeCoreAnimation` to dependencies by @p-x9 in https://github.com/p-x9/DeclarativeCocoa/pull/2 **Full Changelog**: https://github.com/p-x9/DeclarativeCocoa/compare/0.0.1...0.0.2
v0.0.1
1 year ago
## What's Changed * generator by @p-x9 in https://github.com/p-x9/DeclarativeCocoa/pull/1 ## New Contributors * @p-x9 made their first contribution in https://github.com/p-x9/DeclarativeCocoa/pull/1 **Full Changelog**: https://github.com/p-x9/DeclarativeCocoa/commits/0.0.1
p-x9/MoreViewBuilder 0.0.1
Extension to increase the number of views available in ViewBuilder
⭐️ 3
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.0.1
1 year ago
**Full Changelog**: https://github.com/p-x9/MoreViewBuilder/commits/0.0.1 eae2aa66cb35452ce8788335bf78bef3932be1842c5191870830769c4009a3d6
iOS macOS
p-x9/DeclarativeCoreAnimation 0.0.2
🚃 Declarative CoreAnimation. Allow defining properties in the method chain.
⭐️ 3
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.0.2
1 year ago
## What's Changed * merge generated files by @p-x9 in https://github.com/p-x9/DeclarativeCoreAnimation/pull/1 ## New Contributors * @p-x9 made their first contribution in https://github.com/p-x9/DeclarativeCoreAnimation/pull/1 **Full Changelog**: https://github.com/p-x9/DeclarativeCoreAnimation/compare/0.0.1...0.0.2
v0.0.1
1 year ago
**Full Changelog**: https://github.com/p-x9/DeclarativeCoreAnimation/commits/0.0.1
p-x9/SCFNotification 0.0.6
📬 Swift wrapper for `CFNotificationCenter`
⭐️ 3
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.0.6
1 year ago
**Full Changelog**: https://github.com/p-x9/SCFNotification/compare/0.0.5...0.0.6
v0.0.5
1 year ago
## What's Changed * add default param names to `SCFNotificationCallback` by @p-x9 in https://github.com/p-x9/SCFNotification/pull/5 * support `CFNotificationCenterPostNotificationWithOptions` by @p-x9 in https://github.com/p-x9/SCFNotification/pull/6 **Full Changelog**: https://github.com/p-x9/SCFNotification/compare/0.0.4...0.0.5
v0.0.4
1 year ago
## What's Changed * fix to also check notification name by @p-x9 in https://github.com/p-x9/SCFNotification/pull/3 * add tests by @p-x9 in https://github.com/p-x9/SCFNotification/pull/4 **Full Changelog**: https://github.com/p-x9/SCFNotification/compare/0.0.3...0.0.4
v0.0.3
1 year ago
## What's Changed * add syntax-sugar by @p-x9 in https://github.com/p-x9/SCFNotification/pull/1 * Ignore the value of object if darwinNotify. by @p-x9 in https://github.com/p-x9/SCFNotification/pull/2 ## New Contributors * @p-x9 made their first contribution in https://github.com/p-x9/SCFNotification/pull/1 **Full Changelog**: https://github.com/p-x9/SCFNotification/compare/0.0.2...0.0.3
v0.0.2
1 year ago
**Full Changelog**: https://github.com/p-x9/SCFNotification/compare/0.0.1...0.0.2
v0.0.1
1 year ago
**Full Changelog**: https://github.com/p-x9/SCFNotification/commits/0.0.1
p-x9/IndirectlyCodable 0.1.0
indirectly `Codable` protocol
⭐️ 1
🕓 3 weeks ago

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics