Skip to content

Commit

Permalink
[PBIOS-637] 6.6.0-release (#481)
Browse files Browse the repository at this point in the history
Playbook version update
  • Loading branch information
isismsilva authored Dec 18, 2024
1 parent e67a279 commit 2f0f41b
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 9 deletions.
24 changes: 24 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# 🚀 Playbook Swift 6.6.0: Enhanced Popovers and More! 🚀
##### Dec 18, 2024

This release introduces fixes and improvements that refine user experience, optimize component behavior, and expand functionality across platforms.

[6.6.0 Full List of Changes](https://github.com/powerhome/playbook-swift/compare/6.5.1...6.6.0)

### Playbook Changes

#### Kit Enhancements
- **Update Padding Prop to PBNavItem**: Introduced a new padding property for PBNavItem to allow greater customization. #475 (Rachel Radford)
- **Add Action to Reaction Button**: Enabled new actions to enhance interactivity with the Reaction Button kit. #474(Rachel Radford)

#### Bug Fixes
- **Fix Popover Closing on Scroll**: Resolved issues with popovers unexpectedly closing when scrolling. #469 (Isis Silva)
- **Fix Popover Leak**: Addressed a memory leak associated with popover components. #478 (Alexandre Hauber)
- **Fix Typeahead Dropdown Scroll on Key Pressed**: Improved dropdown behavior for a smoother scrolling experience when using the keyboard. #476 (Isis Silva)

####Platform Updates
- **Upgrade iOS and macOS Versions**: Updated supported versions for iOS and macOS to ensure compatibility with the latest platforms. #477 (Isis Silva)

🔗 [Full Changelog](https://github.com/powerhome/playbook-swift/compare/6.5.1...6.6.0)


# 🚀 Playbook Swift 6.5.0: Enhanced Dynamic Typeahead! 🚀
##### Nov 12, 2024

Expand Down
8 changes: 4 additions & 4 deletions PlaybookShowcase/PlaybookShowcase.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 6.5.0;
MARKETING_VERSION = 6.6.0;
PRODUCT_BUNDLE_IDENTIFIER = com.powerhrg.PlaybookShowcase;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
Expand Down Expand Up @@ -336,7 +336,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 6.5.0;
MARKETING_VERSION = 6.6.0;
PRODUCT_BUNDLE_IDENTIFIER = com.powerhrg.PlaybookShowcase;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Playbook In House";
Expand Down Expand Up @@ -376,7 +376,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 14.6;
MARKETING_VERSION = 6.5.0;
MARKETING_VERSION = 6.6.0;
PRODUCT_BUNDLE_IDENTIFIER = com.powerhrg.PlaybookShowcase;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -411,7 +411,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 14.6;
MARKETING_VERSION = 6.5.0;
MARKETING_VERSION = 6.6.0;
PRODUCT_BUNDLE_IDENTIFIER = com.powerhrg.PlaybookShowcase;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Playbook Showcase Dev ID";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public struct PBTypeaheadTemplate: View {
private let dropdownMaxHeight: CGFloat?
private let listOffset: (x: CGFloat, y: CGFloat)
private let clearAction: (() -> Void)?
private let popoverManager = PopoverManager()
private let popoverManager = PopoverManager.shared

@State private var showList: Bool = false
@State private var hoveringIndex: (Int?, String?)
Expand Down
3 changes: 1 addition & 2 deletions Sources/Playbook/Components/Typeahead/TypeaheadCatalog.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ public struct TypeaheadCatalog: View {
@FocusState private var isFocusedSection

@State private var presentDialog: Bool = false

@StateObject private var popoverManager = PopoverManager()
@StateObject private var popoverManager = PopoverManager.shared

public var body: some View {
PBDocStack(title: "Typeahead") {
Expand Down
4 changes: 2 additions & 2 deletions project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ targets:
GENERATE_INFOPLIST_FILE: false
PRODUCT_BUNDLE_IDENTIFIER: com.powerhrg.PlaybookShowcase
CURRENT_PROJECT_VERSION: 1
MARKETING_VERSION: "6.5.0"
MARKETING_VERSION: "6.6.0"
Playbook-macOS:
type: application
platform: macOS
Expand All @@ -35,4 +35,4 @@ targets:
GENERATE_INFOPLIST_FILE: false
PRODUCT_BUNDLE_IDENTIFIER: com.powerhrg.PlaybookShowcase
CURRENT_PROJECT_VERSION: 1
MARKETING_VERSION: "6.5.0"
MARKETING_VERSION: "6.6.0"

0 comments on commit 2f0f41b

Please sign in to comment.