Skip to content

Commit

Permalink
fix: login issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dice2o committed Mar 19, 2023
1 parent 3778e09 commit b2d1e09
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = {
productName: 'BingGPT',
description: 'AI-powered answer engine',
productDescription: 'AI-powered answer engine',
version: '0.2.0',
version: '0.2.1',
categories: ['Utility'],
maintainer: 'dice2o',
homepage: 'https://github.com/dice2o/BingGPT',
Expand All @@ -56,7 +56,7 @@ module.exports = {
productName: 'BingGPT',
description: 'AI-powered answer engine',
productDescription: 'AI-powered answer engine',
version: '0.2.0',
version: '0.2.1',
categories: ['Utility'],
maintainer: 'dice2o',
homepage: 'https://github.com/dice2o/BingGPT',
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const createWindow = () => {
},
},
{
label: 'BingGPT v0.2.0',
label: 'BingGPT v0.2.1',
visible: parameters.selectionText.trim().length === 0,
click: () => {
shell.openExternal('https://github.com/dice2o/BingGPT/releases')
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "binggpt",
"productName": "BingGPT",
"version": "0.2.0",
"version": "0.2.1",
"description": "AI-powered answer engine",
"author": "dice2o",
"license": "Apache-2.0",
Expand Down
12 changes: 6 additions & 6 deletions preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ window.addEventListener('DOMContentLoaded', () => {
const discoverContent = document.getElementById('uns_section_fixedbottom')
if (signInLink) {
signInLink.setAttribute('target', '_self')
if (joinLink) {
joinLink.setAttribute('target', '_self')
}
}
if (joinLink) {
joinLink.setAttribute('target', '_self')
}
if (previewBanner) {
previewBanner.style.cssText = 'margin-top: 44px'
if (previewCloseBtn) {
previewCloseBtn.style.cssText = 'display: none'
}
}
if (previewCloseBtn) {
previewCloseBtn.style.cssText = 'display: none'
}
if (forYouContent) {
forYouContent.style.cssText = 'display: none'
Expand Down

0 comments on commit b2d1e09

Please sign in to comment.