Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated #284

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Binary file modified bg.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 8 additions & 8 deletions forge.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
packagerConfig: {
appCopyright: 'Copyright © 2023 dice2o',
appBundleId: 'com.dice2o.binggpt',
appCopyright: 'Copyright © 2023 7LouisC',
appBundleId: 'com.7LouisC.binggpt',
icon: 'icon',
platforms: ['darwin', 'linux', 'win32'],
arch: ['x64', 'arm64'],
Expand All @@ -12,9 +12,9 @@ module.exports = {
{
name: '@electron-forge/maker-squirrel',
config: {
iconUrl: 'https://github.com/dice2o/BingGPT/raw/main/icon.ico',
iconUrl: 'https://github.com/7LouisC/BingGPT/raw/main/icon.ico',
setupIcon: 'icon.ico',
authors: 'dice2o',
authors: '7LouisC',
description: 'AI-powered copilot',
},
},
Expand All @@ -41,8 +41,8 @@ module.exports = {
productDescription: 'AI-powered copilot',
version: '0.3.7',
categories: ['Utility'],
maintainer: 'dice2o',
homepage: 'https://github.com/dice2o/BingGPT',
maintainer: '7LouisC',
homepage: 'https://github.com/7LouisC/BingGPT',
icon: 'icon.png',
},
},
Expand All @@ -58,8 +58,8 @@ module.exports = {
productDescription: 'AI-powered copilot',
version: '0.3.7',
categories: ['Utility'],
maintainer: 'dice2o',
homepage: 'https://github.com/dice2o/BingGPT',
maintainer: '7LouisC',
homepage: 'https://github.com/7LouisC/BingGPT',
icon: 'icon.png',
},
},
Expand Down
Binary file modified icon.ico
Binary file not shown.
Binary file modified icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const createWindow = () => {
: false
// Create window
const mainWindow = new BrowserWindow({
title: 'BingGPT',
title: 'Merlin-Ai',
backgroundColor: isDarkMode ? '#1c1c1c' : '#eeeeee',
icon: 'icon.png',
width: 601,
Expand Down Expand Up @@ -279,7 +279,7 @@ const createWindow = () => {
type: 'question',
buttons: ['Yes', 'No'],
message: 'Theme Saved',
detail: 'Do you want to reload BingGPT now?',
detail: 'Do you want to reload Merlin-Ai now?',
})
.then((result) => {
if (result.response === 0) {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "binggpt",
"productName": "BingGPT",
"name": "Merlin-Ai",
"productName": "Merlin-Ai",
"version": "0.3.7",
"description": "AI-powered copilot",
"author": "dice2o",
"author": "7LouisC",
"license": "Apache-2.0",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const TurndownService = require('turndown')

window.addEventListener('DOMContentLoaded', () => {
// Change page title
document.title = 'BingGPT'
document.title = 'Merlij-Ai'
// Body
const body = document.body
if (body) {
Expand Down