Skip to content

Commit a780c79

Browse files
committed
Update icon, logo and scripts
1 parent bdf6362 commit a780c79

31 files changed

+766
-233
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- uses: maxim-lobanov/setup-xcode@v1
1818
with:
19-
xcode-version: '16.0'
19+
xcode-version: latest-stable
2020
- name: Build all platforms
2121
run: bash scripts/build.sh ${{ github.event.repository.name }}
2222
- name: Test iOS

.github/workflows/docc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
- name: Select Xcode version
3535
uses: maxim-lobanov/setup-xcode@v1
3636
with:
37-
xcode-version: '16.0'
37+
xcode-version: latest-stable
3838
- name: Build DocC
3939
run: bash scripts/docc.sh ${{ github.event.repository.name }}
4040
- name: Upload artifact
4141
uses: actions/upload-pages-artifact@v3
4242
with:
43-
path: '.build/docs'
43+
path: '.build/docs-iOS'
4444
- id: deployment
4545
name: Deploy to GitHub Pages
4646
uses: actions/deploy-pages@v4

README.md

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
<p align="center">
2-
<img src ="Resources/Logo_Rounded.png" alt="TagKit Logo" title="TagKit" />
2+
<img src="Resources/Icon.png" alt="Project Icon" width="250" />
33
</p>
44

55
<p align="center">
66
<img src="https://img.shields.io/github/v/release/danielsaidi/TagKit?color=%2300550&sort=semver" alt="Version" />
77
<img src="https://img.shields.io/badge/Swift-5.9-orange.svg" alt="Swift 5.9" />
88
<img src="https://img.shields.io/badge/platform-SwiftUI-blue.svg" alt="Swift UI" title="Swift UI" />
9+
<a href="https://danielsaidi.github.io/TagKit"><img src="https://img.shields.io/badge/documentation-web-blue.svg" alt="Documentation" /></a>
910
<img src="https://img.shields.io/github/license/danielsaidi/TagKit" alt="MIT License" />
10-
<a href="https://twitter.com/danielsaidi">
11-
<img src="https://img.shields.io/twitter/url?label=Twitter&style=social&url=https%3A%2F%2Ftwitter.com%2Fdanielsaidi" alt="Twitter: @danielsaidi" title="Twitter: @danielsaidi" />
12-
</a>
13-
<a href="https://mastodon.social/@danielsaidi">
14-
<img src="https://img.shields.io/mastodon/follow/000253346?label=mastodon&style=social" alt="Mastodon: @[email protected]" title="Mastodon: @[email protected]" />
15-
</a>
1611
</p>
1712

1813

1914

20-
## About TagKit
15+
# TagKit
2116

2217
TagKit is a Swift SDK that makes it easy to work with tags and string/ID slugification in `Swift` and `SwiftUI`.
2318

@@ -67,9 +62,9 @@ Your support makes it possible for me to put more work into these projects and m
6762
Feel free to reach out if you have questions or if you want to contribute in any way:
6863

6964
* Website: [danielsaidi.com][Website]
70-
* Mastodon: [@danielsaidi@mastodon.social][Mastodon]
71-
* Twitter: [@danielsaidi][Twitter]
7265
* E-mail: [[email protected]][Email]
66+
* Bluesky: [@danielsaidi@bsky.social][Bluesky]
67+
* Mastodon: [@danielsaidi@mastodon.social][Mastodon]
7368

7469

7570

@@ -80,15 +75,15 @@ TagKit is available under the MIT license. See the [LICENSE][License] file for m
8075

8176

8277
[Email]: mailto:[email protected]
83-
84-
[Website]: https://www.danielsaidi.com
78+
[Website]: https://danielsaidi.com
8579
[GitHub]: https://github.com/danielsaidi
86-
[Twitter]: https://twitter.com/danielsaidi
87-
[Mastodon]: https://mastodon.social/@danielsaidi
8880
[OpenSource]: https://danielsaidi.com/opensource
8981
[Sponsors]: https://github.com/sponsors/danielsaidi
9082

83+
[Bluesky]: https://bsky.app/profile/danielsaidi.bsky.social
84+
[Mastodon]: https://mastodon.social/@danielsaidi
85+
[Twitter]: https://twitter.com/danielsaidi
86+
9187
[Documentation]: https://danielsaidi.github.io/TagKit
9288
[Getting-Started]: https://danielsaidi.github.io/TagKit/documentation/tagkit/getting-started
93-
9489
[License]: https://github.com/danielsaidi/TagKit/blob/master/LICENSE

Resources/Icon-ios.png

-89.2 KB
Binary file not shown.

Resources/Icon-macos.png

-81.2 KB
Binary file not shown.

Resources/Icon.png

30.7 KB
Loading

Resources/Logo.png

-102 KB
Binary file not shown.

Resources/Logo_Rounded.png

-101 KB
Binary file not shown.
126 KB
Loading

package_version.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
# Documentation:
4+
# This script creates a new project version for the current project.
5+
# You can customize this to fit your project when you copy these scripts.
6+
# You can pass in a custom branch if you don't want to use the default one.
7+
8+
SCRIPT="scripts/package_version.sh"
9+
chmod +x $SCRIPT
10+
bash $SCRIPT

0 commit comments

Comments
 (0)