Archives

now browsing by author

 

Since v14 I have sometimes this screen.

Since v14 I have sometimes this screen.

So strange

]]>

14a4 – 14a7 – 14a8 = The red color does not change

14a4 – 14a7 – 14a8 = The red color does not change

14a2 – 14a3 = Fine

]]>

Hey all, has anyone used LL with a work profile managed by a device policy?

Hey all, has anyone used LL with a work profile managed by a device policy? My work profile apps don’t show up in the app drawer.

Jay M

Jay M

Next week 😉

https://youtu.be/l7AT5P3tOCQ
]]>

Not sure if this is a bug, but I am getting a nullpointer exception when trying to get all items of the current…

Not sure if this is a bug, but I am getting a nullpointer exception when trying to get all items of the current desktop.

Neither of these work with v14a8

getEvent().getContainer().getAllItems()

getEvent().getScreen().getCurrentDesktop().getAllItems()

In V12 I used LL.getCurrentDesktop().getItems() which doesn’t work now either

]]>

I’ve been using bookmarks for some time, but these don’t work anymore on the most recent alpha versions.

I’ve been using bookmarks for some time, but these don’t work anymore on the most recent alpha versions.

Or am I missing some settings to ‘activate’ bookmarks?

Can anyone confirm this?

Thanks in advance!

Bart

]]>

V14a8 alpha

V14a8 alpha

Plenty of bug fixes! I believe this version works quite correctly now. If all goes well I’ll migrate it to beta.

Most remaining issues (but not all) are linked with scripts, in particular background scripts. Don’t hesitate to let me know if you encounter strange behaviors, my goal is to keep full compatibility with the stable version 12.9.1. (minus bugs and performance improvements…)

Full ChangeLog: http://www.lightninglauncher.com/wordpress/change-log/

]]>

Can you add a progressbar to this even if its only an indeterminate one, it can take a while to apply the icon pack…

Can you add a progressbar to this even if its only an indeterminate one, it can take a while to apply the icon pack so a little bit of eye candy would be nice to look at while it does its thing.

]]>

What is the working, not deprecated alternative for below code?

What is the working, not deprecated alternative for below code?

function ClearList(item) {

var Ritems = item.getItems();

for (var j = 0; j < Ritems.getLength(); j++) {

item.removeItem(Ritems.getAt(j));

}

}

My guess was:

function ClearList(item) {

var Ritems = item.getAllItems();

for (var j = 1; j <= Ritems.length; j++) {

item.removeItem(Ritems[j]);

}

}

But the “removeItem” throws an error 🙁

]]>

Flashing on scrolling direction change

Flashing on scrolling direction change

Assign this script to a shortcut:

LL.getCurrentDesktop().getProperties().edit().setString(“scrollingDirection”,”AUTO”).commit();

And notice a short flashing. Seems like the screen gets refreshed quickly? Doesn’t look great though.

New behaviour introduced with v14a

Additionally, the container scrolls to top when the script gets executed. I would expect the container remains in its scrolling position until an explicit setPosition().

]]>