bingocode 1.1.102 → 1.1.103

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.102",
3
+ "version": "1.1.103",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "claude": "bin/claude-win.cjs",
@@ -926,7 +926,6 @@ export const CliMenuManager: React.FC = () => {
926
926
 
927
927
  // Home: WelcomeV2 (58 cols wide)
928
928
  if (page === null) {
929
- const WELCOME_W = 58;
930
929
  return (
931
930
  <Box flexDirection="column" width={VIEW_W} height={MID_H}>
932
931
  <Box flexDirection="row" width={VIEW_W} flexGrow={1}>
@@ -934,15 +933,7 @@ export const CliMenuManager: React.FC = () => {
934
933
  <WelcomeV2 />
935
934
  </Box>
936
935
  <Box flexGrow={1} flexDirection="column" alignItems="flex-end" paddingRight={4} paddingTop={1}>
937
- <Box borderStyle="classic" borderColor="gray" paddingX={1} flexDirection="column">
938
- <Text color="cyan" bold>Version Info</Text>
939
- <Text> </Text>
940
- <Text dimColor>v1.1.101</Text>
941
- <Text dimColor>Stable Release</Text>
942
- <Text> </Text>
943
- <Text color="gray">Arch: {process.arch}</Text>
944
- <Text color="gray">Node: {process.version}</Text>
945
- </Box>
936
+ <Text dimColor>v1.1.102</Text>
946
937
  </Box>
947
938
  </Box>
948
939
  {!apiUrl && !bootErr && (
@@ -1161,9 +1152,9 @@ export const CliMenuManager: React.FC = () => {
1161
1152
  <Hint>API Base: {apiUrl}</Hint>
1162
1153
  </Box>
1163
1154
  </Box>
1164
- <Box borderStyle="classic" borderColor="gray" paddingX={1} flexDirection="column" marginTop={1}>
1165
- <Text dimColor size="small">{i18n.author}</Text>
1166
- <Text dimColor size="small">{i18n.github}</Text>
1155
+ <Box paddingX={1} flexDirection="column" marginTop={1}>
1156
+ <Text dimColor>{i18n.author}</Text>
1157
+ <Text dimColor>{i18n.github}</Text>
1167
1158
  </Box>
1168
1159
  </Box>
1169
1160
  );