summaryrefslogtreecommitdiff
path: root/src/yuzu/aboutdialog.ui
AgeCommit message (Collapse)Author
2024-12-31chore: update project branding to citronZephyron
2022-08-09Qt: tweak ui filesKyle K
make about dialog a bit taller for full message on more systems for direct_connect.ui hedging bets here, there is a text field for port number that possibly shouldn't be translated, marking as such, but also adding a translation note for the event that it makes sense to translate the placeholder text to something other than the default multiplayer direct connect port.
2022-07-27chore: make yuzu REUSE compliantAndrea Pappacoda
[REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
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-18yuzu: mention GPLv3.0+ in about dialogAndrea Pappacoda
Follow-up to 284934ebfdf5e530c960cf69969172ff76f40bea Fixes #8218
2021-05-16yuzu/main: Fix version info in logging and about dialogMorph
2020-11-15ui/themes: Cleanup UIMorph
2018-07-30Merge pull request #859 from FearlessTobi/port-3837bunnei
Port #3837 from Citra: "citra-qt: Add build date in about dialog"
2018-07-30Port #3769 from Citra: "Update Dark theme to latest version"Tobias
2018-07-29Port #3837 from Citra: "Add build date in about dialog"fearlessTobi
2018-01-14qt: Update about dialog to show license for GPLv2 only.bunnei
Fixes #6.
2018-01-14Implement "About" dialogspycrab