Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/fork-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ jobs:
active_submission=$(jq -r '
.history
| map(select(
.name == "T3 Code (incognitojam Nightly).zip" and
.name == "T3 Code (yngatech Nightly).zip" and
.status == "In Progress"
))
| sort_by(.createdDate)
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
"tailwindcss": "^4.0.0",
"vite-plus": "catalog:"
},
"productName": "T3 Code (incognitojam Alpha)"
"productName": "T3 Code (yngatech Alpha)"
}
2 changes: 1 addition & 1 deletion apps/desktop/scripts/electron-launcher.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const devBundleIdSuffix = NodePath.basename(repoRoot)
.toLowerCase()
.replaceAll(/[^a-z0-9]+/g, "");
const appStageLabel = isDevelopment ? "Dev" : "Alpha";
export const APP_DISPLAY_NAME = `T3 Code (incognitojam ${appStageLabel})`;
export const APP_DISPLAY_NAME = `T3 Code (yngatech ${appStageLabel})`;
export const APP_BUNDLE_ID = isDevelopment
? `com.t3tools.t3code.dev.${devBundleIdSuffix || "local"}`
: "dev.incognitojam.t3code";
Expand Down
7 changes: 2 additions & 5 deletions apps/desktop/src/app/DesktopAppIdentity.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,8 @@ describe("DesktopAppIdentity", () => {
const identity = yield* DesktopAppIdentity.DesktopAppIdentity;
yield* identity.configure;

assert.deepEqual(calls.setName, ["T3 Code (incognitojam Alpha)"]);
assert.equal(
calls.setAboutPanelOptions[0]?.applicationName,
"T3 Code (incognitojam Alpha)",
);
assert.deepEqual(calls.setName, ["T3 Code (yngatech Alpha)"]);
assert.equal(calls.setAboutPanelOptions[0]?.applicationName, "T3 Code (yngatech Alpha)");
assert.equal(calls.setAboutPanelOptions[0]?.applicationVersion, "1.2.3");
assert.equal(calls.setAboutPanelOptions[0]?.version, "0123456789ab");
assert.deepEqual(calls.setDockIcon, ["/icon.png"]);
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/app/DesktopEnvironment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function resolveDesktopAppBranding(input: {
return {
baseName: APP_BASE_NAME,
stageLabel,
displayName: `${APP_BASE_NAME} (incognitojam ${stageLabel})`,
displayName: `${APP_BASE_NAME} (yngatech ${stageLabel})`,
};
}

Expand Down
4 changes: 2 additions & 2 deletions scripts/build-desktop-artifact.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ it.layer(NodeServices.layer)("build-desktop-artifact", (it) => {
});

it("uses the fork identity for desktop packaging", () => {
assert.equal(resolveDesktopProductName("0.0.17"), "T3 Code (incognitojam Alpha)");
assert.equal(resolveDesktopProductName("0.0.17"), "T3 Code (yngatech Alpha)");
assert.equal(
resolveDesktopProductName("0.0.17-nightly.20260413.42"),
"T3 Code (incognitojam Nightly)",
"T3 Code (yngatech Nightly)",
);
});

Expand Down
2 changes: 1 addition & 1 deletion scripts/build-desktop-artifact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,7 @@ export function resolvePackageManagerUserAgent(packageManager: string): string {

export function resolveDesktopProductName(version: string): string {
return resolveDesktopUpdateChannel(version) === "nightly"
? "T3 Code (incognitojam Nightly)"
? "T3 Code (yngatech Nightly)"
: (desktopPackageJson.productName ?? "T3 Code");
}

Expand Down
Loading