-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed login button not responding on Perplexity AI
- Loading branch information
Showing
7 changed files
with
172 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
### **Perplexity AI v3.1.1** | ||
|
||
--- | ||
|
||
**We apologize for any inconvenience caused by these frequent updates. We promise it's the last one for a while!** | ||
|
||
--- | ||
|
||
**Fix: Login Button Issue** | ||
- Fixed an issue with the login button that was preventing some users from signing in successfully. | ||
|
||
|
||
--- | ||
|
||
<img src='https://raw.githubusercontent.com/inulute/perplexity-ai-app/refs/tags/v3.1.0/assets/screenshots/perplexity_app.png'> | ||
|
||
--- | ||
|
||
|
||
**Hotfix: Startup Issue Resolved** | ||
- Fixed an issue causing the Perplexity Search screen to remain gray on launch for some users. A clean install is now recommended to ensure smooth functionality on first launch. | ||
|
||
--- | ||
|
||
**Codebase Overhaul** | ||
- Rebuilt from scratch for improved speed, stability, and efficiency, resulting in faster load times and smoother interactions. | ||
|
||
**Unified Interface** | ||
- All tools are now accessible within a single, cohesive interface, allowing seamless data retention when switching between AI modes. | ||
|
||
**Sidebar Navigation** | ||
- Updated sidebar design with a streamlined, icon-only layout for quick access to all features. | ||
|
||
**Settings Section** | ||
- Added the ability to set a default AI tool, removing the need to select an AI tool at each launch. | ||
- Enabled shortcut customization and other personalization options. | ||
|
||
**Customizable Shortcuts** | ||
- Configurable shortcuts for essential actions, including switching AI modes, minimizing, restoring, sending to tray, and reloading the app. | ||
|
||
**Update Notifications** | ||
- Redesigned update dialog that fetches release notes from GitHub and displays them in markdown for better readability. | ||
|
||
**Accidental Close Protection** | ||
- Added a confirmation prompt to prevent accidental closure when work is in progress. | ||
|
||
**Streamlined User Experience** | ||
- Removed repetitive sign-up and sign-in prompts for a smoother experience. | ||
|
||
**External Link Handling** | ||
- External links now open in your default browser to keep the in-app experience focused. | ||
|
||
**Usability Improvements** | ||
- Visual enhancements and minor UI tweaks for easier navigation and a cleaner look. | ||
|
||
--- | ||
|
||
**Upgrade now to Perplexity AI v3.1.1!** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,106 +1,105 @@ | ||
/* styles.css */ | ||
|
||
* { | ||
box-sizing: border-box; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
html, body { | ||
height: 100%; | ||
font-family: Arial, sans-serif; | ||
background-color: #2b2b2b; | ||
color: #ffffff; | ||
overflow: hidden; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: inherit; | ||
} | ||
|
||
img { | ||
display: block; | ||
} | ||
|
||
#container { | ||
display: flex; | ||
height: 100%; | ||
} | ||
|
||
#sidebar { | ||
width: 60px; | ||
background-color: #3c3c3c; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
padding-top: 10px; | ||
padding-bottom: 10px; | ||
} | ||
|
||
#sidebar .menu-item { | ||
margin-bottom: 20px; | ||
cursor: pointer; | ||
transition: transform 0.2s; | ||
} | ||
|
||
#sidebar .menu-item:hover { | ||
transform: scale(1.05); | ||
} | ||
|
||
#sidebar .menu-item img { | ||
width: 28px; | ||
height: 28px; | ||
} | ||
|
||
.spacer { | ||
flex-grow: 1; | ||
} | ||
|
||
.version-display { | ||
color: #bbb; | ||
font-size: 12px; | ||
margin-top: 10px; | ||
text-align: center; | ||
} | ||
|
||
#content { | ||
flex-grow: 1; | ||
position: relative; | ||
} | ||
|
||
#webview-container { | ||
width: 100%; | ||
height: 100%; | ||
position: relative; | ||
} | ||
|
||
#loading { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
background-color: rgba(43, 43, 43, 0.85); | ||
display: none; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
#loading.show { | ||
display: flex; | ||
} | ||
|
||
.spinner { | ||
border: 6px solid #4c4c4c; | ||
border-top: 6px solid #7a7a7a; | ||
border-radius: 50%; | ||
width: 50px; | ||
height: 50px; | ||
animation: spin 1s linear infinite; | ||
} | ||
|
||
@keyframes spin { | ||
0% { transform: rotate(0deg); } | ||
100% { transform: rotate(360deg); } | ||
} | ||
box-sizing: border-box; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
html, body { | ||
height: 100%; | ||
font-family: Arial, sans-serif; | ||
background-color: #2b2b2b; | ||
color: #ffffff; | ||
overflow: hidden; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: inherit; | ||
} | ||
|
||
img { | ||
display: block; | ||
} | ||
|
||
#container { | ||
display: flex; | ||
height: 100%; | ||
} | ||
|
||
#sidebar { | ||
width: 60px; | ||
background-color: #3c3c3c; | ||
flex-direction: column; | ||
align-items: center; | ||
padding-top: 10px; | ||
padding-bottom: 10px; | ||
} | ||
|
||
#sidebar .menu-item { | ||
margin-bottom: 20px; | ||
cursor: pointer; | ||
transition: transform 0.2s; | ||
} | ||
|
||
#sidebar .menu-item:hover { | ||
transform: scale(1.05); | ||
} | ||
|
||
#sidebar .menu-item img { | ||
width: 28px; | ||
height: 28px; | ||
} | ||
|
||
.spacer { | ||
flex-grow: 1; | ||
} | ||
|
||
.version-display { | ||
color: #bbb; | ||
font-size: 12px; | ||
margin-top: 10px; | ||
text-align: center; | ||
} | ||
|
||
#content { | ||
flex-grow: 1; | ||
position: relative; | ||
} | ||
|
||
#webview-container { | ||
width: 100%; | ||
height: 100%; | ||
position: relative; | ||
} | ||
|
||
#loading { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
background-color: rgba(43, 43, 43, 0.85); | ||
display: none; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
#loading.show { | ||
display: flex; | ||
} | ||
|
||
.spinner { | ||
border: 6px solid #4c4c4c; | ||
border-top: 6px solid #7a7a7a; | ||
border-radius: 50%; | ||
width: 50px; | ||
height: 50px; | ||
animation: spin 1s linear infinite; | ||
} | ||
|
||
@keyframes spin { | ||
0% { transform: rotate(0deg); } | ||
100% { transform: rotate(360deg); } | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.