Compare commits
No commits in common. "master" and "1.1.20rc2" have entirely different histories.
|
|
@ -1,9 +1,5 @@
|
|||
# 1.1.20rc3
|
||||
# 1.1.20rc2
|
||||
|
||||
* Add Irish translation
|
||||
* Don't use old settings when reusing sboxes
|
||||
* Add POUND and ISO_BACKSLASH cells to MAIN_ISO key layout
|
||||
* Wrap argv in list for Gio.Application.run (PyGObject 3.56)
|
||||
* Mock libnotify to not perform notifications when doing tests
|
||||
* Isolate testing from real configuration file
|
||||
* Update handling of headset RGB controls
|
||||
|
|
|
|||
|
|
@ -69,7 +69,6 @@ Some of the languages Solaar has been translated to are listed below. A full lis
|
|||
- Turkish: Osman Karagöz
|
||||
- Ukrainian: Олександр Афанасьєв
|
||||
- Bulgarian Николай Йорданов
|
||||
- Irish: Aindriú Mac Giolla Eoin
|
||||
|
||||
[Rongronggg9]: https://github.com/Rongronggg9
|
||||
[papoteur]: https://github.com/papoteur
|
||||
|
|
|
|||
|
|
@ -706,14 +706,6 @@ class Device:
|
|||
long_message=long,
|
||||
protocol=self.protocol,
|
||||
)
|
||||
if logger.isEnabledFor(logging.WARN):
|
||||
logger.warning(
|
||||
"%s: request failure for device %s %s %s",
|
||||
self,
|
||||
self.handle,
|
||||
self.receiver,
|
||||
self.receiver._devices if self.receiver else None,
|
||||
)
|
||||
|
||||
def feature_request(self, feature, function=0x00, *params, no_reply=False):
|
||||
if self.protocol >= 2.0:
|
||||
|
|
@ -738,8 +730,6 @@ class Device:
|
|||
if sub_idx is not None:
|
||||
return self.centurion_bridge_request(sub_idx, function, *params, no_reply=no_reply)
|
||||
return hidpp20.feature_request(self, feature, function, *params, no_reply=no_reply)
|
||||
if logger.isEnabledFor(logging.WARN):
|
||||
logger.warning("%s: feature request failure for device with protocol %s", self, self.protocol)
|
||||
|
||||
# Max sub-message bytes in the first bridge fragment (for 0x51):
|
||||
# 64 - 1 (report ID) - 1 (cpl_len) - 1 (flags) - 2 (bridge prefix) - 2 (bridge hdr) = 57;
|
||||
|
|
|
|||
|
|
@ -1756,10 +1756,6 @@ def feature_request(device, feature, function=0x00, *params, no_reply=False):
|
|||
if feature in device.features:
|
||||
feature_index = device.features[feature]
|
||||
return device.request((feature_index << 8) + (function & 0xFF), *params, no_reply=no_reply)
|
||||
if logger.isEnabledFor(logging.WARN):
|
||||
logger.warning(
|
||||
"%s: feature request failure for device online %s and features %s", device, device.online, device.features
|
||||
)
|
||||
|
||||
|
||||
class Hidpp20:
|
||||
|
|
|
|||
|
|
@ -96,8 +96,6 @@ class _ThreadedHandle:
|
|||
def __str__(self):
|
||||
if self._local:
|
||||
return str(int(self))
|
||||
else:
|
||||
return "None"
|
||||
|
||||
def __repr__(self):
|
||||
return f"<_ThreadedHandle({self.path})>"
|
||||
|
|
|
|||
|
|
@ -171,8 +171,6 @@ class Receiver:
|
|||
self.pairing = Pairing()
|
||||
self.initialize(product_info)
|
||||
hidpp10.set_configuration_pending_flags(self, 0xFF)
|
||||
if logger.isEnabledFor(logging.INFO):
|
||||
logger.info("%s: init receiver: handle %s, path %s, serial %s", self, self.handle, self.path, self.serial)
|
||||
|
||||
def initialize(self, product_info: dict):
|
||||
# read the receiver information subregister, so we can find out max_devices
|
||||
|
|
@ -187,8 +185,6 @@ class Receiver:
|
|||
self.max_devices = product_info.get("max_devices", 1)
|
||||
|
||||
def close(self):
|
||||
if logger.isEnabledFor(logging.INFO):
|
||||
logger.info("%s: closing - handle %s %s", self, type(self.handle), self.handle)
|
||||
handle, self.handle = self.handle, None
|
||||
for _n, d in self._devices.items():
|
||||
if d:
|
||||
|
|
@ -603,10 +599,9 @@ receiver_class_mapping = {
|
|||
|
||||
def create_receiver(low_level: LowLevelInterface, device_info, setting_callback=None) -> Optional[Receiver]:
|
||||
"""Opens a Logitech Receiver found attached to the machine, by Linux device path."""
|
||||
|
||||
try:
|
||||
handle = low_level.open_path(device_info.path)
|
||||
if logger.isEnabledFor(logging.INFO):
|
||||
logger.info("create receiver %s %s", handle, device_info)
|
||||
if handle:
|
||||
usb_id = device_info.product_id
|
||||
if isinstance(usb_id, str):
|
||||
|
|
|
|||
|
|
@ -231,7 +231,7 @@ def run(receivers, args, _find_receiver, find_device):
|
|||
argl = ["config", dev.serial or dev.unitId, setting.name]
|
||||
argl.extend([a for a in [args.value_key, args.extra_subkey, args.extra2] if a is not None])
|
||||
args = yaml.dump(argl)
|
||||
application.run([args])
|
||||
application.run(args)
|
||||
else:
|
||||
if dev.persister and setting.persist:
|
||||
dev.persister[setting.name] = setting._value
|
||||
|
|
|
|||
|
|
@ -1153,7 +1153,6 @@ def update(device, is_online=None):
|
|||
k = (device_id[0], device_id[1], s.name)
|
||||
if k in _items:
|
||||
sbox = _items[k]
|
||||
sbox.setting = s # use setting from current version of device
|
||||
else:
|
||||
sbox = _create_sbox(s, device)
|
||||
if sbox is None:
|
||||
|
|
|
|||
|
|
@ -157,17 +157,11 @@ MAIN_ANSI: tuple[Cell, ...] = (
|
|||
Cell(zone_id=108, row=5, col=13, group="main", label="Ctrl"),
|
||||
)
|
||||
|
||||
# --- Main alpha block, ISO. Drops the row 2 col 13 backslash (zone 46 is the
|
||||
# upper half of the L-shape Enter on ISO, addressed by zone 37) and adds
|
||||
# the two ISO-only keys: POUND (zone 47) at row 3 col 12 between ' and
|
||||
# Enter, and ISO_BACKSLASH (zone 97) at row 4 col 1 between Shift and Z.
|
||||
# Regional layouts override the labels to match local keycaps (# / < on
|
||||
# QWERTZ, # / \ on UK QWERTY, * / < on AZERTY).
|
||||
_ISO_EXTRA_KEYS: tuple[Cell, ...] = (
|
||||
Cell(zone_id=47, row=3, col=12, group="main", label="#"),
|
||||
Cell(zone_id=97, row=4, col=1, group="main", label="\\"),
|
||||
)
|
||||
MAIN_ISO: tuple[Cell, ...] = tuple(c for c in MAIN_ANSI if not (c.row == 2 and c.col == 13)) + _ISO_EXTRA_KEYS
|
||||
# --- Main alpha block, ISO. Same as ANSI minus the row 2 col 13 backslash;
|
||||
# on ISO that position is the top half of the L-shape Enter, addressed
|
||||
# by zone 37 (the main Enter cell at row 3 col 13). Zone 46 is silently
|
||||
# unaddressable on ISO layouts — same limitation as OpenRGB's UI.
|
||||
MAIN_ISO: tuple[Cell, ...] = tuple(c for c in MAIN_ANSI if not (c.row == 2 and c.col == 13))
|
||||
|
||||
# --- Curated allowlist for unmapped device zones surfaced in the bottom strip.
|
||||
# G-keys, logo, media, brightness — the canonical "extras" Logitech firmware
|
||||
|
|
|
|||
|
|
@ -56,8 +56,6 @@ _OVERRIDES: dict[int, str] = {
|
|||
51: ";", # ,-position → semicolon
|
||||
52: ":", # .-position → colon
|
||||
53: "!", # /-position → exclamation
|
||||
47: "*", # POUND key (row 3 col 12) — French * / µ
|
||||
97: "<", # ISO_BACKSLASH (row 4 col 1), between Shift and W
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -38,8 +38,6 @@ _OVERRIDES: dict[int, str] = {
|
|||
49: "Ä", # row 3 col 11
|
||||
26: "Y", # row 4 col 2 — Y/Z swap
|
||||
53: "-", # row 4 col 11
|
||||
47: "#", # POUND key (row 3 col 12), between Ä and Enter
|
||||
97: "<", # ISO_BACKSLASH (row 4 col 1), between Shift and Y
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
1.1.20rc3
|
||||
1.1.20rc2
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
</screenshots>
|
||||
|
||||
<releases>
|
||||
<release version="1.1.20rc3" date="2026-06-17"/>
|
||||
<release version="1.1.20rc2" date="2026-05-24"/>
|
||||
<release version="1.1.19" date="2026-01-08"/>
|
||||
<release version="1.1.18" date="2025-12-11"/>
|
||||
<release version="1.1.16" date="2025-10-23"/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue