-
Notifications
You must be signed in to change notification settings - Fork 41
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
Add Gnome Shell 45 and 46 compatibility. #101
base: master
Are you sure you want to change the base?
Conversation
…l Gi/GS imports. * Gnome Shell is moving to ESM, it will load extensions as standard modules. * We can also start using standard imports for introspected modules & Gnome Shell imports. * Convenience APIs for extensions are now provided as Extension base classes. * initTranslations() method is considered deprecated. * GLib timeout is to prefer instead of Mainloop. * ByteArray.toString() is deprecated we must use TextDecoder.decode() instead.
…all Gi/GS imports. * This is an initial working port, but no use adwaita widgets amd styles.
Thank you so much for this commit, can confirm that it works flawlessly with Gnome 45 and OpenSuse Tumbleweed! |
For me work great with GS45, but i don't use OpenSuse Tumbleweed, eventually i create a vm and test it. |
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.
Great Work @glerroo! 🚀
@glerroo |
…roperly. This fix issue maoschanz#103.
Issue #103 fixed. |
Clutter.Container was removed. Clutter.Container.add_actor() and Clutter.Container.remove_actor() are deprecated and should use Clutter.Actor.add_child() and Clutter.Actor.remove_child() instead.
Can you submit your version to extensions.gnome.org? |
@maoschanz Hi, thanks for the extension, can you take a look to this pr and eventually merge it, and submit a new version to extensions.gnome.org. |
im here because it stopped working |
Since ESM files contain import and export keywords, extension modules won't be compatible with older GNOME Shell versions. The old shell versions must be removed and only use 45 in shell-version in metadata.json!
Port Extensions to GNOME Shell 45
This close #99