Skip to content
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

[FEATURE] update zbus to 5.x.x #1210

Open
w-lfchen opened this issue Sep 26, 2024 · 0 comments
Open

[FEATURE] update zbus to 5.x.x #1210

w-lfchen opened this issue Sep 26, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@w-lfchen
Copy link
Contributor

w-lfchen commented Sep 26, 2024

Description of the requested feature

tracking issue for updating zbus to 5.x.x (5.0.0 is the latest version at the time of writing this)
71ba502 introduced a regression that has been fixed by reverting the update. obviously, this needs to be avoided.

the following script by @netboy3 can be used for testing:

import pystray
import threading
import time
from PIL import Image

def update_icon():
  img1 = Image.new("RGB", (32, 32), (0, 255, 0))
  img2 = Image.new("RGB", (32, 32), (255, 0, 0))
  while True:
    icon.icon = img1
    time.sleep(1)
    icon.icon = img2
    time.sleep(1)

if __name__ == "__main__":
  icon = pystray.Icon("testicon")
  thread = threading.Thread(target=update_icon)
  thread.start()
  icon.run()

Proposed configuration syntax

No response

Additional context

No response

@w-lfchen w-lfchen added the enhancement New feature or request label Sep 26, 2024
@w-lfchen w-lfchen changed the title [FEATURE] update zbus to 4.x.x [FEATURE] update zbus to 5.x.x Oct 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant