Moon-0xff
Moon-0xff
It simply adds the [removed code](https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/gnome-42/js/ui/panel.js#L332) for `AggregateLayout` to `widgets.js` This is a quick and simple fix for [my own testing purposes](https://github.com/Moon-0xff/gnome-mpris-label/issues/7), so don't expect much of it :P
**Replacement behaviour:** Replace every instance of the separator character surrounded by spaces within the string, If any. **Dropped the parenthesis:** To correctly replace multiple ```-``` or any other character with...
**Fixes #29 using a regular expression** A better regex to tackle this bug could be ```(?
**if a string is too long, it's cut in the last space (if there's any) and '...' is added** i'm not confident enough in my english to edit the comment...
**If an artist or song name contains a ```"```, it's not parsed completely** the string is cut off just before the first instance of a quotation mark. As in this...
I would like if @Batwam accepts my proposal of becoming the new owner and maintainer of the repository. I stopped giving this project much attention and even though there hasn't...
This might be a problem with Firefox itself or an oversight in our part, in either case we should try to fix the issue. Steps to reproduce: * Open a...
If user inputs to `label-filtered-list` entry something like `,,,,,,,,,,,,,` is converted to `|||||||||||||||` and used as a regex in the line: ```js const filterRegex = new RegExp("(?:-|\\(|\\[).*(?:" + sanitizedInput.replace(",","|") +...