This repository has been archived by the owner on Jul 30, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
56 changed files
with
563 additions
and
434 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,28 @@ | ||
--- | ||
name: Bug report | ||
about: Report incorrect or unexpected behaviour of Q-Bot | ||
title: '' | ||
labels: bug | ||
assignees: iwa | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. ... | ||
2. ... | ||
3. ... | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Further details:** | ||
- Discord Platform: [e.g. Desktop, Browser] | ||
- OS: [e.g. Windows, iOS] | ||
- Node.js version: [if you don't know what it is, don't fill it out] |
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,17 @@ | ||
--- | ||
name: Enhancement request | ||
about: Suggest an enhancement / upgrade to apply | ||
title: '' | ||
labels: enhancement | ||
assignees: iwa | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions you've considered. |
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,14 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea to add to Q-Bot | ||
title: '' | ||
labels: feature | ||
assignees: iwa | ||
|
||
--- | ||
|
||
**Describe the feature you'd like to add** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative features you've considered. |
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,18 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug Program", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"program": "${workspaceFolder}/build/index.js", | ||
"preLaunchTask": "tsc: build", | ||
"outFiles": [ | ||
"${workspaceFolder}/build/**/*.js" | ||
] | ||
} | ||
] | ||
} |
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 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "shell", | ||
"command": "tsc --sourcemap", | ||
"group": "build", | ||
"label": "tsc: build", | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "silent", | ||
"focus": false, | ||
"panel": "dedicated", | ||
"showReuseMessage": true, | ||
"clear": true | ||
} | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1,50 +1,53 @@ | ||
<div align="center"> | ||
<p align="center"> | ||
<img src="https://cdn.iwa.sh/img/q-bot_logo.png" alt="logo"/> | ||
<img src="https://cdn.iwa.sh/img/tiles/q-bot.png" alt="logo"/> | ||
<h1>Q-Bot</h1> | ||
|
||
<p align="center"> | ||
Custom Discord bot for <a href="https://discord.gg/BU6cPff">Qumu's Discord server</a>. | ||
</p> | ||
|
||
<img alt="Q-Bot Status" src="https://img.shields.io/website?down_color=red&down_message=offline&label=Q-Bot&up_color=brightgreen&up_message=online&url=https%3A%2F%2Fapi.iwa.sh%2Fapp%2Fqbot"> | ||
<a href="https://nodejs.org/en/"> | ||
<img alt="Node minimal version" src="https://img.shields.io/badge/node-%3E%3Dv12-blue"/> | ||
</a> | ||
|
||
<br/> | ||
|
||
<img alt="Better Code Score" src="https://bettercodehub.com/edge/badge/iwa/Q-Bot?branch=master"/> | ||
<a href="https://www.codefactor.io/repository/github/iwa/q-bot/overview/master"> | ||
<img alt="codefactor Score" src="https://www.codefactor.io/repository/github/iwa/q-bot/badge/master"/> | ||
</a> | ||
</p> | ||
</div> | ||
|
||
## About | ||
|
||
**Q-Bot is handled by @iwa** | ||
## 📄 About | ||
|
||
- Language used : `TypeScript, with NodeJS` | ||
- Library used : `discord.js` | ||
|
||
[![BCH compliance](https://bettercodehub.com/edge/badge/iwa/Q-Bot?branch=master)](https://bettercodehub.com/) | ||
[![CodeFactor](https://www.codefactor.io/repository/github/iwa/q-bot/badge/master)](https://www.codefactor.io/repository/github/iwa/q-bot/overview/master) | ||
|
||
## How to contribute | ||
|
||
#### 1. Make a fork and clone it | ||
#### 2. Make your modifications | ||
#### 3. Create a Pull Request, with `dev` as target branch | ||
## 🤝 Contributing | ||
|
||
----- | ||
- Create a fork and clone it | ||
- Make your modifications | ||
- Create a Pull Request, with `dev` as target branch | ||
|
||
### Advice : How to keep your fork up to date | ||
|
||
#### 1. Add remote from original repository in your forked repository: | ||
Pull requests, feature requests and issues are welcome.<br/> | ||
**Please make sure to update / rebase your PR before submitting it.** c: | ||
|
||
cd into/cloned/fork-repo | ||
git remote add upstream https://github.com/iwa/Q-Bot.git | ||
git fetch upstream | ||
|
||
#### 2. Updating your fork from original repo to keep up with their changes: | ||
## ⭐️ Show your support | ||
|
||
git pull upstream master | ||
Star this repository if you like the Q-Bot Project! | ||
|
||
Now you should have at least 2 remotes : `origin` & `upstream` | ||
<a href="https://www.patreon.com/iwaQwQ"> | ||
<img src="https://c5.patreon.com/external/logo/[email protected]" width="140"> | ||
</a> | ||
|
||
Keep upstream/master always unedited since it'll be your fresh copy from the original repo. | ||
## 👤 Author | ||
|
||
**A good way to keep working on your fork for PRs is :** | ||
👤 **[@iwa](https://github.com/iwa)** | ||
|
||
- Always check for an update of the upstream before begin your work | ||
- Create another branch from upstream/master so you can keep upstream/master clean | ||
- Make your own edits | ||
- Create a PR | ||
## 📝 License | ||
> Copyright © [Pierre 'iwa'](https://github.com/iwa). |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.