Skip to content

Releases: C0rn3j/sc-controller

v0.4.9.4 - BETA

03 Oct 19:38
71340af

Choose a tag to compare

v0.4.9.4 - BETA Pre-release
Pre-release

What's Changed

  • Appimage: create a Draft Release on manual builds by @git-developer in #34
  • Fix the build of v0.4.9.3 and add scc executable back by @git-developer in #37
  • Document Docker building and fix accidentally copying pre-existing dist dir making the build fail

Full Changelog: v0.4.9.3...v0.4.9.4

v0.4.9.3 - BETA

28 Sep 20:17

Choose a tag to compare

v0.4.9.3 - BETA Pre-release
Pre-release

What's Changed

  • AppImage: fix segfault by @git-developer in #32
  • Fix loading of libudev by @git-developer in #31
  • Fix return code when subprocess fails by @git-developer in #33
  • More linter and typing fixes to make maintaining easier
  • Partially migrated from setup.py to pyproject.toml
  • Fixed About menu not showing the version properly

Full Changelog: v0.4.9.2...v0.4.9.3

v0.4.9.2 - BETA

22 Sep 02:27

Choose a tag to compare

v0.4.9.2 - BETA Pre-release
Pre-release

Full Changelog: v0.4.9.1.1...v0.4.9.2

Half-fixed Gyroscope sensitivity setting.

v0.4.9.1.1 - BETA

21 Sep 18:38
ee84660

Choose a tag to compare

v0.4.9.1.1 - BETA Pre-release
Pre-release

Fix AppImage builds again.

v0.4.9.1 - BETA

21 Sep 17:25

Choose a tag to compare

v0.4.9.1 - BETA Pre-release
Pre-release

What's Changed

  • AppImage: add missing icons by @git-developer in #25
  • Avoid crash when starting daemon debug in v0.4.9 by @git-developer & @C0rn3j in #26 + extra commits
  • Fix run.sh on older systems due to unstable build lib dir naming, fix some problems with it like endless C library rebuilding on every run. Colorized it to make it more readable. It now checks for most dependencies before running anything.
  • Remove bundled ioctl-opt, it is now a new dependency.

Full Changelog: v0.4.9.0.1...v0.4.9.1

v0.4.9.0.1 - BETA

19 Sep 11:46

Choose a tag to compare

v0.4.9.0.1 - BETA Pre-release
Pre-release

Fixed AppImage CI.

Full Changelog: v0.4.9.0...v0.4.9.0.1

v0.4.9.0 - BETA

18 Sep 14:33

Choose a tag to compare

v0.4.9.0 - BETA Pre-release
Pre-release

What's Changed

Due to large library updates, things may be broken, this is a beta release.
If you have the time, please test and report what's broken.

  • Fixed adding custom controllers when using the generic HID driver.
  • Added error messages to some assert crashes.
    Especially the one which can be triggered by creating duplicate devices through custom controllers, now the user is at least informed on how to deal with it.
  • Documented that running sc-controller on Windows is (or at least was) possible, untested.
    Also added some documentation regarding AppImages/Flatpak.
  • Stopped marking some dependencies as optional.
    While they are still optional in the code for now, they will probably be hardcode-required in a future release.
    This prevents weird bugs due to having different environments between different systems.
  • Unified spelling of LICENSE vs LICENCE and switched to the correct SPDX identifier.
  • Fixed some Evdev deprecations as .fn is now deprecated and .path needs to be used.
  • Updated the Game Controller DB to the latest upstream version with 3 years worth of fixes and additions.
  • Copypasted and hardcoded libraries were found while digging in the codebase under scc/lib.
    This means sc-controller was using these extremely dated(some 8+ years) libraries with old behavior and old bugs:
    • libusb1 - Torn out and imports replaced, libusb1 is now a new dependency.
      This or the other changes seemingly broke input methods which now provide bytearrays instead of bytes and may need to be converted where appropriate
    • enum - This is the worst one as it seems to be torn out from core Python 2(???), fixing this drastically changes how enums are handled.
      In some places, referring to the enum now gives its value instead of the expected full name.
      Tests themselves, parsers and some code had to be fixed.
      Current tests do not catch everything, so there's more work to be done
    • daemon - Tiny customized Daemon implementation, perhaps makes sense but needs to be typed at minimum in the future.
    • eudevmonitor - Custom udev monitor implementation.
      Might make sense to migrate to https://github.com/pyudev/pyudev or https://pypi.org/project/udev-monitor/
    • ioctl_opt - Updated to the latest 1.3 - will be torn out in the future and made into a proper dependency.
    • jsonencoder - Seems to be an override of Python json, as if having a custom JSON parser elsewhere wasn't enough.
      It probably shouldn't be done in this fashion, needs further poking
    • hidraw - Seems like sc-controller added two helper function to it which make it harder to remove the bundling, being resolved here vpelletier/python-hidraw#4
    • hidparse - Looks like a custom implementation, might make sense to migrate it to https://github.com/usb-tools/python-hid-parser
    • hidparse_data - Enums separated from the above hidparse implementation
    • xinput - Custom xinput library, there are probably better solutions, did not check
    • xwrappers - Custom X library, same as above
  • We now properly target Python 3.8+ with Ruff lint rules
    • Various files have been semi-formatted by them, and types have started being added for easier debugging

Full Changelog: v0.4.8.21...v0.4.9.0

v0.4.8.21

07 Sep 20:59
cf39960

Choose a tag to compare

What's Changed

Jammy image may be the best AppImage to use for now as per #17.

Full Changelog: v0.4.8.20...v0.4.8.21

v0.4.8.20

27 Aug 18:46

Choose a tag to compare

Actually fix the release notes, defaulting version checks to the full a.b.c.d version string instead of verifying only new a.b.c releases.

v0.4.8.19

27 Aug 17:59

Choose a tag to compare

Full Changelog: v0.4.8.18...v0.4.8.19

Fixes pulling release notes.