@darlingc/dsh-freesearch 0.5.1 → 0.5.3
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/lib/client.js +2 -2
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/lib/client.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
window.__ModuleLoader__.load({
|
|
2
|
-
id: "dsh-
|
|
2
|
+
id: "@darlingc/dsh-freesearch",
|
|
3
3
|
factory: (require) => {
|
|
4
4
|
var module = { exports: {} };
|
|
5
5
|
var exports = module.exports;
|
|
@@ -157,7 +157,7 @@ window.__ModuleLoader__.load({
|
|
|
157
157
|
};
|
|
158
158
|
const tt = (lang) => I18N[lang === "en" ? "en" : "zh"];
|
|
159
159
|
// 当前插件版本(与 lib/index.js 的 PLUGIN_VERSION 保持一致)
|
|
160
|
-
const PLUGIN_VERSION = "0.5.
|
|
160
|
+
const PLUGIN_VERSION = "0.5.3";
|
|
161
161
|
const ENGINES = [
|
|
162
162
|
{ id: "ddg", label: "DuckDuckGo · HTML", badge: "FREE", link: "https://duckduckgo.com" },
|
|
163
163
|
{ id: "ddg-lite", label: "DuckDuckGo · Lite", badge: "FREE", link: "https://duckduckgo.com" },
|
package/lib/index.js
CHANGED
|
@@ -28,7 +28,7 @@ const GEMINI_MODEL = "gemini-2.5-flash";
|
|
|
28
28
|
const GEMINI_URL = `https://generativelanguage.googleapis.com/v1beta/models/${GEMINI_MODEL}:generateContent`;
|
|
29
29
|
|
|
30
30
|
// 当前插件版本(发布时与 package.json 同步)
|
|
31
|
-
const PLUGIN_VERSION = "0.5.
|
|
31
|
+
const PLUGIN_VERSION = "0.5.3";
|
|
32
32
|
// 检查更新的 npm registry 元数据地址(@darlingc/dsh-freesearch 是 npmjs 上的公开包)
|
|
33
33
|
const NPM_REGISTRY_URL = "https://registry.npmjs.org/@darlingc%2Fdsh-freesearch/latest";
|
|
34
34
|
const PLUGIN_NPM_URL = "https://www.npmjs.com/package/@darlingc/dsh-freesearch";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@darlingc/dsh-freesearch",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "Free web search for DeepSeek Harness: 11 engines (Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable keyless + Gemini grounding) + time filtering + platform search + web_fetch, with web settings UI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|