From bd37c68e8020064b6bd34c3e072d9c617faeca73 Mon Sep 17 00:00:00 2001 From: Daniel Dolezal Date: Fri, 1 May 2026 20:04:34 +0200 Subject: [PATCH] fix bug that getAliases got not found and update version to 0.8.3 --- extension/manifest.json | 2 +- extension/src/commands/tabs.ts | 2 +- pyproject.toml | 2 +- uv.lock | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/extension/manifest.json b/extension/manifest.json index 7313b16..a1efc53 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "browser-cli", - "version": "0.8.2", + "version": "0.8.3", "description": "Control your browser from the terminal via browser-cli", "permissions": [ "tabs", diff --git a/extension/src/commands/tabs.ts b/extension/src/commands/tabs.ts index 77e72b5..4e56d8f 100644 --- a/extension/src/commands/tabs.ts +++ b/extension/src/commands/tabs.ts @@ -1,5 +1,5 @@ // @ts-nocheck -import { executeScript, getActiveTab, isScriptableUrl, resolveTabForDirectAction } from '../core'; +import { executeScript, getActiveTab, getAliases, isScriptableUrl, resolveTabForDirectAction, tabInfo } from '../core'; export async function tabsList() { const windows = await chrome.windows.getAll({ populate: true }); const aliases = await getAliases(); diff --git a/pyproject.toml b/pyproject.toml index 1652999..db686a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "browser-cli" -version = "0.8.2" +version = "0.8.3" description = "Control your real running browser from the terminal via a browser extension" requires-python = ">=3.10" dependencies = [ diff --git a/uv.lock b/uv.lock index 561b543..0e4da1d 100644 --- a/uv.lock +++ b/uv.lock @@ -4,7 +4,7 @@ requires-python = ">=3.10" [[package]] name = "browser-cli" -version = "0.8.2" +version = "0.8.3" source = { editable = "." } dependencies = [ { name = "click" },