Skip to content

Commit

Permalink
[???] Not dealing with this. My apologies.
Browse files Browse the repository at this point in the history
  • Loading branch information
lexisother committed Apr 13, 2023
0 parents commit e6a8c96
Show file tree
Hide file tree
Showing 10 changed files with 3,632 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Release

on:
push:
tags:
- '*v*'

jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Check out Git repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 19

- uses: pnpm/action-setup@v2
with:
version: latest

- name: Install Node.js dependencies
run: pnpm install

- name: Build TypeScript and bundle into asar
run: pnpm run build-and-bundle

- uses: ncipollo/release-action@v1
with:
artifacts: 'bundle/*'
makeLatest: true
15 changes: 15 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"scripts": {
"build": "tsx scripts/build.ts",
"bundle": "tsx scripts/bundle.ts",
"build-and-bundle": "pnpm run build --no-install && pnpm run bundle"
},
"devDependencies": {
"@electron/asar": "^3.2.1",
"esbuild": "^0.15.11",
"esbuild-sass-plugin": "^2.4.4",
"replugged": "v4.0.0-rc.3",
"tsx": "^3.10.3",
"typescript": "^4.8.4"
}
}
3 changes: 3 additions & 0 deletions plugins/3y3/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { plugins } from 'replugged';

plugins.uninstall('dev.alyxia.3y3');
18 changes: 18 additions & 0 deletions plugins/3y3/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"id": "dev.alyxia.3y3",
"name": "Hidden Profile Colours",
"description": "Have profile colours as a non-Nitro user via 3y3 in bio. Syntax (3y3 encoded): `[#colour1,#colour2]`",
"author": {
"name": "Alyxia",
"discordID": "952185386350829688",
"github": "lexisother"
},
"version": "1.0.0",
"updater": {
"type": "github",
"id": "lexisother/replugged-plugins"
},
"license": "Apache-2.0",
"type": "replugged-plugin",
"renderer": "index.tsx"
}
3 changes: 3 additions & 0 deletions plugins/hiddenProfileColours/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { plugins } from 'replugged';

plugins.uninstall('dev.alyxia.hiddenProfileColours');
18 changes: 18 additions & 0 deletions plugins/hiddenProfileColours/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"id": "dev.alyxia.hiddenProfileColours",
"name": "Hidden Profile Colours",
"description": "Have profile colours as a non-Nitro user via 3y3 in bio. Syntax (3y3 encoded): `[#colour1,#colour2]`",
"author": {
"name": "Alyxia",
"discordID": "952185386350829688",
"github": "lexisother"
},
"version": "1.0.0",
"updater": {
"type": "github",
"id": "lexisother/replugged-plugins"
},
"license": "Apache-2.0",
"type": "replugged-plugin",
"renderer": "index.tsx"
}
Loading

0 comments on commit e6a8c96

Please sign in to comment.