@cloud411716/fancy-webnovel 0.1.56 → 0.1.57

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloud411716/fancy-webnovel",
3
- "version": "0.1.56",
3
+ "version": "0.1.57",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "exports": {
@@ -92,9 +92,6 @@ export async function apply(ctx) {
92
92
 
93
93
  notify(session, scan.notify({ type: 'collecting', platform, length }));
94
94
 
95
- // 显示状态栏,运行时实时可见
96
- ctx.tuiStatus?.set(`📊 采集中: ${platformLabel(platform)}(${length === 'long' ? '长篇' : '短篇'})`);
97
-
98
95
  const scriptResult = await spawnScript(
99
96
  'node',
100
97
  [join(SCAN_SCRIPTS_DIR, 'run-scan.js'),
@@ -102,8 +99,6 @@ export async function apply(ctx) {
102
99
  { timeout: 120000 }
103
100
  );
104
101
 
105
- ctx.tuiStatus?.set('');
106
-
107
102
  if (!scriptResult.ok) {
108
103
  const err = (typeof scriptResult.error === 'object' && scriptResult.error !== null)
109
104
  ? (scriptResult.error.message || JSON.stringify(scriptResult.error))