Updated gfx-glogo.lua and fixed ghostbsd-logo.png position#378
Merged
ericbsd merged 1 commit intoreleng/15.0from Nov 14, 2025
Merged
Updated gfx-glogo.lua and fixed ghostbsd-logo.png position#378ericbsd merged 1 commit intoreleng/15.0from
ericbsd merged 1 commit intoreleng/15.0from
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. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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: