Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vesktop: 1.5.2 -> 1.5.3 #325137

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions pkgs/by-name/ve/vesktop/disable_update_checking.patch
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
diff --git a/src/updater/main.ts b/src/updater/main.ts
index 059afb9..274802e 100644
--- a/src/updater/main.ts
+++ b/src/updater/main.ts
@@ -77,6 +77,7 @@ function isOutdated(oldVersion: string, newVersion: string) {
diff --git a/src/main/index.ts b/src/main/index.ts
index 2e0d6f7..1108c0f 100644
--- a/src/main/index.ts
+++ b/src/main/index.ts
@@ -20,7 +20,6 @@ import { isDeckGameMode } from "./utils/steamOS";
if (IS_DEV) {
require("source-map-support").install();
} else {
- autoUpdater.checkForUpdatesAndNotify();
}

export async function checkUpdates() {
+ return;
if (Settings.store.checkUpdates === false) return;

try {
// Make the Vencord files use our DATA_DIR
6 changes: 3 additions & 3 deletions pkgs/by-name/ve/vesktop/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
}:
stdenv.mkDerivation (finalAttrs: {
pname = "vesktop";
version = "1.5.2";
version = "1.5.3";

src = fetchFromGitHub {
owner = "Vencord";
repo = "Vesktop";
rev = "v${finalAttrs.version}";
hash = "sha256-cZOyydwpIW9Xq716KVi1RGtSlgVnOP3w8vXDwouS70E=";
hash = "sha256-HlT7ddlrMHG1qOCqdaYjuWhJD+5FF1Nkv2sfXLWd07o=";
};

pnpmDeps = pnpm.fetchDeps {
Expand All @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: {
src
patches
;
hash = "sha256-PogE8uf3W5cKSCqFHMz7FOvT7ONUP4FiFWGBgtk3UC8=";
hash = "sha256-rizJu6v04wFEpJtakC2tfPg/uylz7gAOzJiXvUwdDI4=";
};

nativeBuildInputs =
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24589,7 +24589,7 @@ with pkgs;

vencord-web-extension = callPackage ../by-name/ve/vencord/package.nix { buildWebExtension = true; };

vesktop = callPackage ../by-name/ve/vesktop/package.nix { pnpm = pnpm_8; };
vesktop = callPackage ../by-name/ve/vesktop/package.nix { pnpm = pnpm_9; };

vid-stab = callPackage ../development/libraries/vid-stab {
inherit (llvmPackages) openmp;
Expand Down