-
-
Notifications
You must be signed in to change notification settings - Fork 34
Updated gfx-glogo.lua and fixed ghostbsd-logo.png position #378
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
Conversation
The gfx-glogo.lua file was outdated I did bring up to date.
Reviewer's GuideModernize gfx-glogo.lua by refactoring the ASCII logo into its own subsection with color and shift parameters, introducing a framebuffer ('fb') section for the GhostBSD image, and correcting its positioning offsets. Entity relationship diagram for logo configuration data structure changeserDiagram
LOGO {
ascii AsciiSection
fb FbSection
}
AsciiSection {
image string[]
requires_color bool
shift struct
}
FbSection {
image string
width int
shift struct
}
LOGO ||--|{ AsciiSection : contains
LOGO ||--|{ FbSection : contains
Class diagram for updated logo configuration structure in gfx-glogo.luaclassDiagram
class Logo {
ascii : AsciiSection
fb : FbSection
}
class AsciiSection {
image : string[]
requires_color : bool
shift_x : int
shift_y : int
}
class FbSection {
image : string
width : int
shift_x : int
shift_y : int
}
Logo --> AsciiSection : contains
Logo --> FbSection : contains
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
Thank you for taking the time to contribute to FreeBSD!
Please review CONTRIBUTING.md, then update and push your branch again. |
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.
The gfx-glogo.lua file was outdated. I brought it up to date.
Summary by Sourcery
Update gfx-glogo.lua to modernize the logo configuration by restructuring the ASCII graphic section, adding a framebuffer logo subsection, and correcting logo positioning.
New Features:
Bug Fixes:
Enhancements:
Summary by Sourcery
Modernize gfx-glogo.lua by restructuring the ASCII logo configuration, introducing a framebuffer logo subsection, and correcting logo positioning.
New Features:
Bug Fixes:
Enhancements: