summaryrefslogtreecommitdiffstats
path: root/.reuse (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-01-22android: Provide debug.keystore for debug and relWithDebInfo buildst8951-0/+4
Allows devs to share debug builds with testers without uninstalling the previous build
2023-11-30cmake: prefer system gamemode libraryAlexandre Bouvier1-0/+4
2023-10-25cmake: prefer system stb headersAlexandre Bouvier1-0/+4
2023-06-03android: Various fixes for CI.bunnei1-0/+12
2022-11-19github: Remove old markdown formMorph1-6/+2
Replaced by the newer issue forms template
2022-09-16UI: move icons from default into colorful theme.Kyle Kienapfel1-2/+4
colorful theme has been default theme for awhile. having colorful theme try and grab icons from other theme doesn't work on Linux. Also adding two additional icons, info is to hint to the user that they should hit verify after pasting in a token, sync is to show that the verification is occurring.
2022-09-13qt_themes: Add colorful and dark mode sd card iconsMorph1-3/+2
2022-08-14Moving Icons away from CC BY-ND 3.0 for FOSS packaging purposesKyle Kienapfel1-14/+41
I've seen some comments stating that sharing pre-compiled packages of yuzu is problematic for linux distributions due to some contents having license of CC BY-ND 3.0 Better licensed sources of icons have been found for most cases, see the changes to the .reuse/dep5 file for details. Placeholders for connected/disconnected icons At the time of writing I consider these icons to be placeholders, hence three copies. colorful is grey, default is black, qdarkstyle is white connected is gnome/16x16/network-idle.png with no changes connected_notification is gnome/16x16/network-error.png with changes disconnected is gnome/16x16/network-offline.png with changes Looking at licenses: GNOME icon theme is distributed under the terms of either GNU LGPL v.3 or Creative Commons BY-SA 3.0 license. Debian appears to explicitly state they're licensing under Creative Commons Attribution-Share Alike 3.0 From a tarball at the following link suggests we can just attribute GNOME Project https://download.gnome.org/sources/gnome-icon-theme/ When attributing the artwork, using "GNOME Project" is enough. Please link to http://www.gnome.org where available. CC-BY-SA-3.0.txt from https://creativecommons.org/licenses/by-sa/3.0/legalcode.txt
2022-08-05Linux: handle dark system themes nicelyKyle K1-6/+4
yuzu's default theme doesn't specify everything, which is fine for windows, but in linux anything unspecified is set to the users theme. Symptoms of this are that a linux user with a dark theme won't think to change the theme to a dark theme when first using yuzu Idea here is to try and support arbitrary themes on linux. preliminary work on a "default_dark" theme, used only as overlay for any themes that are measured to be dark mode. Other work done: FreeDesktop standard icon names: plus -> list-add delete refresh, we use view-refresh remove duplicated icons for qdarkstyle_midnight_blue referencing icon aliases in the qrc files is the way to go Note: Dynamic style changing doesn't appear to work with AppImage
2022-07-30Translate english pluralsKyle Kienapfel1-1/+2
Turns out that for Qt to properly handle plurals in English a translation needs to be provided, otherwise the user is left with messages such as "Building: 2 shader(s)" Plurals for other all other languages are handled on transifex. I wrote the README.md to just refer to it as a translation collaboration site just in case we ever switch. These translations being out of date won't pose any technical problems so I believe it is fine to handle them manually on a "best effort" basis. The files are generated into the source directory so that the relative filenames are correct. The generated file is added to .gitignore
2022-07-29ci: use dep5 for GitHub issue template filesLiam1-0/+8
2022-07-27chore: make yuzu REUSE compliantAndrea Pappacoda1-0/+106
[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