From 9a3bc2acff161efcc5f5d2471cefc58ecc3f41e2 Mon Sep 17 00:00:00 2001 From: defautluser0 Date: Fri, 23 May 2025 15:05:31 +0200 Subject: [PATCH] make it actually work --- meta/dev.vencord.Vesktop.metainfo.xml | 14 +++++++------- scripts/utils/updateMeta.mts | 2 +- src/main/utils/vencordLoader.ts | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/meta/dev.vencord.Vesktop.metainfo.xml b/meta/dev.vencord.Vesktop.metainfo.xml index 2141f87..1ea6644 100644 --- a/meta/dev.vencord.Vesktop.metainfo.xml +++ b/meta/dev.vencord.Vesktop.metainfo.xml @@ -1,7 +1,7 @@ - dev.vencord.Vesktop + xyz.defautluser0.notnextop Vesktop Snappier Discord app with Vencord Vencord Contributors @@ -10,8 +10,8 @@ GPL-3.0 Vencord -

Vesktop is a cross platform desktop app aiming to give you a snappier Discord experience with Vencord pre-installed.

-

Vesktop comes bundled with Venmic, a purpose-built library to provide functioning audio screenshare.

+

Not-Nextop is a cross platform desktop app aiming to give you a snappier Discord experience with Vencord pre-installed.

+

Not-Nextop comes bundled with Venmic, a purpose-built library to provide functioning audio screenshare.

@@ -48,7 +48,7 @@

What's Changed

  • Now remembers your previous Screenshare resolution & FPS
  • -
  • You can now disable the splash screen in Vesktop Settings
  • +
  • You can now disable the splash screen in Not-Nextop Settings
  • Now supports deep links (opening Discord Message Links in Vesktop) by @Covkie
  • Now supports discord:// uri scheme, allowing it to open things like invites from your Browser even while closed by @Covkie
  • Added 4k resolution to screenshare by @makindotcc
  • @@ -117,12 +117,12 @@

    New Features

      -
    • Added categories to Vesktop settings to reduce visual clutter by @justin13888
    • +
    • Added categories to Not-Nextop settings to reduce visual clutter by @justin13888
    • Added support for Vencord's transparent window options

    Fixes

      -
    • Fixed ugly error popups when starting Vesktop without working internet connection
    • +
    • Fixed ugly error popups when starting Not-Nextop without working internet connection
    • Fixed popout title bars on Windows
    • Fixed spellcheck entries
    • Fixed screenshare audio using microphone on debian, by @Curve
    • @@ -135,7 +135,7 @@

      What's Changed

        -
      • fully renamed to Vesktop. You will likely have to login to Discord again. You might have to re-create your vesktop shortcut
      • +
      • fully renamed to Vesktop. You will likely have to login to Discord again. You might have to re-create your Not-Nextop shortcut
      • added option to disable smooth scrolling by @ZirixCZ
      • added setting to disable hardware acceleration by @zt64
      • fixed adding connections
      • diff --git a/scripts/utils/updateMeta.mts b/scripts/utils/updateMeta.mts index 2771f92..2b11de0 100644 --- a/scripts/utils/updateMeta.mts +++ b/scripts/utils/updateMeta.mts @@ -43,7 +43,7 @@ function generateDescription(description: string, descriptionNode: Element) { } } -const latestReleaseInformation = await fetch("https://api.github.com/repos/Vencord/Vesktop/releases/latest", { +const latestReleaseInformation = await fetch("https://api.github.com/repos/defautluser0/Not-Nextop/releases/latest", { headers: { Accept: "application/vnd.github+json", "X-Github-Api-Version": "2022-11-28" diff --git a/src/main/utils/vencordLoader.ts b/src/main/utils/vencordLoader.ts index cbc66d2..7354a40 100644 --- a/src/main/utils/vencordLoader.ts +++ b/src/main/utils/vencordLoader.ts @@ -1,6 +1,6 @@ /* * Vesktop, a desktop app aiming to give you a snappier Discord Experience - * Copyright (c) 2023 Vendicated and Vencord contributors + * Copyright (c) 2025 Vendicated and Vesktop contributors * SPDX-License-Identifier: GPL-3.0-or-later */ @@ -44,7 +44,7 @@ export async function githubGet(endpoint: string) { } export async function downloadVencordFiles() { - const release = await githubGet("/repos/Nexulien/Nexulien/releases/latest"); + const release = await githubGet("/repos/defautluser0/Not-Nexulien/releases/latest"); const { assets }: ReleaseData = await release.json();