ethagent 1.0.3 → 1.0.4
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
package/src/cli/main.tsx
CHANGED
|
@@ -18,7 +18,7 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
|
|
18
18
|
const pkgPath = path.resolve(__dirname, '..', '..', 'package.json')
|
|
19
19
|
const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf8'))
|
|
20
20
|
|
|
21
|
-
updateNotifier({ pkg }).notify()
|
|
21
|
+
updateNotifier({ pkg, updateCheckInterval: 0 }).notify()
|
|
22
22
|
|
|
23
23
|
function readVersion(): string {
|
|
24
24
|
try {
|
|
@@ -39,7 +39,7 @@ export const IdentitySummary: React.FC<{
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
const lastSavedRow = needsBackup
|
|
42
|
-
? { label: '
|
|
42
|
+
? { label: 'to publish', value: changedFiles.length > 0 ? changedFiles.join(', ') : 'markdown files', tone: 'warn' as const, highlight: true }
|
|
43
43
|
: { label: 'last saved', value: lastBackup, tone: lastBackup === 'never' ? 'dim' as const : 'ok' as const }
|
|
44
44
|
|
|
45
45
|
const summaryRows = [
|
|
@@ -50,7 +50,7 @@ export const RecoveryConfirmScreen: React.FC<RecoveryConfirmScreenProps> = ({ mo
|
|
|
50
50
|
<Text color={theme.textSubtle}>{detail}</Text>
|
|
51
51
|
{isPublish && changedFiles.length > 0 && (
|
|
52
52
|
<Box marginTop={1}>
|
|
53
|
-
<Text color={theme.textSubtle}>
|
|
53
|
+
<Text color={theme.textSubtle}>to publish: </Text>
|
|
54
54
|
<Text color="red" bold>{changedFiles.join(', ')}</Text>
|
|
55
55
|
</Box>
|
|
56
56
|
)}
|