bingocode 1.1.69 → 1.1.70

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": "bingocode",
3
- "version": "1.1.69",
3
+ "version": "1.1.70",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "claude": "bin/claude-win.cjs",
@@ -679,7 +679,7 @@ export const ProviderPanel: React.FC<{
679
679
  : null;
680
680
  const modelDisplayName = entry?.label || entry?.modelId || 'Unconfigured';
681
681
  const status = entry ? `${providerName} / ${modelDisplayName}` : 'Unconfigured';
682
- const label = `[${s}] ${safePadEnd(status, 28)} — ${SLOT_DESCS[s]}`;
682
+ const label = `[${s}] ${safePadEnd(status, 30)} — ${SLOT_DESCS[s]}`;
683
683
  return { label, value: s };
684
684
  });
685
685
  return (
@@ -82,13 +82,20 @@ const i18nMap = {
82
82
  zh: {
83
83
  menu: {
84
84
  newSession: 'New Session',
85
- history: 'Session History',
85
+ history: 'History',
86
86
  provider: 'API Config',
87
87
  settings: 'Settings',
88
88
  about: 'About',
89
89
  exit: 'Exit',
90
90
  },
91
- about: 'Bingo CLI Terminal - Version Info & About',
91
+ about: 'Bingo CLI - Version Info & About',
92
+ aboutContent: [
93
+ 'Bingo is an AI assistant terminal client.',
94
+ '1. API Config: Press "P" or select "API Config" to set up your keys.',
95
+ '2. Model Slots: Configure specific models in the Provider panel.',
96
+ '3. Background Service: Bingo runs a local server to manage sessions.',
97
+ '4. Start Chat: Run `bingocode` or `claude` in any terminal to start.',
98
+ ].join('\n'),
92
99
  mark: '→ Mark Session',
93
100
  unmark: '→ Unmark Session',
94
101
  tipsSimple: 'L Lang | ESC Back | ←→ Menu | ↩ Enter | ? Help',
@@ -108,6 +115,13 @@ const i18nMap = {
108
115
  exit: 'Exit',
109
116
  },
110
117
  about: 'Bingo CLI Terminal - Version Info & About',
118
+ aboutContent: [
119
+ 'Bingo is an AI assistant terminal client.',
120
+ '1. API Config: Press "P" or select "API Config" to set up your keys.',
121
+ '2. Model Slots: Configure specific models in the Provider panel.',
122
+ '3. Background Service: Bingo runs a local server to manage sessions.',
123
+ '4. Start Chat: Run `bingocode` or `claude` in any terminal to start.',
124
+ ].join('\n'),
111
125
  mark: '→ Mark Session',
112
126
  unmark: '→ Unmark Session',
113
127
  tipsSimple: 'L Lang | ESC Back | ←→ Menu | ↩ Enter | ? Help',
@@ -1125,10 +1139,15 @@ export const CliMenuManager: React.FC = () => {
1125
1139
  if (page === 'about') {
1126
1140
  return (
1127
1141
  <Box width={VIEW_W} height={MID_H} flexDirection="column">
1128
- <Text>{i18nMap[lang].about}</Text>
1129
- <Hint>
1130
- API Base: {apiUrl}
1131
- </Hint>
1142
+ <Text color="cyan" bold>{i18nMap[lang].about}</Text>
1143
+ <Box marginTop={1} flexDirection="column">
1144
+ <Text>{(i18nMap[lang] as any).aboutContent}</Text>
1145
+ </Box>
1146
+ <Box marginTop={1}>
1147
+ <Hint>
1148
+ API Base: {apiUrl}
1149
+ </Hint>
1150
+ </Box>
1132
1151
  </Box>
1133
1152
  );
1134
1153
  }