This commit is contained in:
smartfrigde 2022-06-17 15:05:16 +02:00
parent 9efce82462
commit 538bd10412
3 changed files with 3 additions and 3 deletions

View file

@ -138,7 +138,7 @@ jobs:
- uses: dev-drprasad/delete-tag-and-release@v0.2.0
with:
delete_release: true
tag_name: v3.0.6
tag_name: v3.0.7
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release

View file

@ -1,6 +1,6 @@
{
"name": "ArmCord",
"version": "3.1.0",
"version": "3.0.7",
"description": "ArmCord is a custom client designed to enhance your Discord experience while keeping everything lightweight.",
"main": "ts-out/main.js",
"scripts": {

View file

@ -53,7 +53,7 @@ export function setup() {
export function getVersion() {
//to-do better way of doing this
return "3.1.0";
return "3.0.7";
}
export async function injectJS(inject: string) {
const js = await (await fetch(`${inject}`)).text();