From fc7a13ceba24b1617d8bbe1d376a5ce058a4484d Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Mon, 1 Dec 2025 16:35:54 +0900 Subject: [PATCH] Update adb binary path and contributor info Changed the default adb binary path to use the app data directory for improved portability. Updated copyright and contributor information. Bumped VERSIONINFO to 0.2.3. --- lib/adb.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/adb.js b/lib/adb.js index 57b4d75..1a4d12e 100644 --- a/lib/adb.js +++ b/lib/adb.js @@ -1,5 +1,5 @@ // adb.js -// Copyright 2019-2025, Namhyeon Go and the WelsonJS contributors. +// Namhyeon Go and the Catswords OSS contributors. // SPDX-License-Identifier: GPL-3.0-or-later // https://github.com/gnh1201/welsonjs // @@ -91,7 +91,7 @@ function ADBObject() { }; // set the binary path - this.binPath = "bin\\platform-tools_r33.0.0-windows\\platform-tools\\adb.exe"; + this.binPath = SYS.getAppDataDir() + "\\android_platform_tools\\adb.exe"; this._interface.setPrefix(this.binPath); } @@ -133,7 +133,7 @@ exports.createEmulator = function(binPath) { return new EmulatorObject(binPath); }; -exports.VERSIONINFO = "Android Debug Bridge Interface (adb.js) version 0.2.2"; +exports.VERSIONINFO = "Android Debug Bridge Interface (adb.js) version 0.2.3"; exports.AUTHOR = "gnh1201@catswords.re.kr"; exports.global = global; exports.require = global.require;