-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Correct AppStream metainfo XML fixing validations errors. #13309
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Copyright 2016 Jeremy Newton --> | ||
<component type="desktop-application"> | ||
<id>org.DolphinEmu.dolphin-emu</id> | ||
<id>org.dolphin_emu.dolphin_emu</id> | ||
<name>Dolphin Emulator</name> | ||
<developer id="org.dolphin-emu"> | ||
<name>Dolphin Emulator Project</name> | ||
</developer> | ||
Comment on lines
-6
to
-8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you intentionally remove the |
||
<summary>GameCube / Wii</summary> | ||
<metadata_license>CC-BY-SA-3.0</metadata_license> | ||
<project_license>GPL-2.0+</project_license> | ||
|
@@ -15,19 +12,19 @@ | |
<screenshots> | ||
<screenshot type="default"> | ||
<caption>Dolphin's main window</caption> | ||
<image type="source">http://dolphin-emu.org/m/user/flatpak/screenshot_1.png</image> | ||
<image type="source">https://dolphin-emu.org/m/user/flatpak/screenshot_1.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<caption>In-game</caption> | ||
<image type="source">http://dolphin-emu.org/m/user/flatpak/screenshot_2.png</image> | ||
<image type="source">https://dolphin-emu.org/m/user/flatpak/screenshot_2.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<caption>Graphics configuration</caption> | ||
<image type="source">http://dolphin-emu.org/m/user/flatpak/screenshot_3.png</image> | ||
<image type="source">https://dolphin-emu.org/m/user/flatpak/screenshot_3.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<caption>Controller configuration</caption> | ||
<image type="source">http://dolphin-emu.org/m/user/flatpak/screenshot_4.png</image> | ||
<image type="source">https://dolphin-emu.org/m/user/flatpak/screenshot_4.png</image> | ||
</screenshot> | ||
</screenshots> | ||
<launchable type="desktop-id">dolphin-emu.desktop</launchable> | ||
|
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.
I'm not sure if you can just go and change this without breaking Flatpak (or something on FlatHub). At least I recall some discussions about the ID, and someone saying that there is a lot more things involved than just changing it in here.
But I think @OatmealDome can probably add more to this.