2 Commits

Author SHA1 Message Date
9c955897ae Merge pull request #2 from tddworks/main
Add better macOS support
2025-06-01 22:34:09 -04:00
3f48903721 Upgrade EmojiKit from 0.1.1 to 0.2.0 to add support for Unicode 16 emojis 2025-03-12 19:27:51 +04:00
4 changed files with 7 additions and 7 deletions

View File

@@ -5,8 +5,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/tyiu/EmojiKit", "location" : "https://github.com/tyiu/EmojiKit",
"state" : { "state" : {
"revision" : "05805f72d63a6d6a2d7dc7fe14abd37c1317b11a", "revision" : "47a4b1402de26be0299dcb4d667c1faaf21a7874",
"version" : "0.1.2" "version" : "0.2.0"
} }
}, },
{ {

View File

@@ -5,8 +5,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/tyiu/EmojiKit", "location" : "https://github.com/tyiu/EmojiKit",
"state" : { "state" : {
"revision" : "05805f72d63a6d6a2d7dc7fe14abd37c1317b11a", "revision" : "47a4b1402de26be0299dcb4d667c1faaf21a7874",
"version" : "0.1.2" "version" : "0.2.0"
} }
}, },
{ {

View File

@@ -16,7 +16,7 @@ let package = Package(
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"), // .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/tyiu/EmojiKit", .upToNextMajor(from: "0.1.2")), .package(url: "https://github.com/tyiu/EmojiKit", .upToNextMajor(from: "0.2.0")),
.package(url: "https://github.com/tyiu/swift-trie", .upToNextMajor(from: "0.1.2")) .package(url: "https://github.com/tyiu/swift-trie", .upToNextMajor(from: "0.1.2"))
], ],
targets: [ targets: [

View File

@@ -17,7 +17,7 @@ This Swift package allows you to show a view with all available emoji on the OS,
## Dependencies ## Dependencies
- SwiftUI (iOS >= 15.0) - SwiftUI (iOS >= 15.0)
- [EmojiKit](https://github.com/tyiu/EmojiKit) (0.1.2) - [EmojiKit](https://github.com/tyiu/EmojiKit) (0.2.0)
- [SwiftTrie](https://github.com/tyiu/swift-trie) (0.1.2) - [SwiftTrie](https://github.com/tyiu/swift-trie) (0.1.2)
## Installation ## Installation
@@ -45,7 +45,7 @@ let package = Package(
// ... // ...
dependencies: [ dependencies: [
// ... // ...
.package(url: "https://github.com/tyiu/EmojiPicker.git", .upToNextMajor(from: "0.1.1")) .package(url: "https://github.com/tyiu/EmojiPicker.git", .upToNextMajor(from: "0.2.0"))
], ],
targets: [ targets: [
.target( .target(