diff --git "a/.github/ISSUE_TEMPLATE/bug-report----\351\227\256\351\242\230\345\217\215\351\246\210.md" "b/.github/ISSUE_TEMPLATE/bug-report----\351\227\256\351\242\230\345\217\215\351\246\210.md" index c508b71..588624c 100644 --- "a/.github/ISSUE_TEMPLATE/bug-report----\351\227\256\351\242\230\345\217\215\351\246\210.md" +++ "b/.github/ISSUE_TEMPLATE/bug-report----\351\227\256\351\242\230\345\217\215\351\246\210.md" @@ -36,6 +36,8 @@ can you see the splash screen(or the loading screen if you click the checkbox on **Duplication Check** - [ ] I have searched the issue list and haven‘t found any imformation about my issue. + + **Describe the bug** A clear and concise description of what the bug is. @@ -53,7 +55,8 @@ A clear and concise description of what you expected to happen. If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - - OS: [e.g. iOS] + - OS: [e.g. Windows, Linux with (Gnome, KDE, etc.) Kernel version x.x, Mac OS] + - Arch: [e.g. x86, arm64] - Program Version [e.g. 22] **Additional context** diff --git "a/.github/ISSUE_TEMPLATE/other----\345\205\266\344\273\226.md" "b/.github/ISSUE_TEMPLATE/other----\345\205\266\344\273\226.md" index 39304b6..c7cf4b1 100644 --- "a/.github/ISSUE_TEMPLATE/other----\345\205\266\344\273\226.md" +++ "b/.github/ISSUE_TEMPLATE/other----\345\205\266\344\273\226.md" @@ -1,11 +1,11 @@ --- name: Other -- 其他 -about: Other issues please use this. +about: Please head to Discussions for further report except bugs. --- 请前往Discussions发表除bug外其他问题。 title: "[Feature]" labels: enhancement -assignees: '' +assignees: lony2003 --- - + diff --git a/CHANGELOG.md b/CHANGELOG.md index 391b118..b3b01e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,22 +1,23 @@ -# Release 0.4.3 - -___this is a fix version for 0.4.1, which has blank screen bugs, please uninstall the old version before install the new version___ +# Release 0.4.4 ## What's Improved -- macOS build works again since we have changed to `electron-builder` to build the binary -- blank screen error fixed....should be. +- New Arm64 build for All platform. +- Top bar fix for windows and mac os, and maybe linux with qt? Not sure. Gnome works fine, so further informations are welcome. +- Auto update. ## What's Broken - All the Keyboard Shortcuts, Export, Font Size settings are broken due to `iframe`. Maybe next version I will change the `iframe` to `BrowserView`, or maybe next time, next next time...... +- login is broken. check out the issues for more detailed informtion. + ## What Changed -- the appBundleId has changed from `com.dice2o.binggpt` to `org.eu.fangkehou.binggptee`. So if you are using macOS you may have to delete the old version of this app by yourself. Please notice that if you do that, ___ALL YOUR APP DATA WILL BE DELETED___ +- Nothing. All users can upate seamlessly ## What Needs Help -- Logo for macOS only have 1024x1024@x1 format png, I cant find a proper tool for linux to generate an `icns` file that contains different size of the image and I don't have a MacBook, so macOS build logo may not be shown on the desktop. +- Logo for macOS only have 1024x1024@x1 format png, I cant find a proper tool for linux to generate an `icns` file that contains different size of the image and I don't have a MacBook, so macOS build logo may not be shown on the desktop. ___well, I give up. I will only provide the 1024x1024@x1 format png for mac___ If you can help me improve this app, Please contribute to this repository! Pull Request and Issue is welcome. diff --git a/electron-builder.json5 b/electron-builder.json5 index 2a5c98d..aa8993b 100644 --- a/electron-builder.json5 +++ b/electron-builder.json5 @@ -6,7 +6,7 @@ "appId": "org.eu.fangkehou.binggptee", "asar": true, "productName": "BingGPT", - copyright: "Copyright © 2023 dice2o, Team Fangkehou", + "copyright": "Copyright © 2023 dice2o, Team Fangkehou", "directories": { "output": "release/${version}" }, @@ -15,6 +15,7 @@ "dist-electron" ], "mac": { + "icon": "public/icon-mac.icns", "target": [ { "target": "dmg", @@ -27,7 +28,7 @@ "artifactName": "${productName}-Mac-${arch}-${version}-Installer.${ext}" }, "win": { - icon: "public/icon.ico", + "icon": "public/icon.ico", "target": [ { "target": "nsis", @@ -46,6 +47,7 @@ "deleteAppDataOnUninstall": false }, "linux": { + "icon": "public/icon.png", "target": [ { "target": "AppImage", diff --git a/package.json b/package.json index 629f504..53e19c8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "binggpt", "productName": "BingGPT", - "version": "0.4.3", + "version": "0.4.4", "description": "AI-powered copilot", "author": "dice2o, Team Fangkehou (https://www.fangkehou.eu.org/)", "license": "Apache-2.0", diff --git a/public/icon-mac.icns b/public/icon-mac.icns new file mode 100644 index 0000000..3438833 Binary files /dev/null and b/public/icon-mac.icns differ