diff --git a/.github/workflows/pr_lint.yml b/.github/workflows/pr_lint.yml index 89ab18f..7f02942 100644 --- a/.github/workflows/pr_lint.yml +++ b/.github/workflows/pr_lint.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - + - name: GLua Linter uses: TASSIA710/action-glua-lint@v1.1.4 with: @@ -21,3 +21,4 @@ jobs: lint_emptyBlocks: false lint_unusedParameters: false lint_unusedLoopVars: false + lint_shadowing: false diff --git a/.github/workflows/workshop.yml b/.github/workflows/workshop.yml index 880f3ce..a0b362f 100644 --- a/.github/workflows/workshop.yml +++ b/.github/workflows/workshop.yml @@ -21,15 +21,17 @@ jobs: lint_emptyBlocks: false lint_unusedParameters: false lint_unusedLoopVars: false - - # Creates a GMA and publishes it to the Steam Workshop + lint_shadowing: false + lint_inconsistentVariableStyle: false + + # Creates a GMA and publishes it to the Steam Workshop workshop-publish: needs: linter runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - + - name: Publish to Steam Workshop uses: Earu/GSW-action@V2.1 with: diff --git a/README.md b/README.md index a70d7e1..74bc5bb 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,31 @@ Any contributions are welcome, please follow the naming conventions already pres ![chatbox](https://i.imgur.com/vKlszY6.png) ![chathud](https://i.imgur.com/x354846.gif) + + +##### List of URLs & APIs used + +Internals: +- https://api.github.com/repos/Earu/EasyChat/commits/master +- https://raw.githubusercontent.com/Earu/EasyChat/master/external_data/transliteration_lookup.json +- https://raw.githubusercontent.com/Earu/EasyChat/master/external_data/steam_emoticons.txt +- https://raw.githubusercontent.com/Earu/EasyChat/master/external_data/twemojis.json +- https://raw.githubusercontent.com/Earu/EasyChat/master/external_data/twemojis.txt.lzma +- http://3kv.in:9006/stats/submit *(anonymous server stats)* +- https://paypal.me/easychat *(donation)* + +Unlikely to go down: +- http://steamcommunity-a.akamaihd.net/economy/emoticonhover/ +- https://steamcommunity.com/profiles/%s +- https://api.imgur.com/3/image.json +- https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap +- https://twemoji.maxcdn.com/v/latest/72x72/%s.png +- https://translate.yandex.com/developers/keys +- https://translate.yandex.net/api/v1.5/tr.json/translate?key=%s&text=%s&lang=%s + +Uncertain: +- https://api.betterttv.net/2/emotes +- https://cdn.betterttv.net/emote/%s/3x +- http://sprays.xerasin.com/gifinfo.php?url=%s +- http://sprays.xerasin.com/getimage2.php?url=%s&type=vtf +- https://api.frankerfacez.com/v1/set/global \ No newline at end of file diff --git a/glualint.json b/glualint.json index 4648344..ca0b4d8 100644 --- a/glualint.json +++ b/glualint.json @@ -7,7 +7,7 @@ "lint_whitespaceStyle": true, "lint_beginnerMistakes": true, "lint_emptyBlocks": false, - "lint_shadowing": true, + "lint_shadowing": false, "lint_gotos": true, "lint_doubleNegations": true, "lint_redundantIfStatements": true,