summaryrefslogtreecommitdiff
path: root/src/yuzu/about_dialog.cpp
AgeCommit message (Collapse)Author
2024-12-31chore: update project branding to citronZephyron
2022-05-16about dialog: Fix the logo in a multiplatform wayKyle K
The Icon was renamed in #8283 for Linux builds, and the fix proposed in #8312 would in turn break the icon for Windows users. I've decided to fix the aboutdialog.ui file via qtcreator. I'm not sure its important to have the yuzu icon inside the About dialog grabbed from the local Qt theme, but I've reword how the code works for that, and we can just delete those lines. I've also thrown the yuzu.png through pngcrush to remove this warning libpng warning: iCCP: known incorrect sRGB profile Credit to abouvier for bringing bug up.
2022-04-23general: Convert source file copyright comments over to SPDXMorph
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-10-15configuration: Use std::make_unique instead of operator new for uiMorph
2021-06-23General: Resolve fmt specifiers to adhere to 8.0.0 API where applicableLioncash
Also removes some deprecated API usages.
2021-05-16yuzu/main: Fix version info in logging and about dialogMorph
2020-04-07Addressed feedback: switched to snake case and fixed clang-format errorsSilverBeamx
2020-04-07Addressed feedback: removed CMake hack in favor of building the necessary ↵SilverBeamx
strings via the supplied title format
2019-05-09yuzu/about_dialog: Specify string conversions explicitlyLioncash
Specifies the conversions explicitly to avoid implicit conversions from const char* to QString. This makes it easier to disable implicit QString conversions in the future. In this case, the implicit conversion was technically wrong as well. The implicit conversion treats the input strings as ASCII characters. This would result in an incorrect conversion being performed in the rare case a branch name was created with a non-ASCII Unicode character, likely resulting in junk being displayed.
2018-09-07Better Title Bar DisplayCaptV0rt3x
2018-08-06qt: Default destructors where applicableLioncash
Makes code consistent with our style of defaulting special member functions where applicable.
2018-07-29Port #3837 from Citra: "Add build date in about dialog"fearlessTobi
2018-03-30Add Dark theme, Icon themingN00byKing
configure_general.ui: Add UI Option for Themes config.cpp: Save Theme Settings
2018-01-16clang-formatMerryMage
2018-01-14Implement "About" dialogspycrab