-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7a95ac8
Showing
10 changed files
with
841 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
# Xcode | ||
# | ||
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore | ||
|
||
## User settings | ||
xcuserdata/ | ||
|
||
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) | ||
*.xcscmblueprint | ||
*.xccheckout | ||
|
||
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) | ||
build/ | ||
DerivedData/ | ||
*.moved-aside | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
|
||
## Obj-C/Swift specific | ||
*.hmap | ||
|
||
## App packaging | ||
*.ipa | ||
*.dSYM.zip | ||
*.dSYM | ||
|
||
## Playgrounds | ||
timeline.xctimeline | ||
playground.xcworkspace | ||
|
||
# Swift Package Manager | ||
# | ||
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. | ||
# Packages/ | ||
# Package.pins | ||
# Package.resolved | ||
# *.xcodeproj | ||
# | ||
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata | ||
# hence it is not needed unless you have added a package configuration file to your project | ||
# .swiftpm | ||
|
||
.build/ | ||
|
||
# CocoaPods | ||
# | ||
# We recommend against adding the Pods directory to your .gitignore. However | ||
# you should judge for yourself, the pros and cons are mentioned at: | ||
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control | ||
# | ||
# Pods/ | ||
# | ||
# Add this line if you want to avoid checking in source code from the Xcode workspace | ||
# *.xcworkspace | ||
|
||
# Carthage | ||
# | ||
# Add this line if you want to avoid checking in source code from Carthage dependencies. | ||
# Carthage/Checkouts | ||
|
||
Carthage/Build/ | ||
|
||
# Accio dependency management | ||
Dependencies/ | ||
.accio/ | ||
|
||
# fastlane | ||
# | ||
# It is recommended to not store the screenshots in the git repo. | ||
# Instead, use fastlane to re-generate the screenshots whenever they are needed. | ||
# For more information about the recommended setup visit: | ||
# https://docs.fastlane.tools/best-practices/source-control/#source-control | ||
|
||
fastlane/report.xml | ||
fastlane/Preview.html | ||
fastlane/screenshots/**/*.png | ||
fastlane/test_output | ||
|
||
# Code Injection | ||
# | ||
# After new code Injection tools there's a generated folder /iOSInjectionProject | ||
# https://github.com/johnno1962/injectionforxcode | ||
|
||
iOSInjectionProject/ | ||
|
||
# Local History | ||
.history | ||
|
||
# Visual Studio Code | ||
*.code-workspace | ||
|
||
# Alfred | ||
prefs.plist | ||
|
||
# Desktop Services Store | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"default": true, | ||
"MD033": { | ||
"allowed_elements": [ "h1", "p", "a", "img" ] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
# SwiftFormat config compliant with Google Swift Style Guide | ||
# https://google.github.io/swift/ | ||
|
||
# Specify version used in a project | ||
|
||
--swiftversion 5.8 | ||
|
||
# Rules explicitly required by the guideline | ||
|
||
--rules \ | ||
blankLinesAroundMark, \ | ||
blankLinesAtEndOfScope, \ | ||
blankLinesAtStartOfScope, \ | ||
blankLinesBetweenScopes, \ | ||
braces, \ | ||
consecutiveBlankLines, \ | ||
consecutiveSpaces, \ | ||
duplicateImports, \ | ||
elseOnSameLine, \ | ||
emptyBraces, \ | ||
enumNamespaces, \ | ||
extensionAccessControl, \ | ||
hoistPatternLet, \ | ||
indent, \ | ||
leadingDelimiters, \ | ||
linebreakAtEndOfFile, \ | ||
markTypes, \ | ||
organizeDeclarations, \ | ||
redundantInit, \ | ||
redundantParens, \ | ||
redundantPattern, \ | ||
redundantRawValues, \ | ||
redundantType, \ | ||
redundantVoidReturnType, \ | ||
semicolons, \ | ||
sortedImports, \ | ||
sortedSwitchCases, \ | ||
spaceAroundBraces, \ | ||
spaceAroundBrackets, \ | ||
spaceAroundComments, \ | ||
spaceAroundGenerics, \ | ||
spaceAroundOperators, \ | ||
spaceAroundParens, \ | ||
spaceInsideBraces, \ | ||
spaceInsideBrackets, \ | ||
spaceInsideComments, \ | ||
spaceInsideGenerics, \ | ||
spaceInsideParens, \ | ||
todos, \ | ||
trailingClosures, \ | ||
trailingCommas, \ | ||
trailingSpace, \ | ||
typeSugar, \ | ||
void, \ | ||
wrap, \ | ||
wrapArguments, \ | ||
wrapAttributes, \ | ||
# | ||
# | ||
# Additional rules not mentioned in the guideline, but helping to keep the codebase clean | ||
# Quoting the guideline: | ||
# Common themes among the rules in this section are: | ||
# avoid redundancy, avoid ambiguity, and prefer implicitness over explicitness unless being | ||
# explicit improves readability and/or reduces ambiguity. | ||
# | ||
# | ||
andOperator, \ | ||
isEmpty, \ | ||
redundantBackticks, \ | ||
redundantBreak, \ | ||
redundantExtensionACL, \ | ||
redundantGet, \ | ||
redundantLetError, \ | ||
redundantNilInit, \ | ||
redundantObjc, \ | ||
redundantReturn, \ | ||
redundantSelf, \ | ||
strongifiedSelf | ||
|
||
# Options for basic rules | ||
|
||
--extensionacl on-declarations | ||
--funcattributes prev-line | ||
--indent 2 | ||
--maxwidth 100 | ||
--typeattributes prev-line | ||
--varattributes prev-line | ||
--wraparguments before-first | ||
--wrapparameters before-first | ||
--wrapcollections before-first | ||
--wrapreturntype if-multiline | ||
--wrapconditions after-first | ||
|
||
# Option for additional rules | ||
|
||
--self init-only | ||
|
||
# Excluded folders | ||
|
||
--exclude Pods,**/UNTESTED_TODO,vendor,fastlane | ||
|
||
# https://github.com/NoemiRozpara/Google-SwiftFormat-Config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
disabled_rules: # rule identifiers turned on by default to exclude from running | ||
trailing_comma |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Copyright (c) 2023 Arthur Pinheiro | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<h1 align="center">YouTube Search</h1> | ||
|
||
<p align="center"> | ||
<a href="https://github.com/xilopaint/alfred-youtube/releases/latest"> | ||
<img src="https://img.shields.io/github/release/xilopaint/alfred-youtube.svg"></a> | ||
<a href="https://github.com/xilopaint/alfred-youtube/releases"> | ||
<img src="https://img.shields.io/github/downloads/xilopaint/alfred-youtube/total.svg"></a> | ||
<a href="https://github.com/xilopaint/alfred-youtube/blob/main/LICENSE.md"> | ||
<img src="https://img.shields.io/github/license/xilopaint/alfred-youtube"></a> | ||
</p> | ||
|
||
<p align="center"> | ||
<img src="src/images/about/demo.png"> | ||
</p> | ||
|
||
Search YouTube from [Alfred][1]. | ||
|
||
## Setup | ||
|
||
The workflow requires an API key, which can be requested and set up by following | ||
the steps 1-3 that you can find [here][2]. | ||
|
||
## Usage | ||
|
||
Search YouTube via the `yt` keyword. | ||
|
||
## Contribute | ||
|
||
To report a bug or request a feature, please [create an issue][3] or | ||
[submit a pull request][4]. | ||
|
||
[1]:http://www.alfredapp.com/ | ||
[2]:https://developers.google.com/youtube/v3/getting-started#before-you-start | ||
[3]:https://github.com/xilopaint/alfred-youtube/issues | ||
[4]:https://github.com/xilopaint/alfred-youtube/pulls |
Oops, something went wrong.