@apmantza/greedysearch-pi 1.7.5 → 1.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/bin/search.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.7.6 (2026-04-11)
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
- **Close Gemini synthesis tab** — after synthesis completes, the Gemini tab is now closed instead of merely activated, preventing stale tabs from accumulating across searches.
|
|
7
|
+
|
|
3
8
|
## v1.7.5 (2026-04-10)
|
|
4
9
|
|
|
5
10
|
### Plugin
|
package/bin/search.mjs
CHANGED
|
@@ -1467,11 +1467,11 @@ async function main() {
|
|
|
1467
1467
|
grounded: depth === "deep",
|
|
1468
1468
|
tabPrefix: geminiTab,
|
|
1469
1469
|
});
|
|
1470
|
-
await activateTab(geminiTab);
|
|
1471
1470
|
out._synthesis = {
|
|
1472
1471
|
...synthesis,
|
|
1473
1472
|
synthesized: true,
|
|
1474
1473
|
};
|
|
1474
|
+
await closeTab(geminiTab);
|
|
1475
1475
|
process.stderr.write("PROGRESS:synthesis:done\n");
|
|
1476
1476
|
} catch (e) {
|
|
1477
1477
|
process.stderr.write(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apmantza/greedysearch-pi",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.6",
|
|
4
4
|
"description": "Pi extension: multi-engine AI search (Perplexity, Bing Copilot, Google AI) via browser automation -- NO API KEYS needed. Extracts answers with sources, optional Gemini synthesis. Grounded AI answers from real browser interactions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|