From 11e346fb75197760e0d5ffe220ea85ec070ce4c6 Mon Sep 17 00:00:00 2001 From: miraai Date: Mon, 26 Sep 2016 01:51:55 +0200 Subject: [PATCH 1/6] Soundcloud API changes --- docs/JSON Explanations.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/JSON Explanations.md b/docs/JSON Explanations.md index 8d1cf6c2..4b7316ce 100644 --- a/docs/JSON Explanations.md +++ b/docs/JSON Explanations.md @@ -17,7 +17,7 @@ If you do not see `credentials.json` you will need to rename `credentials_exampl "LOLAPIKEY": "", "TrelloAPPKey": "", "OsuAPIKey": "", - "CarbonKey": "", + "CarbonKey": "" } ``` ####Required Parts @@ -37,9 +37,10 @@ Setting up your API keys + You can get this api Key [here](https://console.developers.google.com/apis) + **SoundCloudClientID** - Required to queue soundloud songs from sc links. + You will need to create a new app [here](http://soundcloud.com/you/apps). **Please note you must be logged into SoundCloud** - + You should come to a page that looks like this ![Imgur](http://i.imgur.com/RAZ2HDM.png) + Simply click Register a new application and enter a name. - + After naming your app you will be brought to this page: ![Imgur](http://i.imgur.com/GH1gjKK.png) Copy the Client ID and click "save app" then paste the Client Id it into your `credentials.json` + + You will need to fill out an application form to request access to Soundcloud API. + + All requests for an API key must go through the review process, where applications will be reviewed on a case by case basis, in line with Soundcloud API Terms of Use. If your application is successful, you will receive an API key. + + Copy the Client ID and click "save app" then paste the Client Id it into your `credentials.json` + **MashapeKey** - Required for Urban Disctionary, Hashtag search, and Hearthstone cards. + You need to create an account on their [api marketplace](https://market.mashape.com/), after that go to `market.mashape.com/YOURNAMEHERE/applications/default-application` and press **Get the keys** in the top right corner. + Copy the key and paste it into `credentials.json` From 1016a79845fa4e8f17037a9f3de0f049e9a09750 Mon Sep 17 00:00:00 2001 From: miraai Date: Mon, 26 Sep 2016 01:53:57 +0200 Subject: [PATCH 2/6] Soundcloud API changes --- docs/guides/Windows Guide.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/guides/Windows Guide.md b/docs/guides/Windows Guide.md index 79137c4b..4255fea8 100644 --- a/docs/guides/Windows Guide.md +++ b/docs/guides/Windows Guide.md @@ -90,6 +90,8 @@ ________________________________________________________________________________ - Follow these steps on how to setup Soundcloud API key: - Go to [Soundcloud][Soundcloud]. - Enter a name for the app and create it. + - You will need to fill out an application form to request access to Soundcloud API. + - All requests for an API key must go through the review process, where applications will be reviewed on a case by case basis, in line with Soundcloud API Terms of Use. If your application is successful, you will receive an API key. - You will see a page with the title of your app, and a field labeled `Client ID`. Copy the ID. - In `credentials.json`, fill in `"SoundcloudClientID"` with the copied ID. - Restart your computer. From 2d12c4af6251df54f6d12ba8fd3aacdf6388d8a3 Mon Sep 17 00:00:00 2001 From: miraai Date: Tue, 4 Oct 2016 18:23:03 +0200 Subject: [PATCH 3/6] Fixed typos in the Linux guide --- docs/guides/Linux Guide.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/Linux Guide.md b/docs/guides/Linux Guide.md index 1d9953ab..91a48419 100644 --- a/docs/guides/Linux Guide.md +++ b/docs/guides/Linux Guide.md @@ -49,7 +49,7 @@ tee -a /etc/apt/sources.list.d/mono-xamarin.list` ####Mono on CentOS 7, Fedora 19 (and later) and later **2.6)** -`yum install yum-util` +`yum install yum-utils` `rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF"` `yum-config-manager --add-repo http://download.mono-project.com/repo/centos/` @@ -86,9 +86,9 @@ Now unistall them ``` apt-get remove remainings-parts ``` -Now clzean apt cache +Now clean apt cache ``` -apt get clean +apt-get clean apt-get autoclean ``` From 9bd1a432ed55ffec9e060e22da46b4eff1667a4c Mon Sep 17 00:00:00 2001 From: Jordan Fearnley Date: Wed, 5 Oct 2016 10:22:13 +0100 Subject: [PATCH 4/6] Updating Weather API So I decided to take a peek at the weather API to see why it was down, turns out they've changed domain to this so I'm hoping weather will now work. --- NadekoBot/Modules/Searches/SearchesModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NadekoBot/Modules/Searches/SearchesModule.cs b/NadekoBot/Modules/Searches/SearchesModule.cs index 4caa708b..acf8421e 100644 --- a/NadekoBot/Modules/Searches/SearchesModule.cs +++ b/NadekoBot/Modules/Searches/SearchesModule.cs @@ -55,7 +55,7 @@ namespace NadekoBot.Modules.Searches { var city = e.GetArg("city").Replace(" ", ""); var country = e.GetArg("country").Replace(" ", ""); - var response = await SearchHelper.GetResponseStringAsync($"http://api.lawlypopzz.xyz/nadekobot/weather/?city={city}&country={country}").ConfigureAwait(false); + var response = await SearchHelper.GetResponseStringAsync($"http://api.ninetales.us/nadekobot/weather/?city={city}&country={country}").ConfigureAwait(false); var obj = JObject.Parse(response)["weather"]; From bc1a5236d0ad9ad52ec6db9196cac6309583e5bc Mon Sep 17 00:00:00 2001 From: Jordan Fearnley Date: Thu, 27 Oct 2016 17:42:40 +0100 Subject: [PATCH 5/6] Minor change Link to the FFMPEG installer updated --- docs/guides/Windows Guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/Windows Guide.md b/docs/guides/Windows Guide.md index 4255fea8..bd3a3eb4 100644 --- a/docs/guides/Windows Guide.md +++ b/docs/guides/Windows Guide.md @@ -108,7 +108,7 @@ ________________________________________________________________________________ - Restart your computer. [NET Framework]: https://www.microsoft.com/en-us/download/details.aspx?id=48130 -[FFMPEG]: https://github.com/Soundofdarkness/FFMPEG-Installer +[FFMPEG]: https://github.com/Soundofdarkness/FFMPEG-Inst/releases [7zip]: http://www.7-zip.org/download.html [Updater]: https://github.com/Kwoth/NadekoUpdater/releases [Releases]: https://github.com/Kwoth/NadekoBot/releases From 73c91fc06a0b2c42d3e143262d47aa1f6b91e255 Mon Sep 17 00:00:00 2001 From: samvaio Date: Fri, 28 Oct 2016 16:05:19 +0530 Subject: [PATCH 6/6] Added the linux snapshot --- docs/guides/Linux Guide.md | Bin 10692 -> 10712 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/guides/Linux Guide.md b/docs/guides/Linux Guide.md index 91a48419fa8dd9e45b02dc7ef06ab0ab327c9895..d1d5e24c8867d8c4a9ba15eb086cc083d530c4da 100644 GIT binary patch delta 43 zcmX>Sd?R?nA9i8=;=IIy;*9)~Vto@m6Fnn6L&M1vc&wQi5+?5#mfRf3QLG36Y&Q