diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 77b9250..f055ac0 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -4,7 +4,6 @@ about: Create a report to help us improve title: '' labels: bug assignees: ivanvorobei - --- **Describe the bug** @@ -21,7 +20,7 @@ If applicable, add screenshots to help explain your problem. **Smartphone (please complete the following information):** - iOS Version [e.g. 14.5.1] - - `SPAlert` version [e.g. 3.0.8] + - Framework Version [e.g. 3.0.8] - Installed via [e.g. SPM, Cocoapods, Manually] **Additional context** diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 0000000..88a3e81 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,11 @@ +--- +name: Question +about: Something is not clear with the project +title: '' +labels: '' +assignees: ivanvorobei + +--- + +**Describe the problem that you catch** +A clear and concise description of what you want to do. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 64b8cb6..7b17c5f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,6 +23,7 @@ Here you find all which using in project: - // MARK: - Init - // MARK: - Lifecycle - // MARK: - Layout -- // MARK: - Helpers +- // MARK: - Internal +- // MARK: - Private 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. diff --git a/Example App/SPAlert.xcodeproj/project.xcworkspace/xcuserdata/ivanvorobei.xcuserdatad/UserInterfaceState.xcuserstate b/Example App/SPAlert.xcodeproj/project.xcworkspace/xcuserdata/ivanvorobei.xcuserdatad/UserInterfaceState.xcuserstate index be6bad7..a11495d 100644 Binary files a/Example App/SPAlert.xcodeproj/project.xcworkspace/xcuserdata/ivanvorobei.xcuserdatad/UserInterfaceState.xcuserstate and b/Example App/SPAlert.xcodeproj/project.xcworkspace/xcuserdata/ivanvorobei.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/LICENSE b/LICENSE index 8f7a3fa..fd7d689 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright © 2020 Ivan Vorobei +Copyright © 2021 Ivan Vorobei Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index f9456b6..014463e 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Ready for use on iOS 11+. Works with Swift 5+. Required Xcode 12.0 and higher. The [Swift Package Manager](https://swift.org/package-manager/) is a tool for managing the distribution of Swift code. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies. -To integrate `SPAlert` into your Xcode project using Xcode 12, specify it in `File > Swift Packages > Add Package Dependency...`: +To integrate using Xcode 12, specify it in `File > Swift Packages > Add Package Dependency...`: ```ogdl https://github.com/ivanvorobei/SPAlert @@ -68,7 +68,7 @@ https://github.com/ivanvorobei/SPAlert ### CocoaPods: -[CocoaPods](https://cocoapods.org) is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate `SPAlert` into your Xcode project using CocoaPods, specify it in your `Podfile`: +[CocoaPods](https://cocoapods.org) is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate using CocoaPods, specify it in your `Podfile`: ```ruby pod 'SPAlert' @@ -76,7 +76,7 @@ pod 'SPAlert' ### Manually -If you prefer not to use any of dependency managers, you can integrate `SPAlert` into your project manually. Put `Sources/SPAlert` folder in your Xcode project. Make sure to enable `Copy items if needed` and `Create groups`. +If you prefer not to use any of dependency managers, you can integrate manually. Put `Sources/ProjectName` folder in your Xcode project. Make sure to enable `Copy items if needed` and `Create groups`. ## Quick Start @@ -188,8 +188,8 @@ I have libraries with native interface and managing permissions. Also available ## Russian Community -Веду каналы об iOS разработке. Один с туториалами и новостями, другой с обзором библиотек.
-Со сложной задачей помогут в чате. +Подписывайся в телеграмм-канал, если хочешь получать уведомления о новых туториалах.
+Со сложными и непонятными задачами помогут в чате.

diff --git a/SPAlert.podspec b/SPAlert.podspec index 1b366c4..3f0b2a1 100644 --- a/SPAlert.podspec +++ b/SPAlert.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'SPAlert' - s.version = '3.3.0' + s.version = '3.3.1' s.summary = 'Native alert from Apple Music & Feedback. Contains Done, Heart & Message and other presets.' s.homepage = 'https://github.com/ivanvorobei/SPAlert' s.source = { :git => 'https://github.com/ivanvorobei/SPAlert.git', :tag => s.version }