Skip to content

Commit

Permalink
chore: rename app
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentdchan committed Sep 12, 2022
1 parent 94bc135 commit f60fbca
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'"> -->
<title>Cuby Text</title>
<script type="module" src="/src/renderer/index.tsx"></script>
<title>CubyText</title>
<script type="module" src="/src/renderer/index.tsx"></script>
</head>
<body>
<div id="cuby-app"></div>
<div id="cuby-tooltips"></div>
<div id="cuby-app"></div>
<div id="cuby-tooltips"></div>
</body>
</html>
</html>
6 changes: 4 additions & 2 deletions src/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,13 @@ import { BlockyDocument } from "blocky-data";
import logger, { configure as configureLog } from "./services/logService";
import { homeId } from "@pkg/common/constants";

app.setName("Cuby Text");
const appName = "CubyText";

app.setName(appName);

const createWindow = () => {
const options: BrowserWindowConstructorOptions = {
title: "Cuby Text",
title: appName,
width: 1024,
height: 620,
webPreferences: {
Expand Down

0 comments on commit f60fbca

Please sign in to comment.