Unverified Commit f6170e11 authored by Aliaksandr's avatar Aliaksandr
Browse files

equibop: 2.1.4 -> 2.1.5

parent 591335bd
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -2,15 +2,14 @@ diff --git i/src/main/index.ts w/src/main/index.ts
index 23ea0d6..1ef465f 100644
--- i/src/main/index.ts
+++ w/src/main/index.ts
@@ -32,7 +32,9 @@ if (process.platform === "linux") {
 if (IS_DEV) {
     require("source-map-support").install();
 } else {
@@ -22,7 +22,9 @@ import { isDeckGameMode } from "./utils/steamOS";
 
 if (!IS_DEV) {
-    autoUpdater.checkForUpdatesAndNotify();
+    console.log("Update checking is disabled. Skipping...");
+    // autoUpdater.checkForUpdatesAndNotify();
+
 }
 
 // Make the Vencord files use our DATA_DIR
 console.log("Equibop v" + app.getVersion());
+6 −6
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
  pipewire,
  libpulseaudio,
  autoPatchelfHook,
  pnpm_9,
  pnpm_10,
  nodejs,
  nix-update-script,
  withTTS ? true,
@@ -23,16 +23,16 @@
}:
stdenv.mkDerivation (finalAttrs: {
  pname = "equibop";
  version = "2.1.4";
  version = "2.1.5";

  src = fetchFromGitHub {
    owner = "Equicord";
    repo = "Equibop";
    tag = "v${finalAttrs.version}";
    hash = "sha256-y5q3shwmMjXlMaLWfxjN164uM8hSbWymsHIIJxM82Nk=";
    hash = "sha256-uod94pP261Alq+dby+/diiLT0KFjXswVapwXYAAAkbs=";
  };

  pnpmDeps = pnpm_9.fetchDeps {
  pnpmDeps = pnpm_10.fetchDeps {
    inherit (finalAttrs)
      pname
      version
@@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: {
      patches
      ;
    fetcherVersion = 1;
    hash = "sha256-laTyxRh54x3iopGVgoFtcgaV7R6IKux1O/+tzGEy0Fg=";
    hash = "sha256-0UNScJAdpcMOcBHGGG+SeGQon89qLXTCNmaxEswNFBI=";
  };

  nativeBuildInputs = [
    nodejs
    pnpm_9.configHook
    pnpm_10.configHook
    # XXX: Equibop *does not* ship venmic as a prebuilt node module. The package
    # seems to build with or without this hook, but I (NotAShelf) don't have the
    # time to test the consequences of removing this hook. Please open a pull
+2 −2
Original line number Diff line number Diff line
@@ -2,13 +2,13 @@ diff --git i/src/main/constants.ts w/src/main/constants.ts
index afb171f..c6a014e 100644
--- i/src/main/constants.ts
+++ w/src/main/constants.ts
@@ -47,10 +47,7 @@ export const VENCORD_THEMES_DIR = join(DATA_DIR, "themes");
@@ -30,10 +30,7 @@ export const VENCORD_THEMES_DIR = join(DATA_DIR, "themes");
 
 // needs to be inline require because of circular dependency
 // as otherwise "DATA_DIR" (which is used by ./settings) will be uninitialised
-export const VENCORD_DIR = (() => {
-    const { State } = require("./settings") as typeof import("./settings");
-    return State.store.vencordDir ? join(State.store.vencordDir, "equibop") : join(SESSION_DATA_DIR, "equicord.asar");
-    return State.store.equicordDir ? join(State.store.equicordDir, "equibop") : join(SESSION_DATA_DIR, "equicord.asar");
-})();
+export const VENCORD_DIR = "@equicord@";