From d615c22a8e23fca7f1b6df0b15eb444f4084ad82 Mon Sep 17 00:00:00 2001 From: MelanX Date: Sat, 6 Mar 2021 19:27:21 +0100 Subject: [PATCH 1/6] basically implement curseforge service --- .idea/codeStyles/Project.xml | 22 + .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/docs.iml | 9 + .idea/inspectionProfiles/Project_Default.xml | 3335 ++++++++++++++++++ .idea/misc.xml | 6 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 48 + docs/samples/curseforge.md | 5 + mkdocs.yml | 3 +- 10 files changed, 3446 insertions(+), 1 deletion(-) create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/docs.iml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 docs/samples/curseforge.md diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 00000000..645f4a06 --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,22 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 00000000..a55e7a17 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/docs.iml b/.idea/docs.iml new file mode 100644 index 00000000..d6ebd480 --- /dev/null +++ b/.idea/docs.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..54d43ce4 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,3335 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..3a37236a --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..6049cfe0 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..35eb1ddf --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 00000000..3d777cdf --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1615032594957 + + + + \ No newline at end of file diff --git a/docs/samples/curseforge.md b/docs/samples/curseforge.md new file mode 100644 index 00000000..11019d20 --- /dev/null +++ b/docs/samples/curseforge.md @@ -0,0 +1,5 @@ + + +# Documentation for Curseforge-service missing. + +You can help us [create it](../contribute/sample_documentation.md). \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index a2051511..868dd835 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -46,8 +46,9 @@ nav: - Document a sample: contribute/sample_documentation.md - Contributors: contribute/contributors.md - Services: - - Available services: services.md + - Available services: services.md - AHK sample: samples/ahk.md + - Curseforge sample: samples/curseforge.md - Discord sample: samples/discord.md - IntelliJ sample: samples/intellij.md - Midi: From e51635334b4e7a9771ba2f24894724e5509c46b1 Mon Sep 17 00:00:00 2001 From: MelanX Date: Sun, 7 Mar 2021 20:05:35 +0100 Subject: [PATCH 2/6] add docs for sample --- docs/samples/curseforge.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/samples/curseforge.md b/docs/samples/curseforge.md index 11019d20..e9266e6a 100644 --- a/docs/samples/curseforge.md +++ b/docs/samples/curseforge.md @@ -1,5 +1,16 @@ - +## Using the CurseForge sample bundle -# Documentation for Curseforge-service missing. +The CurseForge example bundle in `samples/curseforge` demonstrates the ability to search for different addons with the id or search with specific values for matching addons. Here is a guide how to get it working. -You can help us [create it](../contribute/sample_documentation.md). \ No newline at end of file +### Prerequisites + +- Working NodeCG & nodecg-io installation + +### Configure the CurseForge bundle + +1. Start NodeCG with with nodecg-io installed. The CurseForge bundle is currently part of it, so it should also be loaded. +2. Login using your password. If this is your first run, then enter the password with which you want to encrypt your configurations and credentials. +3. Create a new CurseForge service instance using the left upper menu. +4. Set the CurseForge service instance to the service dependency of the CurseForge bundle. + Select the CurseForge bundle the the CurseForge service in the left bottom menu and then select the service instance that should be used by the CurseForge bundle (in this case the name of the previously created CurseForge instance). +5. Check the NodeCG logs. You should see two lists of addons. \ No newline at end of file From 41bbb814c6c60b468ed053b3f6bfd6442efbda54 Mon Sep 17 00:00:00 2001 From: noeppi_noeppi <63002502+noeppi-noeppi@users.noreply.github.com> Date: Sun, 7 Mar 2021 20:36:38 +0100 Subject: [PATCH 3/6] Update docs for Melan (#1) * Update docs for Melan * Update docs for Melan II --- docs/dependencies.md | 28 +++++++++++++---- docs/index.md | 2 +- docs/services.md | 75 +++++++++++++++++++++++++++++++++++++------- 3 files changed, 87 insertions(+), 18 deletions(-) diff --git a/docs/dependencies.md b/docs/dependencies.md index 84ad0cce..43f27ad4 100644 --- a/docs/dependencies.md +++ b/docs/dependencies.md @@ -16,10 +16,12 @@ FontStyle Underline [nodecg-io-core] as nodecg_io_core <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core]] [ajv] as ajv <> [[https://www.npmjs.com/package/ajv]] [crypto-js] as crypto_js <> [[https://www.npmjs.com/package/crypto-js]] -[tslib] as tslib <> [[https://www.npmjs.com/package/tslib]] -[typescript] as typescript <> [[https://www.npmjs.com/package/typescript]] [nodecg-io-ahk] as nodecg_io_ahk <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-ahk]] [node-fetch] as node_fetch <> [[https://www.npmjs.com/package/node-fetch]] +[nodecg-io-android] as nodecg_io_android <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-android]] +[@rauschma/stringio] as rauschma_stringio <> [[https://www.npmjs.com/package/@rauschma/stringio]] +[get-stream] as get_stream <> [[https://www.npmjs.com/package/get-stream]] +[nodecg-io-curseforge] as nodecg_io_curseforge <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-curseforge]] [nodecg-io-discord] as nodecg_io_discord <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-discord]] [discord.js] as discord_js <> [[https://www.npmjs.com/package/discord.js]] [nodecg-io-intellij] as nodecg_io_intellij <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-intellij]] @@ -29,6 +31,7 @@ FontStyle Underline [nodecg-io-midi-input] as nodecg_io_midi_input <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-midi-input]] [easymidi] as easymidi <> [[https://www.npmjs.com/package/easymidi]] [nodecg-io-midi-output] as nodecg_io_midi_output <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-midi-output]] +[nodecg-io-nanoleaf] as nodecg_io_nanoleaf <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-nanoleaf]] [nodecg-io-obs] as nodecg_io_obs <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-obs]] [obs-websocket-js] as obs_websocket_js <> [[https://www.npmjs.com/package/obs-websocket-js]] [nodecg-io-philipshue] as nodecg_io_philipshue <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-philipshue]] @@ -60,11 +63,14 @@ FontStyle Underline [nodecg-io-telegram] as nodecg_io_telegram <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-telegram]] [@types/node-telegram-bot-api] as types_node_telegram_bot_api <> [[https://www.npmjs.com/package/@types/node-telegram-bot-api]] [node-telegram-bot-api] as node_telegram_bot_api <> [[https://www.npmjs.com/package/node-telegram-bot-api]] +[nodecg-io-template] as nodecg_io_template <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-template]] [nodecg-io-tiane] as nodecg_io_tiane <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-tiane]] [ws] as ws <> [[https://www.npmjs.com/package/ws]] -[nodecg-io-twitch-chat] as nodecg_io_twitch_chat <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-twitch-chat]] +[nodecg-io-twitch-addons] as nodecg_io_twitch_addons <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-twitch-addons]] +[nodecg-io-twitch-api] as nodecg_io_twitch_api <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-twitch-api]] [twitch] as twitch <> [[https://www.npmjs.com/package/twitch]] [twitch-auth] as twitch_auth <> [[https://www.npmjs.com/package/twitch-auth]] +[nodecg-io-twitch-chat] as nodecg_io_twitch_chat <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-twitch-chat]] [twitch-chat-client] as twitch_chat_client <> [[https://www.npmjs.com/package/twitch-chat-client]] [nodecg-io-twitch-pubsub] as nodecg_io_twitch_pubsub <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-twitch-pubsub]] [twitch-pubsub-client] as twitch_pubsub_client <> [[https://www.npmjs.com/package/twitch-pubsub-client]] @@ -75,16 +81,18 @@ FontStyle Underline [@types/ws] as types_ws <> [[https://www.npmjs.com/package/@types/ws]] [nodecg-io-websocket-server] as nodecg_io_websocket_server <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-websocket-server]] [nodecg-io-xdotool] as nodecg_io_xdotool <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-xdotool]] -[@rauschma/stringio] as rauschma_stringio <> [[https://www.npmjs.com/package/@rauschma/stringio]] [nodecg-io-youtube] as nodecg_io_youtube <> [[https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-youtube]] [@types/gapi] as types_gapi <> [[https://www.npmjs.com/package/@types/gapi]] [googleapis] as googleapis <> [[https://www.npmjs.com/package/googleapis]] nodecg_io_core ...> ajv nodecg_io_core ...> crypto_js -nodecg_io_core ...> tslib -nodecg_io_core ...> typescript nodecg_io_ahk --> nodecg_io_core nodecg_io_ahk ...> node_fetch +nodecg_io_android --> nodecg_io_core +nodecg_io_android ...> rauschma_stringio +nodecg_io_android ...> get_stream +nodecg_io_curseforge --> nodecg_io_core +nodecg_io_curseforge ...> node_fetch nodecg_io_discord ...> discord_js nodecg_io_discord --> nodecg_io_core nodecg_io_intellij --> nodecg_io_core @@ -96,6 +104,8 @@ nodecg_io_midi_input --> nodecg_io_core nodecg_io_midi_input ...> easymidi nodecg_io_midi_output --> nodecg_io_core nodecg_io_midi_output ...> easymidi +nodecg_io_nanoleaf --> nodecg_io_core +nodecg_io_nanoleaf ...> node_fetch nodecg_io_obs --> nodecg_io_core nodecg_io_obs ...> obs_websocket_js nodecg_io_philipshue ...> is_ip @@ -128,8 +138,14 @@ nodecg_io_streamelements ...> socket_io_client nodecg_io_telegram ...> types_node_telegram_bot_api nodecg_io_telegram ...> node_telegram_bot_api nodecg_io_telegram --> nodecg_io_core +nodecg_io_template --> nodecg_io_core nodecg_io_tiane --> nodecg_io_core nodecg_io_tiane ...> ws +nodecg_io_twitch_addons --> nodecg_io_core +nodecg_io_twitch_addons ...> node_fetch +nodecg_io_twitch_api --> nodecg_io_core +nodecg_io_twitch_api ...> twitch +nodecg_io_twitch_api ...> twitch_auth nodecg_io_twitch_chat --> nodecg_io_core nodecg_io_twitch_chat ...> twitch nodecg_io_twitch_chat ...> twitch_auth diff --git a/docs/index.md b/docs/index.md index c0b2ad4f..4b590eb7 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,7 +6,7 @@ -[![Sevices](https://img.shields.io/static/v1?label=Services%20implemented&message=26&color=blue&style=flat-square)](services.md) +[![Sevices](https://img.shields.io/static/v1?label=Services%20implemented&message=32&color=blue&style=flat-square)](services.md) [![License](https://img.shields.io/github/license/codeoverflow-org/nodecg-io?label=License&style=flat-square)](https://github.com/codeoverflow-org/nodecg-io/blob/master/LICENSE) [![Discord](https://img.shields.io/badge/discord-join-7289DA.svg?logo=discord&style=flat-square)](https://discord.gg/sX2Gjbs/) diff --git a/docs/services.md b/docs/services.md index cac4f538..8ca74053 100644 --- a/docs/services.md +++ b/docs/services.md @@ -7,8 +7,6 @@ Depends on [ajv](https://www.npmjs.com/package/ajv) @ ^6.12.6
Depends on [crypto-js](https://www.npmjs.com/package/crypto-js) @ ^4.0.0
-Depends on [tslib](https://www.npmjs.com/package/tslib) @ ^2.0.3
-Depends on [typescript](https://www.npmjs.com/package/typescript) @ ^4.1.3
## [nodecg-io-ahk](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-ahk) @@ -19,6 +17,25 @@ See the [sample implementation](samples/ahk.md) Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
Depends on [node-fetch](https://www.npmjs.com/package/node-fetch) @ ^2.6.1
+## [nodecg-io-android](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-android) + +**Allows to connect to an android device via adb.** + +There's no sample implementation for this service yet. + +Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
+Depends on [@rauschma/stringio](https://www.npmjs.com/package/@rauschma/stringio) @ ^1.4.0
+Depends on [get-stream](https://www.npmjs.com/package/get-stream) @ 6.0.0
+ +## [nodecg-io-curseforge](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-curseforge) + +**A service to communicate with the CurseForge API.** + +See the [sample implementation](samples/curseforge.md) + +Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
+Depends on [node-fetch](https://www.npmjs.com/package/node-fetch) @ ^2.6.1
+ ## [nodecg-io-discord](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-discord) **Allows to connect to discord via a discord-bot.** @@ -43,7 +60,7 @@ Depends on [node-fetch](https://www.npmjs.com/package/node-fetch) @ ^2.6.1
There's no sample implementation for this service yet. -Depends on [@types/irc](https://www.npmjs.com/package/@types/irc) @ ^0.3.33
+Depends on [@types/irc](https://www.npmjs.com/package/@types/irc) @ ^0.5.0
Depends on [irc](https://www.npmjs.com/package/irc) @ ^0.5.2
Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
@@ -65,6 +82,15 @@ See the [sample implementation](samples/midi-output.md) Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
Depends on [easymidi](https://www.npmjs.com/package/easymidi) @ ^2.0.1
+## [nodecg-io-nanoleaf](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-nanoleaf) + +**Allows to connect to a nanoleaf controller and trigger custom lighting effects.** + +There's no sample implementation for this service yet. + +Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
+Depends on [node-fetch](https://www.npmjs.com/package/node-fetch) @ ^2.6.1
+ ## [nodecg-io-obs](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-obs) **Allows to control your obs instance to e.g. switch scenes.** @@ -146,7 +172,7 @@ Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/m See the [sample implementation](samples/spotify.md) -Depends on [@types/spotify-web-api-node](https://www.npmjs.com/package/@types/spotify-web-api-node) @ ^4.0.2
+Depends on [@types/spotify-web-api-node](https://www.npmjs.com/package/@types/spotify-web-api-node) @ ^5.0.0
Depends on [express](https://www.npmjs.com/package/express) @ ^4.17.1
Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
Depends on [open](https://www.npmjs.com/package/open) @ ^7.3.0
@@ -169,7 +195,7 @@ There's no sample implementation for this service yet. Depends on [@types/socket.io-client](https://www.npmjs.com/package/@types/socket.io-client) @ ^1.4.34
Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
-Depends on [socket.io-client](https://www.npmjs.com/package/socket.io-client) @ ^3.0.4
+Depends on [socket.io-client](https://www.npmjs.com/package/socket.io-client) @ ^2.3.1
## [nodecg-io-telegram](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-telegram) @@ -181,6 +207,14 @@ Depends on [@types/node-telegram-bot-api](https://www.npmjs.com/package/@types/n Depends on [node-telegram-bot-api](https://www.npmjs.com/package/node-telegram-bot-api) @ ^0.51.0
Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
+## [nodecg-io-template](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-template) + +**Template package.** + +There's no sample implementation for this service yet. + +Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
+ ## [nodecg-io-tiane](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-tiane) **Connect to TIANE and make her for example a discord bot. https://github.com/FerdiKr/TIANE** @@ -190,16 +224,35 @@ See the [sample implementation](samples/tiane.md) Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
Depends on [ws](https://www.npmjs.com/package/ws) @ ^7.4.1
+## [nodecg-io-twitch-addons](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-twitch-addons) + +**Support for the API's of BetterTTV and FrankerFaceZ** + +There's no sample implementation for this service yet. + +Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
+Depends on [node-fetch](https://www.npmjs.com/package/node-fetch) @ ^2.6.1
+ +## [nodecg-io-twitch-api](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-twitch-api) + +**Allows talking to twitch APIs like helix.** + +There's no sample implementation for this service yet. + +Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
+Depends on [twitch](https://www.npmjs.com/package/twitch) @ ^4.4.7
+Depends on [twitch-auth](https://www.npmjs.com/package/twitch-auth) @ ^4.4.7
+ ## [nodecg-io-twitch-chat](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-twitch-chat) -**Allows to connect to twitch with your account, send and receive messages and much more. It can be used to create Twitch-Bots.** +**Allows to connect to the twitch chat with your account, send and receive messages and much more. It can be used to create Twitch-Bots.** See the [sample implementation](samples/twitch-chat.md) Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
-Depends on [twitch](https://www.npmjs.com/package/twitch) @ ^4.3.6
-Depends on [twitch-auth](https://www.npmjs.com/package/twitch-auth) @ ^4.3.6
-Depends on [twitch-chat-client](https://www.npmjs.com/package/twitch-chat-client) @ ^4.3.6
+Depends on [twitch](https://www.npmjs.com/package/twitch) @ ^4.4.7
+Depends on [twitch-auth](https://www.npmjs.com/package/twitch-auth) @ ^4.4.7
+Depends on [twitch-chat-client](https://www.npmjs.com/package/twitch-chat-client) @ ^4.4.7
## [nodecg-io-twitch-pubsub](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-twitch-pubsub) @@ -208,8 +261,8 @@ Depends on [twitch-chat-client](https://www.npmjs.com/package/twitch-chat-client There's no sample implementation for this service yet. Depends on [nodecg-io-core](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-core) @ ^0.1.0
-Depends on [twitch](https://www.npmjs.com/package/twitch) @ ^4.3.6
-Depends on [twitch-pubsub-client](https://www.npmjs.com/package/twitch-pubsub-client) @ ^4.3.6
+Depends on [twitch](https://www.npmjs.com/package/twitch) @ ^4.4.7
+Depends on [twitch-pubsub-client](https://www.npmjs.com/package/twitch-pubsub-client) @ ^4.4.7
## [nodecg-io-twitter](https://github.com/codeoverflow-org/nodecg-io/tree/master/nodecg-io-twitter) From 894157142071a81f85b914f0ef9e40dcbf686745 Mon Sep 17 00:00:00 2001 From: MelanX Date: Mon, 8 Mar 2021 14:57:09 +0100 Subject: [PATCH 4/6] fixed issues --- .gitignore | 4 +- .idea/codeStyles/Project.xml | 22 - .idea/codeStyles/codeStyleConfig.xml | 5 - .idea/docs.iml | 9 - .idea/inspectionProfiles/Project_Default.xml | 3335 ------------------ .idea/misc.xml | 6 - .idea/modules.xml | 8 - .idea/vcs.xml | 6 - .idea/workspace.xml | 48 - 9 files changed, 3 insertions(+), 3440 deletions(-) delete mode 100644 .idea/codeStyles/Project.xml delete mode 100644 .idea/codeStyles/codeStyleConfig.xml delete mode 100644 .idea/docs.iml delete mode 100644 .idea/inspectionProfiles/Project_Default.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml delete mode 100644 .idea/workspace.xml diff --git a/.gitignore b/.gitignore index d1638636..f3a4a092 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -build/ \ No newline at end of file +build/ +.idea +.vscode \ No newline at end of file diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml deleted file mode 100644 index 645f4a06..00000000 --- a/.idea/codeStyles/Project.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index a55e7a17..00000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/docs.iml b/.idea/docs.iml deleted file mode 100644 index d6ebd480..00000000 --- a/.idea/docs.iml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 54d43ce4..00000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,3335 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 3a37236a..00000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 6049cfe0..00000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1ddf..00000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml deleted file mode 100644 index 3d777cdf..00000000 --- a/.idea/workspace.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1615032594957 - - - - \ No newline at end of file From 9e712c93ad0332ebff94c2df624270360a7faff7 Mon Sep 17 00:00:00 2001 From: MelanX Date: Mon, 8 Mar 2021 14:58:50 +0100 Subject: [PATCH 5/6] Update mkdocs.yml Co-authored-by: Daniel Huber --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 2c575603..24bd94dc 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -46,7 +46,7 @@ nav: - Document a sample: contribute/sample_documentation.md - Contributors: contribute/contributors.md - Services: - - Available services: services.md + - Available services: services.md - AHK sample: samples/ahk.md - Curseforge sample: samples/curseforge.md - Android: samples/android.md From 9f84d68f02005ab76a0572cd8a866dcef0ec0560 Mon Sep 17 00:00:00 2001 From: Daniel <30466471+daniel0611@users.noreply.github.com> Date: Wed, 10 Mar 2021 14:21:40 +0100 Subject: [PATCH 6/6] Add alt text to nodecg-io logo --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 2a4de38a..d6bcfb57 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,6 +1,6 @@ # nodecg-io -![](assets/header_white.png) +![nodecg-io logo](assets/header_white.png) [![Feature Requests](https://img.shields.io/github/issues/codeoverflow-org/nodecg-io/enhancement?label=Feature%20Requests&style=flat-square)](https://github.com/codeoverflow-org/nodecg-io/labels/enhancement) [![Bugs](https://img.shields.io/github/issues/codeoverflow-org/nodecg-io/bug?label=Bugs&style=flat-square)](https://github.com/codeoverflow-org/nodecg-io/labels/bug)