Skip to content

Commit 60250b7

Browse files
committed
Merge branch 'develop'
2 parents d9fc59e + 35fa299 commit 60250b7

File tree

21 files changed

+2259
-57
lines changed

21 files changed

+2259
-57
lines changed

.gitignore

Lines changed: 48 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
1-
# Xcode
2-
#
3-
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
1+
########### Xcode ###########
2+
# Xcode temporary files that should never be committed
43

5-
## User settings
6-
xcuserdata/
4+
## Build generated
5+
build/
6+
DerivedData
77

8-
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
9-
*.xcscmblueprint
10-
*.xccheckout
8+
# NB: NIB/XIB files still exist even on Storyboard projects, so we want this
9+
*~.nib
10+
*.swp
1111

12-
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
13-
build/
14-
DerivedData/
15-
*.moved-aside
12+
## Various settings
1613
*.pbxuser
1714
!default.pbxuser
1815
*.mode1v3
@@ -21,32 +18,47 @@ DerivedData/
2118
!default.mode2v3
2219
*.perspectivev3
2320
!default.perspectivev3
21+
xcuserdata
2422

25-
## Obj-C/Swift specific
26-
*.hmap
23+
## Other
24+
*.xccheckout
25+
*.moved-aside
26+
*.xcuserstate
27+
*.xcscmblueprint
28+
*.xcscheme
2729

28-
## App packaging
29-
*.ipa
30-
*.dSYM.zip
31-
*.dSYM
30+
########### Mac OS X ###########
31+
# Mac OS X temporary files that should never be committed
3232

33-
## Playgrounds
34-
timeline.xctimeline
35-
playground.xcworkspace
33+
.DS_Store
34+
.AppleDouble
35+
.LSOverride
3636

37-
# Swift Package Manager
38-
#
39-
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
40-
# Packages/
41-
# Package.pins
42-
# Package.resolved
43-
# *.xcodeproj
44-
#
45-
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
46-
# hence it is not needed unless you have added a package configuration file to your project
47-
# .swiftpm
37+
# Icon must end with two \r
38+
Icon
39+
40+
41+
# Thumbnails
42+
._*
4843

49-
.build/
44+
# Files that might appear in the root of a volume
45+
.DocumentRevisions-V100
46+
.fseventsd
47+
.Spotlight-V100
48+
.TemporaryItems
49+
.Trashes
50+
.VolumeIcon.icns
51+
52+
# Directories potentially created on remote AFP share
53+
.AppleDB
54+
.AppleDesktop
55+
Network Trash Folder
56+
Temporary Items
57+
.apdisk
58+
59+
########## Objective-C/Swift specific ##########
60+
*.hmap
61+
*.ipa
5062

5163
# CocoaPods
5264
#
@@ -55,36 +67,17 @@ playground.xcworkspace
5567
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
5668
#
5769
# Pods/
58-
#
59-
# Add this line if you want to avoid checking in source code from the Xcode workspace
60-
# *.xcworkspace
6170

6271
# Carthage
6372
#
6473
# Add this line if you want to avoid checking in source code from Carthage dependencies.
6574
# Carthage/Checkouts
6675

67-
Carthage/Build/
68-
69-
# Accio dependency management
70-
Dependencies/
71-
.accio/
76+
Carthage/Build
7277

7378
# fastlane
7479
#
75-
# It is recommended to not store the screenshots in the git repo.
76-
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
77-
# For more information about the recommended setup visit:
78-
# https://docs.fastlane.tools/best-practices/source-control/#source-control
80+
# It is recommended to not store the screenshots in the Git repository. Instead, use fastlane to re-generate the
7981

8082
fastlane/report.xml
81-
fastlane/Preview.html
82-
fastlane/screenshots/**/*.png
83-
fastlane/test_output
84-
85-
# Code Injection
86-
#
87-
# After new code Injection tools there's a generated folder /iOSInjectionProject
88-
# https://github.com/johnno1962/injectionforxcode
89-
90-
iOSInjectionProject/
83+
fastlane/screenshots

