Skip to content

Commit b3d51d1

Browse files
committed
Rename desktop app to DevTools Studio
1 parent d1d3747 commit b3d51d1

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/desktop/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const config: Configuration = {
1111
'**/node_modules/@the-dev-tools/cli/dist/cli*',
1212
],
1313
extraMetadata: {
14-
name: 'DevTools',
14+
name: 'DevTools Studio',
1515
},
1616
files: ['!src/*', '!*.{js,ts}', '!{tsconfig.json,tsconfig.*.json}'],
1717
linux: {

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@the-dev-tools/desktop",
3-
"description": "DevTools is a powerful API testing tool that records your browser interactions, automatically generates requests, and seamlessly chains them for functional testing. With built-in CI integration, it streamlines API validation from development to deployment.",
3+
"description": "DevTools Studio is a powerful API testing tool that records your browser interactions, automatically generates requests, and seamlessly chains them for functional testing. With built-in CI integration, it streamlines API validation from development to deployment.",
44
"author": "DevTools",
55
"version": "0.1.6",
66
"private": true,

apps/desktop/src/main/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const createWindow = Effect.gen(function* () {
3333
const mainWindow = new BrowserWindow({
3434
height: 600,
3535
icon,
36-
title: 'DevTools',
36+
title: 'DevTools Studio',
3737
webPreferences: {
3838
preload: path.join(import.meta.dirname, '../preload/index.cjs'),
3939
},

apps/desktop/src/renderer/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>DevTools</title>
5+
<title>DevTools Studio</title>
66
</head>
77
<body>
88
<div id="root"></div>

0 commit comments

Comments
 (0)