-
Notifications
You must be signed in to change notification settings - Fork 0
Revert the theme back to light mode by default #47
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -38,11 +38,11 @@ private void initComponents() { | |||||
| jLabel1.setName(""); // NOI18N | ||||||
|
|
||||||
| jLabel4.setFont(new java.awt.Font("sansserif", 1, 13)); // NOI18N | ||||||
| jLabel4.setText("Brought to you by Glimmir developers"); | ||||||
| jLabel4.setText("Brought to you by Solaris Studio developers"); | ||||||
|
|
||||||
| jTextPane1.setEditable(false); | ||||||
| jTextPane1.setBackground(new java.awt.Color(255, 255, 255)); | ||||||
| jTextPane1.setText("\ndrawString(\"\n+--------------------------------------------+\n | ▄▖▘ ▌ |\n | ▙▌▌▛▘▀▌▛▘▛▘▛▌▛▘▛▌▛▌█▌ |\n | ▌ ▌▙▖█▌▄▌▄▌▙▌▙▖▙▌▙▌▙▖ |\n | Creativity + Logic + Math |\n+---------------------------------------------+\n\", 0, 0)\n\nBrought to you by glimmr developers\n\nLead developer: Gama Sibusiso Vincent\nAI and Plugin intergration: TODO\nDocumenentation: TODO\n\nCreated 100% in java using java swing, antlr4 and flatlaf. \nIcons pack dowloaded from icons8"); | ||||||
| jTextPane1.setText("\nPen::drawText(\"\n+--------------------------------------------+\n | ▄▖▘ ▌ |\n | ▙▌▌▛▘▀▌▛▘▛▘▛▌▛▘▛▌▛▌█▌ |\n | ▌ ▌▙▖█▌▄▌▄▌▙▌▙▖▙▌▙▌▙▖ |\n | Creativity + Logic + Math |\n+---------------------------------------------+\n\", 0, 0)\n\nBrought to you by glimmr developers\n\nLead developer: Gama Sibusiso Vincent\nAI and Plugin intergration: TODO\nDocumenentation: TODO\n\nCreated 100% in java using java swing, antlr4 and flatlaf. \nIcons pack dowloaded from icons8"); | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix typos and branding inconsistency. The text contains several issues:
Apply this diff to fix the typos and align branding: - jTextPane1.setText("\nPen::drawText(\"\n+--------------------------------------------+\n | ▄▖▘ ▌ |\n | ▙▌▌▛▘▀▌▛▘▛▘▛▌▛▘▛▌▛▌█▌ |\n | ▌ ▌▙▖█▌▄▌▄▌▙▌▙▖▙▌▙▌▙▖ |\n | Creativity + Logic + Math |\n+---------------------------------------------+\n\", 0, 0)\n\nBrought to you by glimmr developers\n\nLead developer: Gama Sibusiso Vincent\nAI and Plugin intergration: TODO\nDocumenentation: TODO\n\nCreated 100% in java using java swing, antlr4 and flatlaf. \nIcons pack dowloaded from icons8");
+ jTextPane1.setText("\nPen::drawText(\"\n+--------------------------------------------+\n | ▄▖▘ ▌ |\n | ▙▌▌▛▘▀▌▛▘▛▘▛▌▛▘▛▌▛▌█▌ |\n | ▌ ▌▙▖█▌▄▌▄▌▙▌▙▖▙▌▙▌▙▖ |\n | Creativity + Logic + Math |\n+---------------------------------------------+\n\", 0, 0)\n\nBrought to you by Solaris Studio developers\n\nLead developer: Gama Sibusiso Vincent\nAI and Plugin integration: TODO\nDocumentation: TODO\n\nCreated 100% in java using java swing, antlr4 and flatlaf. \nIcons pack downloaded from icons8");📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| jTextPane1.setCursor(new java.awt.Cursor(java.awt.Cursor.TEXT_CURSOR)); | ||||||
| jScrollPane1.setViewportView(jTextPane1); | ||||||
|
|
||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Branding inconsistency with line 45.
The label states "Solaris Studio developers" but line 45 still references "glimmr developers" (lowercase). Ensure consistent branding across the UI.
Additionally, verify whether the PR title "Revert the theme back to light mode by default" is accurate, as no theme-related changes are present in this file.
🏁 Script executed:
Length of output: 1143
Fix branding and typos in AboutPanel.java
🤖 Prompt for AI Agents