Swiftpack.co - Swift Packages by zendesk

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

Packages published by zendesk

zendesk/sunshine-conversations-ios 12.1.1
Smooch
⭐️ 122
πŸ•“ 13 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.
12.1.1
13 weeks ago
# 12.1.1 This minor version fixes the issue when logout call returns with `404` HTTP error.
12.1.0
34 weeks ago
# 12.1.0 This minor version contains bug fixes and enhancements including: - Added `serviceBaseUrl` property that can be set on the settings object. - Fixed a hang risk warning that occurred when running the SDK in Xcode 14. - Additional hardening to prevent crashes occurring in the SDK.
12.0.0
47 weeks ago
# 12.0.0 This major version provides support for iOS 16 and increases the iOS minimum deployment target from iOS 10.0 to iOS 11.0. - Fixed crashes relating to the conversation screen.
11.0.0
1 year ago
# 11.0.0 This major version contains a number of bug fixes and improvements including: - Improved APIs related to setting up a conversation delegate. The delegate should now be set by using the `setConversationDelegate` method on the `Smooch` class. It is no longer possible to set a delegate by directly modifying a `SKTConversation` object. - Fixed an issue that caused the `unreadCountDidChange` delegate method to not be called in a multi-conversation setting. - Fixed an issue that caused a "Done" button to incorrectly display in the navigation bar on smaller devices. - Fixed an observer-related crash that could occur infrequently when switching between conversations on slow connections. - Migrated to updated API documentation tooling.
10.1.3
1 year ago
# 10.1.3 This patch version contains a number of bug fixes and improvements including: - Fixed an issue that caused the keyboard to render over the text-input field. - Fixed an app crash related to showing the conversation.
10.1.2
1 year ago
# 10.1.2 This patch version contains a number of bug fixes and improvements including: - Added support for Swift Package Manager. - Fixed an issue where a crash could occur during login/logout. - Fixed an issue where a user's location may fail to be sent. - Fixed an issue where attempting to send an attachment could cause a crash on iPad. - Fixed an issue where the typing indicator was not being shown.
10.1.1
2 years ago
This patch version contains a number of bug fixes and improvements including: - Fixed an issue where the SDK could block the main thread when sending messages and presenting and dismissing the conversation screen. - Fixed an issue where the conversation header disappeared when cancelling a Quick Photo. - Improved error logging in the event of a message sending failure.
10.1.0
1 year ago
# 10.1.0 This minor version contains bug fixes and enhancements including: - Better Message Delivery tracking - enabling integrators to know when a message arrives on the device. - We now return the participant's userExternalId when fetching the conversation information - Added customizations for Dark Mode. - Fixed a bug with the composer for multi-line replies. - Fixed a minor bug for the attachment button when using UISceneDelegate. - Fixed a bug with the seen indicator not refreshing.
10.0.0
1 year ago
# 10.0.0 This major version contains support for XCFramework, and a number of bug fixes and improvements including: - Xcode 12 Support - Added ability to change the colour of text in a carousel. - Hide/Disable keyboard. - Fixed a bug for taking quick photos in iOS 14. - β€œMessages” is displayed for conversations that do not have a name assigned. - Added the ability to send β€œavatarUrl” when creating a conversation.
9.0.0
3 years ago
# 9.0.0 This major version enhances the support for Multi-Conversations and introduces a new conversation list UI. We have also included updates to our conversation screen UI to show the conversation icon, conversation name and description. You can also configure your app to allow users to create multiple conversations from our conversation list screen. We've fixed a bug relating to JWT expiry which invokes an auth delegate required to refresh the JWT and reattempt connection. ## Behavior Changes ### Loading a Conversation You can now load a conversation specified by the ID and present the conversation screen. ``` [Smooch showConversationWithId:@"your conversationId"]; ``` You can now load a conversation specified by the ID and present the conversation screen with prefilled text in the message input. ``` [Smooch showConversationWithId:@"your conversationId" andStartingText:@"your starting text"]; ``` You can now load a conversation specified by the ID and present the conversation screen using the given view controller as presenting view controller. ``` [Smooch showConversationWithId:@"your conversationId" fromViewController:[[YourViewController alloc] init]]; ``` You can now load a conversation specified by the ID and present the conversation screen with prefilled text in the message input using the given view controller as presenting view controller. ``` [Smooch showConversationWithId:@"your conversationId" fromViewController:[[YourViewController alloc] init] andStartingText:@"your starting text"]; ``` ### Creating a Conversation View You can now create and return a Smooch conversation view controller loading the conversation specified by the ID. ``` [Smooch newConversationViewControllerWithId:@"your conversationId" completionHandler:^(NSError * _Nullable error, UIViewController * _Nullable viewController) { if (error) { // handle error else { // handle success } }]; ``` You can now create and return a Smooch conversation view controller with prefilled text in the message input specified by the ID. ``` [Smooch newConversationViewControllerWithId:@"your conversationId" startingText:@"your starting text" completionHandler:^(NSError * _Nullable error, UIViewController * _Nullable viewController) { if (error) { // handle error } else { // handle success } }]; ``` ### Conversation List You can now present the Smooch conversation list screen. ``` [Smooch showConversationList]; ``` You can now present the Smooch conversation list screen without the create conversation button. ``` [Smooch showConversationListWithoutCreateConversationButton]; ``` You can now dismiss the Smooch conversation list screen if shown. ``` [Smooch closeConversationList]; ``` You can now present the Smooch conversation list screen, using the given view controller as presenting view controller. ``` [Smooch showConversationListFromViewController:[[YourViewController alloc] init]]; ``` You can now present the Smooch conversation list screen without the create conversation button, using the given view controller as presenting view controller. ``` [Smooch showConversationListFromViewControllerWithoutCreateConversationButton:[[YourViewController alloc] init]]; ``` You can create the conversation list view controller. ``` [Smooch newConversationListViewController]; ``` You can now create the conversation list view controller without the create conversation button. ``` [Smooch newConversationListViewControllerWithoutCreateConversationButton]; ``` You can now set the conversation list delegate to receive updates. ``` [Smooch setConversationListDelegate:self]; ``` ### Creating a Conversation You can now create a conversation for the current user with optional displayName, description, iconUrl, metadata and send a message of type text. ``` [Smooch createConversationWithName:@"displayName" description:@"description" iconUrl:@"iconUrl" metadata:@{@"metadataKey": @"metadataValue"} message:@[[[SKTMessage alloc] initWithText:@"message"]] completionHandler:^(NSError * _Nullable error, NSDictionary * _Nullable userInfo) { if (error) { // handle error } else { // handle success } }]; ``` ### Updating a Conversation You can now update a conversation for the current user with optional displayName, description, iconUrl and metadata. ``` [Smooch updateConversationById:@"your conversationId" withName:@"displayName" description:@"description" iconUrl:@"iconUrl" metadata:@{@"metadataKey": @"metadataValue"} completionHandler:^(NSError * _Nullable error, NSDictionary * _Nullable userInfo) { if (error) { // handle error } else { // handle success } }]; ``` ### Loading Conversations You can now load a list of the next 10 conversations from the server. ``` [self.conversationController getMoreConversations:^(NSError * error) { if (error) { // handle error } else { // handle success } }]; ``` You can now support pagination with this boolean, representing if the server has more conversations to load for the user. ``` [self.conversationController hasMoreConversations]; ``` ## API Changes (Breaking) - Updated the following SKTUser properties. - `userId` is now `externalId` - `properties` is now `metadata` - `appUserId` is now `userId` - Updated the following SKTConversation properties. - `appUserId` is now `userId` - `appMakerLastRead` is now `businessLastRead` - `appMaker` is now `business` - Updated the following SKTParticipant property for the participants included in the `participants` array - `appUserId` is now `userId` - Updated the following SKTMessage properties for the messages included in the `messages` array - `authorId` is now `userId` and will only be included for messages with `role` equals to `user` - `name` is now `displayName` ## API Additions 1. Class `Smooch.h` - Added class method `+(void)showConversationWithId:(NSString *)conversationId` - Added class method `+(void)showConversationWithId:(NSString *)conversationId andStartingText:(nullable NSString *)startingText` - Added class method `+(void)showConversationWithId:(NSString *)conversationId fromViewController:(UIViewController*)viewController;` - Added class method `+(void)showConversationWithId:(NSString *)conversationId fromViewController:(UIViewController*)viewController andStartingText:(nullable NSString *)startingText` - Added class method `+(void)newConversationViewControllerWithId:(NSString *)conversationId completionHandler:(nullable void(^)(NSError * _Nullable error, UIViewController * _Nullable viewController))handler` - Added class method `+(void)newConversationViewControllerWithId:(NSString *)conversationId startingText:(nullable NSString *)startingText completionHandler:(nullable void(^)(NSError * _Nullable error, UIViewController * _Nullable viewController))handler` - Added class method `+(void)showConversationList` - Added class method `+(void)showConversationListWithoutCreateConversationButton` - Added class method `+(void)closeConversationList` - Added class method `+(void)showConversationListFromViewController:(UIViewController*)viewController` - Added class method `+(void)showConversationListFromViewControllerWithoutCreateConversationButton:(UIViewController *)viewController` - Added class method `+(nullable UIViewController *)newConversationListViewController` - Added class method `+(nullable UIViewController *)newConversationListViewControllerWithoutCreateConversationButton` - Added class method `+(void)setConversationListDelegate:(nullable id<SKTConversationListDelegate>)delegate` - Added class method `+(void)createConversationWithName:(nullable NSString *)displayName description:(nullable NSString *)description iconUrl:(nullable NSString *)iconUrl metadata:(nullable NSDictionary *)metadata message:(nullable NSArray<SKTMessage *> *)message completionHandler:(nullable void(^)(NSError * _Nullable error, NSDictionary * _Nullable userInfo))completionHandler` - Added class method `+(void)updateConversationById:(NSString *)conversationId withName:(nullable NSString *)displayName description:(nullable NSString *)description iconUrl:(nullable NSString *)iconUrl metadata:(nullable NSDictionary *)metadata completionHandler:(nullable void(^)(NSError * _Nullable error, NSDictionary * _Nullable userInfo))completionHandler` - Added class method `+ (void)getMoreConversations:(void (^)(NSError * _Nullable))completionHandler` - Added class method `+ (BOOL)hasMoreConversations` 2. Class `SKTSettings.h` - Added property `UIColor *conversationListAccentColor` 3. Added Protocol SKTConversationListDelegate - Added method shouldCreateCustomConversationFlow - Added method conversationListDidSelectCreateConversation
iOS
zendesk/support_sdk_ios 7.0.0
Zendesk Support SDK for iOS
⭐️ 38
πŸ•“ 27 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.
7.0.0
27 weeks ago
Release v7.0.0
SupportSDK v6.0.0
49 weeks ago
SupportSDK v5.5.0
1 year ago
SupportSDK v5.4.1
1 year ago
SupportSDK v5.4.0
1 year ago
SupportSDK v5.3.0
2 years ago
2 years ago
5.0.1
3 years ago
iOS
zendesk/chat_sdk_ios 4.0.1
Zendesk Chat SDK
⭐️ 18
πŸ•“ 9 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.
4.0.1
9 weeks ago
Release v4.0.1
4.0.0
27 weeks ago
Release v4.0.0
ChatSDK v3.0.0
49 weeks ago
ChatSDK v2.12.0
1 year ago
ChatSDK v2.11.3
1 year ago
ChatSDK v2.11.2
1 year ago
ChatSDK v2.11.1
2 years ago
ChatSDK v2.11.0
2 years ago
2 years ago
2 years ago
iOS
zendesk/sdk_messaging_ios 2.14.0
The Zendesk Messaging SDK
⭐️ 14
πŸ•“ 5 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.
2.14.0
5 weeks ago
Release v2.14.0
2.13.1
7 weeks ago
Release v2.13.1
2.13.0
8 weeks ago
Release v2.13.0
2.12.0
18 weeks ago
Release v2.12.0
2.11.0
22 weeks ago
Release v2.11.0
2.10.0
23 weeks ago
Release v2.10.0
2.9.0
26 weeks ago
v2.9.0
2.8.1
32 weeks ago
Release v2.8.1
2.8.0
43 weeks ago
release/2.8.0
2.7.0
48 weeks ago
release/2.7.0
iOS
zendesk/messaging_sdk_ios 5.0.0
Zendesk Messaging SDK
⭐️ 9
πŸ•“ 27 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.
5.0.0
27 weeks ago
Release v5.0.0
MessagingSDK v4.0.0
49 weeks ago
MessagingSDK v3.8.5
1 year ago
MessagingSDK v3.8.4
1 year ago
MessagingSDK v3.8.3
1 year ago
MessagingSDK v3.8.2
2 years ago
2 years ago
Messaging v3.2.0
3 years ago
Messaging v3.1.1
3 years ago
iOS
zendesk/support_providers_sdk_ios 7.0.0
Zendesk Support Providers SDK
⭐️ 5
πŸ•“ 27 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.
7.0.0
27 weeks ago
Release v7.0.0
SupportProvidersSDK v6.0.0
49 weeks ago
SupportProvidersSDK v5.5.0
1 year ago
SupportProvidersSDK v5.4.1
1 year ago
SupportProvidersSDK v5.4.0
1 year ago
SupportProvidersSDK v5.3.0
2 years ago
2 years ago
3 years ago
iOS
zendesk/answer_bot_sdk_ios 4.0.0
Answer Bot SDK for iOS
⭐️ 5
πŸ•“ 27 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.
4.0.0
19 weeks ago
iOS
zendesk/sdk_zendesk_ios 1.15.0
About A swift module for enabling customer support in a project.
⭐️ 5
πŸ•“ 5 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.
1.15.0
5 weeks ago
Release v1.15.0
1.14.0
7 weeks ago
Release v1.14.0
1.13.0
12 weeks ago
Release v1.13.0
1.12.0
18 weeks ago
Release v1.12.0
1.11.0
22 weeks ago
Release v1.11.0
1.10.0
23 weeks ago
Release v1.10.0
1.9.0
26 weeks ago
v1.9.0
1.8.0
43 weeks ago
Release v1.8.0
1.7.0
48 weeks ago
release/1.7.0
1.6.0
1 year ago
release/1.6.0
iOS
zendesk/chat_providers_sdk_ios 4.0.1
Zendesk Chat Providers SDK
⭐️ 4
πŸ•“ 9 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.
4.0.1
9 weeks ago
Release v4.0.1
4.0.0
27 weeks ago
Release v4.0.0
ChatProvidersSDK v3.0.0
49 weeks ago
ChatProvidersSDK v2.12.0
1 year ago
ChatProvidersSDK v2.11.3
1 year ago
ChatProvidersSDK v2.11.2
1 year ago
ChatProvidersSDK v2.11.1
2 years ago
ChatProvidersSDK v2.11.0
2 years ago
2 years ago
Chat Providers v2.2.1
3 years ago
iOS
zendesk/core_sdk_ios 4.0.0
Zendesk Core SDK for iOS
⭐️ 4
πŸ•“ 27 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.
4.0.0
27 weeks ago
Release v4.0.0
ZendeskCoreSDK v3.0.0
49 weeks ago
ZendeskCoreSDK v2.7.0
1 year ago
ZendeskCoreSDK v2.6.0
1 year ago
ZendeskCoreSDK v2.5.1
2 years ago
2 years ago
iOS
zendesk/messagingapi_sdk_ios 5.0.0
Zendesk MessagingAPI SDK
⭐️ 4
πŸ•“ 27 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.
5.0.0
27 weeks ago
Release v5.0.0
MessagingAPI v4.0.0
49 weeks ago
MessagingAPI v3.8.5
1 year ago
MessagingAPI v3.8.4
1 year ago
MessagingAPI v3.8.3
1 year ago
MessagingAPI v3.8.2
2 years ago
2 years ago
Messaging API v3.1.1
3 years ago
3 years ago
iOS
zendesk/commonui_sdk_ios 8.0.0
Zendesk CommonUI SDK
⭐️ 3
πŸ•“ 27 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.
8.0.0
27 weeks ago
Release v8.0.0
CommonUISDK v7.0.0
49 weeks ago
CommonUISDK v6.1.4
1 year ago
CommonUISDK v6.1.3
1 year ago
CommonUISDK v6.1.2
1 year ago
CommonUISDK v6.1.1
2 years ago
2 years ago
CommonUI v4.1.1
3 years ago
3 years ago
iOS
zendesk/sdk_conversation_kit_ios 1.12.0
The ZendeskSDKConversationKit library for communicating with the Zendesk Sunshine Conversations backend.
⭐️ 3
πŸ•“ 5 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.
1.12.0
5 weeks ago
Release v1.12.0
1.11.0
7 weeks ago
Release v1.11.0
1.10.0
12 weeks ago
Release v1.10.0
1.9.0
18 weeks ago
Release v1.9.0
1.8.0
23 weeks ago
Release v1.8.0
1.7.0
26 weeks ago
Release v1.7.0
1.5.0
48 weeks ago
release/1.5.0
1.4.0
1 year ago
release/1.4.0
1.3.0
1 year ago
release/1.3.0
1.2.0
1 year ago
release/1.2.0
iOS
zendesk/sdk_ui_components_ios 2.9.0
UI Components
⭐️ 2
πŸ•“ 5 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.
2.9.0
5 weeks ago
Release v2.9.0
2.8.0
12 weeks ago
Release v2.8.0
2.7.0
18 weeks ago
Release v2.7.0
2.6.0
22 weeks ago
Release v2.6.0
2.5.0
23 weeks ago
Release v2.5.0
2.4.0
26 weeks ago
Release v2.4.0
2.3.0
43 weeks ago
Release v2.3.0
2.2.0
48 weeks ago
release/2.2.0
2.1.0
1 year ago
release/2.1.0
2.0.0
1 year ago
release/2.0.0
iOS
zendesk/answer_bot_providers_sdk_ios 4.0.0
Zendesk Answer Bot Providers SDK
⭐️ 2
πŸ•“ 27 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.
4.0.0
27 weeks ago
Release v4.0.0
AnswerBotProvidersSDK v3.0.0
49 weeks ago
AnswerBotProvidersSDK v2.2.0
1 year ago
AnswerBotProvidersSDK v2.1.5
1 year ago
AnswerBotProvidersSDK v2.1.4
1 year ago
AnswerBotProvidersSDK v2.1.3
2 years ago
2 years ago
2.0.1
3 years ago
3 years ago
iOS
zendesk/sdk_core_utilities_ios 1.5.0
Core Utilities module for the Messaging iOS SDK
⭐️ 1
πŸ•“ 7 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.
1.5.0
7 weeks ago
Release v1.5.0
1.4.0
12 weeks ago
Release v1.4.0
1.3.0
18 weeks ago
Release v1.3.0
1.2.0
23 weeks ago
Release v1.2.0
1.1.0
26 weeks ago
Release v1.1.0
iOS
zendesk/sdk_logger_ios 0.8.0
A swift module for handling logging in a project.
⭐️ 1
πŸ•“ 12 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.8.0
12 weeks ago
Release v0.8.0
0.7.0
18 weeks ago
Release v0.7.0
0.6.0
23 weeks ago
Release v0.6.0
0.5.0
43 weeks ago
Release v0.5.0
0.4.3
1 year ago
release/0.4.3
0.4.2
1 year ago
release/0.4.2
0.4.1
2 years ago
release/0.4.1
0.4.0
2 years ago
release/0.4.0
iOS
zendesk/sdk_storage_ios 0.8.0
Storage Client
⭐️ 0
πŸ•“ 12 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.8.0
12 weeks ago
Release v0.8.0
0.7.0
18 weeks ago
Release v0.7.0
0.6.0
23 weeks ago
Release v0.6.0
0.5.0
43 weeks ago
Release v0.5.0
0.4.4
1 year ago
release/0.4.4
0.4.3
1 year ago
release/0.4.3
0.4.2
1 year ago
release/0.4.2
0.4.1
2 years ago
release/0.4.1
0.4.0
2 years ago
release/0.4.0
iOS
zendesk/sdk_socket_client_ios 1.5.0
A module for handling socket communication in an iOS project.
⭐️ 0
πŸ•“ 11 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.
1.5.0
12 weeks ago
Release v1.5.0
1.4.0
18 weeks ago
Release v1.4.0
1.3.0
23 weeks ago
Release v1.3.0
1.2.0
43 weeks ago
Release v1.2.0
1.1.0
1 year ago
release/1.1.0
1.0.0
1 year ago
release/1.0.0
0.4.3
1 year ago
release/0.4.3
0.4.2
1 year ago
release/0.4.2
0.4.1
2 years ago
release/0.4.1
0.4.0
2 years ago
release/0.4.0
iOS
zendesk/sdk_faye_client_ios 1.5.0
Zendesk Faye Client
⭐️ 0
πŸ•“ 12 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.
1.5.0
12 weeks ago
Release v1.5.0
1.4.0
18 weeks ago
Release v1.4.0
1.3.0
23 weeks ago
Release v1.3.0
1.2.0
43 weeks ago
Release v1.2.0
1.1.0
1 year ago
release/1.1.0
1.0.0
1 year ago
release/1.0.0
0.4.3
1 year ago
release/0.4.3
0.4.2
1 year ago
release/0.4.2
0.4.1
2 years ago
release/0.4.1
0.4.0
2 years ago
release/0.4.0
iOS
zendesk/sdk_http_client_ios 0.13.0
HTTP Client
⭐️ 0
πŸ•“ 12 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.13.0
12 weeks ago
Release v0.13.0
0.12.0
18 weeks ago
Release v0.12.0
0.11.0
23 weeks ago
Release v0.11.0
0.10.0
26 weeks ago
Release v0.10.0
0.9.0
43 weeks ago
Release v0.9.0
0.8.0
48 weeks ago
release/0.8.0
0.7.0
1 year ago
release/0.7.0
0.6.0
1 year ago
release/0.6.0
0.5.2
1 year ago
release/0.5.2
0.5.1
1 year ago
release/0.5.1
iOS
zendesk/XcodeGen 2.24.0
A Swift command line tool for generating your Xcode project
⭐️ 0
πŸ•“ 24 weeks ago
macOS

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