Skip to content

Commit a61fdf6

Browse files
committed
Update icon, logo and scripts
1 parent 4f3d943 commit a61fdf6

File tree

9 files changed

+17
-18
lines changed

9 files changed

+17
-18
lines changed

.github/workflows/docc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
xcode-version: latest-stable
3838
- name: Build DocC
39-
run: bash scripts/docc.sh ${{ github.event.repository.name }} iOS
39+
run: bash scripts/docc.sh ${{ github.event.repository.name }}
4040
- name: Upload artifact
4141
uses: actions/upload-pages-artifact@v3
4242
with:

README.md

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
<p align="center">
2-
<img src ="Resources/Logo_GitHub.png" alt="SwiftUIKit Logo" title="SwiftUIKit" />
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/SwiftUIKit?color=%2300550&sort=semver" alt="Version" />
77
<img src="https://img.shields.io/badge/Swift-6.0-orange.svg" alt="Swift 6.0" />
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/SwiftUIKit"><img src="https://img.shields.io/badge/documentation-web-blue.svg" alt="Documentation" /></a>
910
<img src="https://img.shields.io/github/license/danielsaidi/SwiftUIKit" alt="MIT License" />
10-
<a href="https://twitter.com/danielsaidi"><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" /></a>
11-
<a href="https://mastodon.social/@danielsaidi"><img src="https://img.shields.io/mastodon/follow/000253346?label=mastodon&style=social" alt="Mastodon: @[email protected]" title="Mastodon: @[email protected]" /></a>
1211
</p>
1312

1413

1514

16-
## About SwiftUIKit
15+
# SwiftUIKit
1716

1817
SwiftUIKit is a Swift SDK that adds extra functionality to `SwiftUI` and `Swift`. It contains additional components, a lot of extensions to native types, and much more.
1918

@@ -55,12 +54,12 @@ Your support makes it possible for me to put more work into these projects and m
5554

5655
## Contact
5756

58-
Feel free to reach out if you have questions or want to contribute in any way:
57+
Feel free to reach out if you have questions, or want to contribute in any way:
5958

6059
* Website: [danielsaidi.com][Website]
60+
* E-mail: [[email protected]][Email]
61+
* Bluesky: [@danielsaidi@bsky.social][Bluesky]
6162
* Mastodon: [@danielsaidi@mastodon.social][Mastodon]
62-
* Twitter: [@danielsaidi][Twitter]
63-
* E-mail: [[email protected]][Email]
6463

6564

6665

@@ -71,14 +70,14 @@ SwiftUIKit is available under the MIT license. See the [LICENSE][License] file f
7170

7271

7372
[Email]: mailto:[email protected]
74-
7573
[Website]: https://danielsaidi.com
7674
[GitHub]: https://github.com/danielsaidi
77-
[Twitter]: https://twitter.com/danielsaidi
78-
[Mastodon]: https://mastodon.social/@danielsaidi
7975
[OpenSource]: https://danielsaidi.com/opensource
8076
[Sponsors]: https://github.com/sponsors/danielsaidi
8177

82-
[Documentation]: https://danielsaidi.github.io/SwiftUIKit
78+
[Bluesky]: https://bsky.app/profile/danielsaidi.bsky.social
79+
[Mastodon]: https://mastodon.social/@danielsaidi
80+
[Twitter]: https://twitter.com/danielsaidi
8381

82+
[Documentation]: https://danielsaidi.github.io/SwiftUIKit
8483
[License]: https://github.com/danielsaidi/SwiftUIKit/blob/master/LICENSE

Resources/Icon.png

-52.1 KB
Loading

Resources/Logo.png

-90.2 KB
Binary file not shown.

Resources/Logo_GitHub.png

-98.8 KB
Binary file not shown.

Resources/Logo_New.png

-90.2 KB
Binary file not shown.

Sources/SwiftUIKit/Flip/FlipView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ private extension View {
170170
private var isFlipped = false
171171

172172
var body: some View {
173-
VStack {
173+
List {
174174
Text("Is Flipped: \(isFlipped)")
175175

176176
FlipView(
Loading

package_version.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22

33
# Documentation:
4-
# This script creates a new project version for the package.
5-
# You can pass in a BRANCH to not use the default git branch.
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.
67

7-
DEFAULT_BRANCH="main"
8-
BRANCH=${1:-$DEFAULT_BRANCH}
98
SCRIPT="scripts/package_version.sh"
10-
chmod +x $SCRIPT && bash $SCRIPT $BRANCH
9+
chmod +x $SCRIPT
10+
bash $SCRIPT

0 commit comments

Comments
 (0)