Skip to content

Commit 9f61718

Browse files
committed
Run on android #25
1 parent 809e9a1 commit 9f61718

File tree

146 files changed

+14560
-2913
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+14560
-2913
lines changed

.claude/settings.local.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
"Bash(grep -n \"async fn get_resource_extended\" /Users/joep/dev/github/atomicdata-dev/atomic-server/lib/src/*.rs)",
1111
"Bash(grep -n \"async fn query\\\\|fn query\" /Users/joep/dev/github/atomicdata-dev/atomic-server/server/src/*.rs)",
1212
"Bash(grep -E \"\\\\.\\(rs\\)$\")",
13-
"Bash(grep -n \"pub async fn handle_get_resource\\\\|pub async fn post_commit\" /Users/joep/dev/github/atomicdata-dev/atomic-server/server/src/handlers/*.rs)"
13+
"Bash(grep -n \"pub async fn handle_get_resource\\\\|pub async fn post_commit\" /Users/joep/dev/github/atomicdata-dev/atomic-server/server/src/handlers/*.rs)",
14+
"Bash(cargo tauri --version)",
15+
"Bash(echo $ANDROID_HOME)",
16+
"Bash(adb devices)"
1417
]
1518
}
1619
}

.vscode/settings.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,17 @@
2424
"editor.codeActionsOnSave": {
2525
"source.fixAll.eslint": "explicit"
2626
},
27-
"eslint.workingDirectories": [{ "directory": "browser" }],
27+
"eslint.workingDirectories": [
28+
{
29+
"directory": "browser"
30+
}
31+
],
2832
"typescript.preferences.preferTypeOnlyAutoImports": true,
2933
"rustTestExplorer.rootCargoManifestFilePath": "./Cargo.toml",
3034
// This won't work in multi-root workspaces, could be fixed by using a rust-analyzer.toml once there is some more documentation on that.
3135
// For now you need to set this in your own vscode settings file.
3236
"rust-analyzer.cargo.extraEnv": {
3337
"ATOMICSERVER_SKIP_JS_BUILD": "true"
34-
}
38+
},
39+
"java.configuration.updateBuildConfiguration": "automatic"
3540
}

Cargo.lock

Lines changed: 16 additions & 145 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

browser/data-browser/src/chunks/AI/AIChatMessageParts/UserMessage.tsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export const UserMessage: React.FC<UserMessageProps> = ({ message }) => {
1414

1515
return (
1616
<UserMessageWrapper>
17-
<SenderName>You</SenderName>
1817
{context && (
1918
<ContextItemRow wrapItems center gap='1ch'>
2019
{context.map(item => (
@@ -55,12 +54,3 @@ const UserMessageWrapper = styled(MessageWrapper)`
5554
align-self: flex-end;
5655
box-shadow: ${p => p.theme.boxShadow};
5756
`;
58-
59-
const SenderName = styled.span`
60-
display: inline-flex;
61-
align-items: center;
62-
gap: 1ch;
63-
font-weight: bold;
64-
font-size: 0.6rem;
65-
color: ${p => p.theme.colors.textLight};
66-
`;

browser/data-browser/src/locales/de.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2846,9 +2846,8 @@ msgstr ""
28462846
"Der Titel wird verwendet, um das Subjekt zu erstellen. Bitte beachte, dass\n"
28472847
"das Subjekt später nicht mehr geändert werden kann."
28482848

2849-
#: src/chunks/AI/AIChatMessageParts/UserMessage.tsx
2850-
msgid "You"
2851-
msgstr "Du"
2849+
#~ msgid "You"
2850+
#~ msgstr "Du"
28522851

28532852
#. placeholder {0}: name
28542853
#: src/components/forms/NewForm/CustomCreateActions/CustomForms/NewTableDialog.tsx

browser/data-browser/src/locales/en.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2766,9 +2766,8 @@ msgstr "Enter valid JSON..."
27662766
msgid "ID: {0} Name: {1} Description: {2} Tools: {3}"
27672767
msgstr "ID: {0} Name: {1} Description: {2} Tools: {3}"
27682768

2769-
#: src/chunks/AI/AIChatMessageParts/UserMessage.tsx
2770-
msgid "You"
2771-
msgstr "You"
2769+
#~ msgid "You"
2770+
#~ msgstr "You"
27722771

27732772
#: src/chunks/AI/AgentConfigItem.tsx
27742773
msgid "Default agent"

browser/data-browser/src/locales/es.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2236,9 +2236,8 @@ msgstr "Exportar a CSV"
22362236
msgid "Attached File"
22372237
msgstr "Archivo adjunto"
22382238

2239-
#: src/chunks/AI/AIChatMessageParts/UserMessage.tsx
2240-
msgid "You"
2241-
msgstr "Tú"
2239+
#~ msgid "You"
2240+
#~ msgstr "Tú"
22422241

22432242
#: src/chunks/AI/AIChatMessageParts/ReasoningMessage.tsx
22442243
msgid "Thinking..."

browser/data-browser/src/locales/fr.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2249,9 +2249,8 @@ msgstr "Exporter au format CSV"
22492249
msgid "Attached File"
22502250
msgstr "Fichier joint"
22512251

2252-
#: src/chunks/AI/AIChatMessageParts/UserMessage.tsx
2253-
msgid "You"
2254-
msgstr "Vous"
2252+
#~ msgid "You"
2253+
#~ msgstr "Vous"
22552254

22562255
#: src/chunks/AI/AIChatMessageParts/ReasoningMessage.tsx
22572256
msgid "Thinking..."

0 commit comments

Comments
 (0)