Skip to content

Commit 93554ad

Browse files
authored
chore: Twig time + misc fixes (#765)
- Adds back reload + force reload to menu items - Fixes the build issue preventing CI from releasing twig on main rn - Add simple startups logs to main/renderer - Twig time (icons) - Makes it so the command suggestions list only shows in the message editor if the first character is / not if they type a message and at any point they type / which is what it does now. - Fix focus changes text being misaligned on smaller monitors
1 parent 5da48f7 commit 93554ad

File tree

15 files changed

+28
-3
lines changed

15 files changed

+28
-3
lines changed

.github/workflows/agent-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ jobs:
6262
- name: Build shared (agent dependency)
6363
run: pnpm --filter @posthog/shared run build
6464

65+
- name: Build git (agent dependency)
66+
run: pnpm --filter @twig/git run build
67+
6568
- name: Build the package
6669
run: pnpm --filter agent run build
6770

.github/workflows/twig-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ jobs:
7070
- name: Build shared package
7171
run: pnpm --filter @posthog/shared run build
7272

73+
- name: Build git package
74+
run: pnpm --filter @twig/git run build
75+
7376
- name: Build agent package
7477
run: pnpm --filter @posthog/agent run build
7578

apps/twig/build/app-icon.icns

-881 KB
Binary file not shown.

apps/twig/build/app-icon.ico

-343 KB
Binary file not shown.

apps/twig/build/app-icon.png

-253 KB
Loading
-1.16 MB
Loading

apps/twig/build/icon.icon/icon.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"image-name": "logo.png",
1515
"name": "logo",
1616
"position": {
17-
"scale": 1.18,
17+
"scale": 1,
1818
"translation-in-points": [0, 0]
1919
}
2020
}

apps/twig/build/icon@3x.png

-9.74 MB
Loading

apps/twig/build/logo.png

-1.16 MB
Loading

apps/twig/src/main/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ function initializeServices(): void {
7171
// ========================================================
7272

7373
app.whenReady().then(() => {
74+
log.info(`Twig electron v${app.getVersion()} booting up`);
7475
migrateTaskAssociations();
7576
ensureClaudeConfigDir();
7677
createWindow();

0 commit comments

Comments
 (0)