Skip to content

Commit

Permalink
gg initial release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yofukashino committed Mar 10, 2023
1 parent 50b9c8b commit bcada54
Show file tree
Hide file tree
Showing 18 changed files with 929 additions and 319 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ rules:
no-process-exit: off
no-undef: off
no-unused-vars: off
"@typescript-eslint/naming-convention": off
"@typescript-eslint/no-unused-vars": error

overrides:
Expand All @@ -44,6 +45,7 @@ overrides:
no-return-assign: off
no-void: off
consistent-return: off
"@typescript-eslint/naming-convention": off

- files: "**/src/**/*.ts"
extends: eslint-config-dmitmel/rules/typescript/with-type-checking
Expand Down
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# Replugged plugin template
### FluentStatusIcons

See the [plugin development guide](https://guide.replugged.dev/docs/plugins/getting-started) for more information on using this template.
Fluent presence icons, designed by Microsoft.

For other fluent icons, install [this theme by Stickfab](https://github.com/stickfab/pc-fluenticons).

Direct Download Link:
[Tharki.FluentStatusIcons.asar](https://github.com/Tharki-God/FluentStatusIcons/releases/latest/download/Tharki.FluentStatusIcons.asar)

Install Link:
[![Install in Replugged](https://img.shields.io/badge/-Install%20in%20Replugged-blue?style=for-the-badge&logo=none)](https://replugged.dev/install?identifier=Tharki-God/FluentStatusIcons&source=github)

![image](https://tharki-god.github.io/files-random-host/bdpluginsassets/fluenticons.png)

> For Contributing: [Make a pr thats all.]
19 changes: 10 additions & 9 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{
"id": "dev.replugged.PluginTemplate",
"name": "Plugin Template",
"description": "A plugin template",
"id": "Tharki.FluentStatusIcons",
"name": "FluentStatusIcons",
"description": "Fluent presence icons, designed by Microsoft.",
"author": {
"name": "replugged",
"discordID": "1000992611840049192",
"github": "replugged-org"
"name": "Ahlawat",
"discordID": "1025214794766221384",
"github": "Tharki-God"
},
"version": "1.0.0",
"version": "0.9.0",
"updater": {
"type": "github",
"id": "replugged-org/plugin-template"
"id": "Tharki-God/FluentStatusIcons"
},
"license": "MIT",
"type": "replugged-plugin",
"renderer": "src/index.ts"
"renderer": "src/index.ts",
"plaintextPatches": "src/plaintextPatches.ts"
}
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "plugin-template",
"version": "1.0.0",
"description": "A plugin template",
"name": "fluent-status-icons",
"version": "0.9.0",
"description": "Fluent presence icons, designed by Microsoft.",
"engines": {
"node": ">=14.0.0"
},
Expand All @@ -18,10 +18,11 @@
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"author": "Ahlawat",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.2",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
Expand All @@ -31,5 +32,6 @@
"prettier": "^2.8.1",
"replugged": "^4.1.0",
"typescript": "^4.8.4"
}
},
"dependencies": {}
}
Loading

0 comments on commit bcada54

Please sign in to comment.