Skip to content

Commit 38db63f

Browse files
committed
Change branding
1 parent 07b7fbd commit 38db63f

35 files changed

+112
-112
lines changed

.github/workflows/release-capacitor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ jobs:
5656
run: npx cap build android --keystorepath .keystore/keystore.jks --keystorepass ${{ secrets.ANDROID_KEYSTORE_PASS }} --androidreleasetype APK
5757

5858
- name: Move APK
59-
run: mv android/app/build/outputs/apk/release/app-release-signed.apk chisel-editor.apk
59+
run: mv android/app/build/outputs/apk/release/app-release-signed.apk pulse-editor.apk
6060

6161
- name: Create Release Build (Android)
6262
uses: softprops/action-gh-release@v2
6363
with:
64-
files: chisel-editor.apk
64+
files: pulse-editor.apk

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
## About
2-
Chisel Editor is an editor designed to build and work with AI more naturally on cross-platform devices.
2+
Pulse Editor is an editor designed to build and work with AI more naturally on cross-platform devices.
33

44
## Getting Started -- User Guide
55
### Web Client
6-
There is a web deployment at https://chisel.claypulse.ai
6+
There is a web deployment at https://pulse.claypulse.ai
77
### Mobile Client
88
Android client is available in release page.
99
>Current we only support Android, although it is technically possible to have an iOS build (see developer guide below).
1010
### Desktop Client
1111
Linux, MacOS, Windows clients are available in release page.
1212
>Only Windows is tested in alpha release.
1313
### VSCode Extension
14-
A VSCode Webview Extension with limited features is available [here](https://marketplace.visualstudio.com/items?itemName=shellishack.chisel-editor).
14+
A VSCode Webview Extension with limited features is available [here](https://marketplace.visualstudio.com/items?itemName=shellishack.pulse-editor).
1515

1616

1717
## Getting Started -- Development Guide
1818
### Web Development
19-
Chisel Editor uses Next.js as the frontend (and backend -- TBD).
19+
Pulse Editor uses Next.js as the frontend (and backend -- TBD).
2020
You can get started with local development by running:
2121
```bash
2222
npm run dev
2323
```
2424

2525
### Mobile Development
26-
Chisel Editor uses Capacitor.js to create mobile apps on Android and iOS. To develop mobile app locally, run the following:
26+
Pulse Editor uses Capacitor.js to create mobile apps on Android and iOS. To develop mobile app locally, run the following:
2727
```bash
2828
# Development with Live Reload. You need to first run a local development server as specified above.
2929
npx cap run android -l --host [your_LAN_server_that_your_phone_can_access]
@@ -32,7 +32,7 @@ npm run android
3232
```
3333

3434
### Desktop Development
35-
Chisel Editor uses Electron.js to create desktop apps on Windows, Mac and Linux. To develop desktop app locally,
35+
Pulse Editor uses Electron.js to create desktop apps on Windows, Mac and Linux. To develop desktop app locally,
3636
run:
3737
```bash
3838
# Development
@@ -44,6 +44,6 @@ npm run desktop-build
4444
If you run `npm run desktop-build` for a production build, you can find an executable file inside `out-desktop`.
4545

4646
### VSCode Extension Development
47-
Chisel Editor uses VSCode Webview API to create a VSCode Extension. To develop VScode Extension locally, open the `vscode-extension` in a separate VSCode window. Then press F5 to launch debug task.
47+
Pulse Editor uses VSCode Webview API to create a VSCode Extension. To develop VScode Extension locally, open the `vscode-extension` in a separate VSCode window. Then press F5 to launch debug task.
4848

4949
Note that you will also need to run the Nextjs server locally during development.

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
namespace "com.chisel.app"
4+
namespace "com.pulse.app"
55
compileSdk rootProject.ext.compileSdkVersion
66
defaultConfig {
7-
applicationId "com.chisel.app"
7+
applicationId "com.pulse.app"
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
1010
versionCode 1

android/app/src/main/java/com/chisel/app/MainActivity.java renamed to android/app/src/main/java/com/pulse/app/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.chisel.app;
1+
package com.pulse.app;
22

33
import com.getcapacitor.BridgeActivity;
44

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version='1.0' encoding='utf-8'?>
22
<resources>
3-
<string name="app_name">Chisel Editor</string>
4-
<string name="title_activity_main">Chisel Editor</string>
5-
<string name="package_name">com.chisel.app</string>
6-
<string name="custom_url_scheme">com.chisel.app</string>
3+
<string name="app_name">Pulse Editor</string>
4+
<string name="title_activity_main">Pulse Editor</string>
5+
<string name="package_name">com.pulse.app</string>
6+
<string name="custom_url_scheme">com.pulse.app</string>
77
</resources>

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import CapacitorProvider from "@/components/providers/capacitor-provider";
99
import Nav from "@/components/nav";
1010

1111
export const metadata: Metadata = {
12-
title: "Chisel Editor",
12+
title: "Pulse Editor",
1313
description: "AI powered editor to boost your creativity",
1414
};
1515

capacitor.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import type { CapacitorConfig } from "@capacitor/cli";
22

33
const config: CapacitorConfig = {
4-
appId: "com.chisel.app",
5-
appName: "Chisel Editor",
4+
appId: "com.pulse.app",
5+
appName: "Pulse Editor",
66
webDir: "out-next",
77
android: {
88
buildOptions: {

components/view-display-area.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function ViewDisplayArea() {
1717
// Initialize view manager
1818
useEffect(() => {
1919
if (!editorContext?.viewManager) {
20-
// If running in VSCode extension, notify VSCode that Chisel is ready,
20+
// If running in VSCode extension, notify VSCode that Pulse is ready,
2121
// and create view manager later when VSCode sends a message.
2222
if (getPlatform() === PlatformEnum.VSCode) {
2323
notifyVSCode();
@@ -40,8 +40,8 @@ export default function ViewDisplayArea() {
4040
function notifyVSCode() {
4141
window.parent.postMessage(
4242
{
43-
command: "chiselReady",
44-
from: "chisel",
43+
command: "pulseReady",
44+
from: "pulse",
4545
},
4646
"*",
4747
);
@@ -53,7 +53,7 @@ export default function ViewDisplayArea() {
5353
if (e.ctrlKey && e.altKey && e.code === "KeyS") {
5454
// Send a message to parent iframe
5555
window.parent.postMessage(
56-
{ command: "switchToTextEditor", from: "chisel" },
56+
{ command: "switchToTextEditor", from: "pulse" },
5757
"*",
5858
);
5959
}
@@ -62,7 +62,7 @@ export default function ViewDisplayArea() {
6262
// Add a listener to listen messages from VSCode Extension
6363
window.addEventListener("message", (e) => {
6464
const message = e.data;
65-
if (message.command === "updateChiselText") {
65+
if (message.command === "updatePulseText") {
6666
const text: string = message.text;
6767
console.log("Received text from VSCode:", text);
6868
const view = editorContext?.viewManager?.getActiveView();
@@ -83,7 +83,7 @@ export default function ViewDisplayArea() {
8383
filePath: path,
8484
};
8585
const newView = new View(ViewTypeEnum.Code, doc);
86-
// Send a message to parent iframe to notify changes made in Chisel
86+
// Send a message to parent iframe to notify changes made in Pulse
8787
const callback = (viewDocument: ViewDocument) => {
8888
if (!viewDocument) {
8989
return;
@@ -92,7 +92,7 @@ export default function ViewDisplayArea() {
9292
{
9393
command: "updateVSCodeText",
9494
text: viewDocument.fileContent,
95-
from: "chisel",
95+
from: "pulse",
9696
},
9797
"*",
9898
);
@@ -117,7 +117,7 @@ export default function ViewDisplayArea() {
117117
{!activeView ? (
118118
<div className="flex h-full w-full flex-col items-center justify-center gap-y-1 pb-12 text-default-foreground">
119119
<h1 className="text-center text-2xl font-bold">
120-
Welcome to Chisel Editor!
120+
Welcome to Pulse Editor!
121121
</h1>
122122
<p className="text-center text-lg font-normal">
123123
Start by opening a file or project.

desktop/main.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const createWindow = () => {
2727
color: "#00000000",
2828
symbolColor: "#74b1be",
2929
},
30-
icon: path.join(__dirname, "../public/icons/electron/chisel_logo_round")
30+
icon: path.join(__dirname, "../public/icons/electron/pulse_logo_round")
3131
});
3232

3333
win.menuBarVisible = false;

forge.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const electronModules = ["electron-serve"];
1616
const config: ForgeConfig = {
1717
outDir: "out-desktop",
1818
packagerConfig: {
19-
icon: path.join(__dirname, "/public/icons/electron/chisel_logo_round"),
19+
icon: path.join(__dirname, "/public/icons/electron/pulse_logo_round"),
2020
// Do not package anything but the app/out-next directory
2121
// using Regular Expressions
2222
ignore: (path) => {
@@ -44,7 +44,7 @@ const config: ForgeConfig = {
4444
} else if (platform === "darwin") {
4545
moveModule(
4646
electronModules,
47-
path.join(extractPath, "chisel-editor.app/Contents/Resources"),
47+
path.join(extractPath, "pulse-editor.app/Contents/Resources"),
4848
)
4949
} else if (platform === "linux") {
5050
moveModule(
@@ -62,7 +62,7 @@ const config: ForgeConfig = {
6262
name: "@electron-forge/maker-deb",
6363
config: {
6464
options: {
65-
icon: "/public/icons/electron/chisel-logo",
65+
icon: "/public/icons/electron/pulse-logo",
6666
},
6767
},
6868
},

0 commit comments

Comments
 (0)