trivial: Use new 8BitDo name

This commit is contained in:
Richard Hughes 2021-05-24 08:29:50 +01:00
parent d1bf0f439b
commit 69071e14e8
6 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
{
"name": "8Bitdo NES30Pro",
"name": "8BitDo NES30Pro",
"guids": [
"c6566b1b-0c6e-5d2e-9376-78c23ab57bf2"
],

View File

@ -1,5 +1,5 @@
{
"name": "8Bitdo SF30Pro",
"name": "8BitDo SF30Pro",
"guids": [
"269b3121-097b-50d8-b9ba-d1f64f9cd241"
],

View File

@ -1,5 +1,5 @@
{
"name": "8Bitdo SFC30",
"name": "8BitDo SFC30",
"guids": [
"a7fcfbaf-e9e8-59f4-920d-7691dc6c8699"
],

View File

@ -1176,7 +1176,7 @@
<li>Catch invalid Dell dock component requests</li>
<li>Correctly output Intel HEX files with &gt; 16bit offset addresses</li>
<li>Do not try to verify the element write if upload is unsupported</li>
<li>Fix a double-unref when updating any 8Bitdo device</li>
<li>Fix a double-unref when updating any 8BitDo device</li>
<li>Fix crash when enumerating with Dell dock connected but with no UEFI</li>
<li>Fix uploading large firmware files over DFU</li>
<li>Format the BCD USB revision numbers correctly</li>
@ -1189,7 +1189,7 @@
fwupdmgr
</li>
<li>Use the correct wDetachTimeOut when writing DFU firmware</li>
<li>Verify devices with legacy VIDs are actually 8Bitdo controllers</li>
<li>Verify devices with legacy VIDs are actually 8BitDo controllers</li>
</ul>
</description>
</release>

View File

@ -1,15 +1,15 @@
8Bitdo Support
8BitDo Support
==============
Introduction
------------
This plugin can flash the firmware on the 8Bitdo game pads.
This plugin can flash the firmware on the 8BitDo game pads.
Ebitdo support is supported directly by this project with the embedded libebitdo
library and is possible thanks to the vendor open sourcing the flashing tool.
The 8Bitdo devices share legacy USB VID/PIDs with other projects and so we have
The 8BitDo devices share legacy USB VID/PIDs with other projects and so we have
to be a bit careful to not claim other devices as our own.
Firmware Format

View File

@ -262,7 +262,7 @@ fu_ebitdo_device_validate (FuEbitdoDevice *self, GError **error)
G_IO_ERROR,
G_IO_ERROR_INVALID_DATA,
"vendor '%s' did not match allowlist, "
"probably not a 8Bitdo device…", ven);
"probably not a 8BitDo device…", ven);
return FALSE;
}
@ -276,7 +276,7 @@ fu_ebitdo_device_open (FuDevice *device, GError **error)
if (!FU_DEVICE_CLASS (fu_ebitdo_device_parent_class)->open (device, error))
return FALSE;
/* open, then ensure this is actually 8Bitdo hardware */
/* open, then ensure this is actually 8BitDo hardware */
if (!fu_ebitdo_device_validate (self, error))
return FALSE;
if (!g_usb_device_claim_interface (usb_device, 0, /* 0 = idx? */
@ -563,7 +563,7 @@ fu_ebitdo_device_probe (FuDevice *device, GError **error)
/* set name and vendor */
fu_device_set_summary (device, "A redesigned classic game controller");
fu_device_set_vendor (device, "8Bitdo");
fu_device_set_vendor (device, "8BitDo");
/* add a hardcoded icon name */
fu_device_add_icon (device, "input-gaming");