BADGES_GUIDE.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Badges Guide
2+
3+
This section presents a some badges reference guide from the [readme](README.md) file, which are project activity info and are not widely distributed or are attached special for this project.
4+
5+
## Status
6+
7+
Status is an informational badge which shows the project development activity. This information can be represented by the following statuses:
8+
9+
- `active` - this means that the project is under active development.
10+
- `frozen` - this means that the project is still under development, but all work on it was temporarily suspended to clarify and formalize new ideas.
11+
- `completed` - this means that the project implements the intended functionality and the development is completed. Development can be resumed if new ideas for an improvements or features appear.
12+
13+
If you want to help in development, you have any feature suggestions for the project or if you faced a problem or bug, please visit the [contributing](CONTRIBUTING.md) section.
14+
15+
## Version
16+
17+
This information represents the actual version of the project. For the versioning is used [SemVer](http://semver.org/).
18+
19+
## Stable
20+
21+
Stable is an informational badge which shows the api interface stability. This information can be represented by the following:
22+
23+
- `yes` - this means that the project in a stable state.
24+
- `no` - this means that the project is not in a stable state and some interfaces could be changed.
25+
26+
## OSS Lifecycle
27+
28+
OSS Lifecycle is an initiative started by Netflix to classify open-source projects into lifecycles and clearly identify which projects are active and which ones are retired. To enable this badge, simply create an `OSSMETADATA` tagging file at the root of your GitHub repository containing a single line similar to the following: `osslifecycle=active`. Other suggested values are `osslifecycle=maintenance` and `osslifecycle=archived`. A working example can be viewed on the [OSS Tracker repository](https://github.com/Netflix/osstracker).
29+
30+
## Maintenance
31+
32+
This is an informational badge which shows the maintenance process state of the project. The following statuses are applied:
33+
34+
- `yes` - this means that the project is under maintenance.
35+
- `no (of {expiration date})` - this means that the project is no longer maintained.
36+
37+
In both cases, the project can still be used.
38+
39+
Please visit the [contributing](CONTRIBUTING.md) page if you faced with some issues with the project.
40+
41+
## Release Date
42+
43+
This is an information about the project release date which would be stable and could be used. In this case, it is possible to indicate the date of the first release, last release, release of a specific version.
44+
45+
## Commit Date
46+
47+
This is an information about the project commit date, which would show the last commit date in the project repository.

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
6+
7+
## [Unreleased] - yyyy-mm-dd
8+
9+
### Changed
10+
11+
- Refactor application.
12+
13+
## [0.0.1-alpha] - 2021-11-03
14+
15+
### Added
16+
17+
- The `Finder extension` which allows to:
18+
- create new empty file.

CODE_OF_CONDUCT.md

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
We as members, contributors, and leaders pledge to make participation in our
6+
community a harassment-free experience for everyone, regardless of age, body
7+
size, visible or invisible disability, ethnicity, sex characteristics, gender
8+
identity and expression, level of experience, education, socio-economic status,
9+
nationality, personal appearance, race, religion, or sexual identity
10+
and orientation.
11+
12+
We pledge to act and interact in ways that contribute to an open, welcoming,
13+
diverse, inclusive, and healthy community.
14+
15+
## Our Standards
16+
17+
Examples of behavior that contributes to a positive environment for our
18+
community include:
19+
20+
* Demonstrating empathy and kindness toward other people
21+
* Being respectful of differing opinions, viewpoints, and experiences
22+
* Giving and gracefully accepting constructive feedback
23+
* Accepting responsibility and apologizing to those affected by our mistakes,
24+
and learning from the experience
25+
* Focusing on what is best not just for us as individuals, but for the
26+
overall community
27+
28+
Examples of unacceptable behavior include:
29+
30+
* The use of sexualized language or imagery, and sexual attention or
31+
advances of any kind
32+
* Trolling, insulting or derogatory comments, and personal or political attacks
33+
* Public or private harassment
34+
* Publishing others' private information, such as a physical or email
35+
address, without their explicit permission
36+
* Other conduct which could reasonably be considered inappropriate in a
37+
professional setting
38+
39+
## Enforcement Responsibilities
40+
41+
Community leaders are responsible for clarifying and enforcing our standards of
42+
acceptable behavior and will take appropriate and fair corrective action in
43+
response to any behavior that they deem inappropriate, threatening, offensive,
44+
or harmful.
45+
46+
Community leaders have the right and responsibility to remove, edit, or reject
47+
comments, commits, code, wiki edits, issues, and other contributions that are
48+
not aligned to this Code of Conduct, and will communicate reasons for moderation
49+
decisions when appropriate.
50+
51+
## Scope
52+
53+
This Code of Conduct applies within all community spaces, and also applies when
54+
an individual is officially representing the community in public spaces.
55+
Examples of representing our community include using an official e-mail address,
56+
posting via an official social media account, or acting as an appointed
57+
representative at an online or offline event.
58+
59+
## Enforcement
60+
61+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62+
reported to the community leaders responsible for enforcement at
63+
64+
All complaints will be reviewed and investigated promptly and fairly.
65+
66+
All community leaders are obligated to respect the privacy and security of the
67+
reporter of any incident.
68+
69+
## Enforcement Guidelines
70+
71+
Community leaders will follow these Community Impact Guidelines in determining
72+
the consequences for any action they deem in violation of this Code of Conduct:
73+
74+
### 1. Correction
75+
76+
**Community Impact**: Use of inappropriate language or other behavior deemed
77+
unprofessional or unwelcome in the community.
78+
79+
**Consequence**: A private, written warning from community leaders, providing
80+
clarity around the nature of the violation and an explanation of why the
81+
behavior was inappropriate. A public apology may be requested.
82+
83+
### 2. Warning
84+
85+
**Community Impact**: A violation through a single incident or series
86+
of actions.
87+
88+
**Consequence**: A warning with consequences for continued behavior. No
89+
interaction with the people involved, including unsolicited interaction with
90+
those enforcing the Code of Conduct, for a specified period of time. This
91+
includes avoiding interactions in community spaces as well as external channels
92+
like social media. Violating these terms may lead to a temporary or
93+
permanent ban.
94+
95+
### 3. Temporary Ban
96+
97+
**Community Impact**: A serious violation of community standards, including
98+
sustained inappropriate behavior.
99+
100+
**Consequence**: A temporary ban from any sort of interaction or public
101+
communication with the community for a specified period of time. No public or
102+
private interaction with the people involved, including unsolicited interaction
103+
with those enforcing the Code of Conduct, is allowed during this period.
104+
Violating these terms may lead to a permanent ban.
105+
106+
### 4. Permanent Ban
107+
108+
**Community Impact**: Demonstrating a pattern of violation of community
109+
standards, including sustained inappropriate behavior, harassment of an
110+
individual, or aggression toward or disparagement of classes of individuals.
111+
112+
**Consequence**: A permanent ban from any sort of public interaction within
113+
the community.
114+
115+
## Attribution
116+
117+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118+
version 2.0, available at
119+
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120+
121+
Community Impact Guidelines were inspired by [Mozilla's code of conduct
122+
enforcement ladder](https://github.com/mozilla/diversity).
123+
124+
[homepage]: https://www.contributor-covenant.org
125+
126+
For answers to common questions about this code of conduct, see the FAQ at
127+
https://www.contributor-covenant.org/faq. Translations are available at
128+
https://www.contributor-covenant.org/translations

0 commit comments

Comments
 (0)