Skip to content

Commit cf9b649

Browse files
committed
Updated readme and assets.
1 parent f05f8a1 commit cf9b649

File tree

17 files changed

+78
-147
lines changed

17 files changed

+78
-147
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: [ivanvorobei, sparrowcode]
1+
github: [sparrowcode]

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,3 @@ title: ''
55
labels: bug
66
assignees: ivanvorobei
77
---
8-
9-
**Details**
10-
- iOS Version [e.g. 15.2]
11-
- Framework Version [e.g. 1.0.2]
12-
- Installed via [e.g. SPM, Cocoapods, Manually]
13-
14-
**Describe the Bug**
15-
A clear and concise description of what the bug is.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,4 @@ about: Suggest an idea for this project
44
title: ''
55
labels: enhancement
66
assignees: ivanvorobei
7-
87
---
9-
10-
**Feature Description**
11-
Describe what functionality you want to see.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
11
## Goal
22
<!--- Provide details about reason changes. -->
3-
4-
## Checklist
5-
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
6-
- [] Testing in compability platforms
7-
- [] Installed correct via `Swift Package Manager` and `Cocoapods`

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
# osX files
1+
# macOS Files
22
.DS_Store
33
.Trashes
44

55
# Swift Package Manager
66
.swiftpm
7-
8-
# User Interface
9-
*UserInterfaceState.xcuserstate

CONTRIBUTING.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Contributing
22

3-
Here provided more info about project, contribution process and recomended changes.
4-
Please, read it before pull request or create issue.
3+
Here provided info about contribution process and recommendations.
54

65
## Codestyle
76

@@ -28,5 +27,3 @@ Here you find all which using in project:
2827
- // MARK: - Internal
2928
- // MARK: - Models
3029
- // MARK: - Ovveride
31-
32-
If you can't find valid, add new to codestyle agreements please. Other can be use if class is large and need struct it even without adding to codestyle agreements.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Ivan Vorobei
3+
Copyright (c) 2023 Sparrow Code
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import PackageDescription
44

55
let package = Package(
6-
name: "SPSettingsIcons",
6+
name: "SettingsIconGenerator",
77
defaultLocalization: "en",
88
platforms: [
99
.iOS(.v13),
@@ -12,14 +12,14 @@ let package = Package(
1212
],
1313
products: [
1414
.library(
15-
name: "SPSettingsIcons",
16-
targets: ["SPSettingsIcons"]
15+
name: "SettingsIconGenerator",
16+
targets: ["SettingsIconGenerator"]
1717
)
1818
],
1919
dependencies: [],
2020
targets: [
2121
.target(
22-
name: "SPSettingsIcons"
22+
name: "SettingsIconGenerator"
2323
)
2424
]
2525
)

README.md

Lines changed: 40 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPSettingsIcons
1+
# SettingsIconGenerator
22

33
Generate settings icons by Apple's SF Symbols.
44

@@ -16,6 +16,17 @@ Generate settings icons by Apple's SF Symbols.
1616

1717
For safe using SFSymbols see [SPSafeSymbols](https://github.com/sparrowcode/SPSafeSymbols) library.
1818

19+
<p float="left">
20+
<a href="https://twitter.com/sparrowcode_en">
21+
<img src="https://cdn.sparrowcode.io/github%2Fbadges%2Ftwitter.png?version=4" height="52">
22+
</a>
23+
<a href="#apps-using">
24+
<img src="https://cdn.sparrowcode.io/github/badges/download-on-the-appstore.png?version=4" height="52">
25+
</a>
26+
</p>
27+
28+
## Navigate
29+
1930
- [Installation](#installation)
2031
- [Swift Package Manager](#swift-package-manager)
2132
- [CocoaPods](#cocoapods)
@@ -31,27 +42,35 @@ Ready for use on iOS 13+.
3142

3243
### Swift Package Manager
3344

34-
The [Swift Package Manager](https://swift.org/package-manager/) is a tool for automating the distribution of Swift code and is integrated into the `swift` compiler. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies.
45+
In Xcode go to Project -> Your Project Name -> `Package Dependencies` -> Tap *Plus*. Insert url:
3546

36-
Once you have your Swift package set up, adding as a dependency is as easy as adding it to the `dependencies` value of your `Package.swift`.
47+
```
48+
https://github.com/sparrowcode/SettingsIconGenerator
49+
```
50+
51+
or adding it to the `dependencies` of your `Package.swift`:
3752

3853
```swift
3954
dependencies: [
40-
.package(url: "https://github.com/sparrowcode/SPSettingsIcons", .upToNextMajor(from: "1.0.0"))
55+
.package(url: "https://github.com/sparrowcode/SettingsIconGenerator", .upToNextMajor(from: "1.0.0"))
4156
]
4257
```
43-
4458
### CocoaPods:
4559

60+
This is an outdated way of doing things. I advise you to use [SPM](#swift-package-manager). However, I will continue to support Cocoapods for some time.
61+
62+
<details><summary>Cocoapods Instalation</summary>
63+
4664
[CocoaPods](https://cocoapods.org) is a dependency manager. For usage and installation instructions, visit their website. To integrate using CocoaPods, specify it in your `Podfile`:
4765

4866
```ruby
49-
pod 'SPSettingsIcons'
67+
pod 'SettingsIconGenerator'
5068
```
69+
</details>
5170

5271
### Manually
5372

54-
If you prefer not to use any of the dependency managers, you can integrate manually. Put `Sources/SPSettingsIcons` folder in your Xcode project. Make sure to enable `Copy items if needed` and `Create groups`.
73+
If you prefer not to use any of dependency managers, you can integrate manually. Put `Sources/SettingsIconGenerator` folder in your Xcode project. Make sure to enable `Copy items if needed` and `Create groups`.
5574

5675
## Usage
5776

@@ -72,3 +91,17 @@ or if need generate image:
7291
```swift
7392
Image.generateSettingsIcon("bell.fill", backgroundColor: .systemBlue)
7493
```
94+
95+
## Apps Using
96+
97+
<p float="left">
98+
<a href="https://apps.apple.com/app/id1624477055"><img src="https://cdn.sparrowcode.io/github/apps-using/id1624477055.png?version=2" height="65"></a>
99+
<a href="https://apps.apple.com/app/id1625641322"><img src="https://cdn.sparrowcode.io/github/apps-using/id1625641322.png?version=2" height="65"></a>
100+
<a href="https://apps.apple.com/app/id875280793"><img src="https://cdn.sparrowcode.io/github/apps-using/id875280793.png?version=2" height="65"></a>
101+
<a href="https://apps.apple.com/app/id743843090"><img src="https://cdn.sparrowcode.io/github/apps-using/id743843090.png?version=2" height="65"></a>
102+
<a href="https://apps.apple.com/app/id537070378"><img src="https://cdn.sparrowcode.io/github/apps-using/id537070378.png?version=2" height="65"></a>
103+
<a href="https://apps.apple.com/app/id1570676244"><img src="https://cdn.sparrowcode.io/github/apps-using/id1570676244.png?version=2" height="65"></a>
104+
<a href="https://apps.apple.com/app/id1617055933"><img src="https://cdn.sparrowcode.io/github/apps-using/id1617055933.png?version=2" height="65"></a>
105+
</p>
106+
107+
If you use a `SettingsIconGenerator`, add your application via Pull Request.

0 commit comments

Comments
 (0)