Merge pull request #262 from mirkogolze/feature/about-window

#203 #254 #231 add icon to asar content, change styling to allow copying the content
This commit is contained in:
Anoop M D 2023-10-01 01:51:32 +05:30 committed by GitHub
commit 39f148267e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,8 @@
.versions {
-webkit-user-select: text;
user-select: text;
}
.title {
-webkit-user-select: text;
user-select: text;
}

View File

@ -51,7 +51,8 @@ const template = [
click: () =>
openAboutWindow({
product_name: 'Bruno',
icon_path: join(process.cwd(), '/resources/icons/png/256x256.png'),
icon_path: join(__dirname, '../about/256x256.png'),
css_path: join(__dirname, '../about/about.css'),
homepage: 'https://www.usebruno.com/',
package_json_dir: join(__dirname, '../..')
})