From f8ae66beb031d82c92f7f2eda50f6c8fce34d84e Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Mon, 29 Feb 2016 11:36:48 +0100 Subject: [PATCH 1/9] Add awesome bot for links Read more about the awesome bot here https://github.com/dkhamsing/awesome_bot --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d28658e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: ruby + +rvm: + - 2.2 + +before_script: + - gem install awesome_bot + +script: + - awesome_bot README.md From 9377bcf1c724d4f5e7a29ad0dd28157ae9149109 Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Mon, 29 Feb 2016 11:48:19 +0100 Subject: [PATCH 2/9] Use https on GitHub links --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 79fd3bc..68a766f 100644 --- a/README.md +++ b/README.md @@ -608,7 +608,7 @@ cd "$(osascript -e 'tell app "Finder" to POSIX path of (insertion location as al #### Open URL ```bash -open http://www.github.com +open https://www.github.com ``` #### Open File @@ -619,7 +619,7 @@ open README.md #### Open Applications You can open applications using `-a`. ```bash -open -a "Google Chrome" http://www.github.com +open -a "Google Chrome" https://www.github.com ``` #### Open Folder From b6d58033cf46c9e866c1fd6fb1ba7dffe2cb25b5 Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Mon, 29 Feb 2016 11:48:37 +0100 Subject: [PATCH 3/9] Allowed duplicated links --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d28658e..3b0d3df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,4 @@ before_script: - gem install awesome_bot script: - - awesome_bot README.md + - awesome_bot README.md --allow-dupe From 6438c26cc8ef3fef3de9b672cba388ce1640363b Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Mon, 29 Feb 2016 11:49:33 +0100 Subject: [PATCH 4/9] Update license links --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 68a766f..33c160d 100644 --- a/README.md +++ b/README.md @@ -1495,4 +1495,4 @@ chsh -s $(brew --prefix)/bin/zsh ## License -Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. +Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. From 31b91074a37ef3cb1bc63b60404ab41c2a3a6b7f Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Mon, 29 Feb 2016 11:51:18 +0100 Subject: [PATCH 5/9] Remove www on GitHub links --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 33c160d..63b2042 100644 --- a/README.md +++ b/README.md @@ -608,7 +608,7 @@ cd "$(osascript -e 'tell app "Finder" to POSIX path of (insertion location as al #### Open URL ```bash -open https://www.github.com +open https://github.com ``` #### Open File @@ -619,7 +619,7 @@ open README.md #### Open Applications You can open applications using `-a`. ```bash -open -a "Google Chrome" https://www.github.com +open -a "Google Chrome" https://github.com ``` #### Open Folder From 41ff273745ab41943d0bb78be46b2d9fd28af36d Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Mon, 29 Feb 2016 11:53:11 +0100 Subject: [PATCH 6/9] Whitelist example.com --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3b0d3df..7b26f29 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,4 @@ before_script: - gem install awesome_bot script: - - awesome_bot README.md --allow-dupe + - awesome_bot README.md --allow-dupe --white-list example.com From 30f66b7917cded5bde9fb02220f5040f7fb8e9a7 Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Mon, 29 Feb 2016 11:54:16 +0100 Subject: [PATCH 7/9] Remove broken link --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 63b2042..f920c4f 100644 --- a/README.md +++ b/README.md @@ -192,7 +192,6 @@ The AppleScript code below will quit Mail, vacuum the SQLite index, then re-open ```applescript (* Speed up Mail.app by vacuuming the Envelope Index -Code from: http://www.hawkwings.net/2007/03/03/scripts-to-automate-the-mailapp-envelope-speed-trick/ Originally by "pmbuko" with modifications by Romulo Updated by Brett Terpstra 2012 Updated by Mathias Törnblom 2015 to support V3 in El Capitan and still keep backwards compability From 92fbd9d3d568a0142e68e53f71ba9805196ed6b6 Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Mon, 29 Feb 2016 12:33:12 +0100 Subject: [PATCH 8/9] Add back link --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f920c4f..63b2042 100644 --- a/README.md +++ b/README.md @@ -192,6 +192,7 @@ The AppleScript code below will quit Mail, vacuum the SQLite index, then re-open ```applescript (* Speed up Mail.app by vacuuming the Envelope Index +Code from: http://www.hawkwings.net/2007/03/03/scripts-to-automate-the-mailapp-envelope-speed-trick/ Originally by "pmbuko" with modifications by Romulo Updated by Brett Terpstra 2012 Updated by Mathias Törnblom 2015 to support V3 in El Capitan and still keep backwards compability From ea87de36720bf1ea66d7aa6a50b23590bb18d23c Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Mon, 29 Feb 2016 12:33:32 +0100 Subject: [PATCH 9/9] Whitelist hawkwings.net --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7b26f29..cd79205 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,4 @@ before_script: - gem install awesome_bot script: - - awesome_bot README.md --allow-dupe --white-list example.com + - awesome_bot README.md --allow-dupe --white-list example.com,hawkwings.net