RaAmon, on 01 December 2012 - 09:00 PM, said:
C3C0, thanks for the new build... nice work! The only question seems not resolved its the animation affaire (disabling it in the developer options, the animations are on yet); not too important, i know

I checked it. Launcher animations have nothing to do with animations set in developer options. There is no link to it.
It could be possible to add option to Trebuchet for disabling animations but I don't know if it's worth investing time in it.
Still can't say how much work it would require. Also the problem is that 3rd party launchers will again have their own animations handling without link to system settings. Logicaally, because no standalone launchers can rely on if such setting is available in the system.
Here you can see the method that is called when you press button to enter app drawer. You can see that it is explicitly called with animation flag being true ignoring the option in developer settings.
/**
* Event handler for the "grid" button that appears on the home screen, which
* enters all apps mode.
*
* @param v The view that was clicked.
*/
public void onclickAllAppsButton(View v) {
showAllApps(true);
}
void showAllApps(boolean animated) {
if (mState != State.WORKSPACE) return;
showAppsCustomizeHelper(animated, false);
mAppsCustomizeTabHost.requestFocus();
.
.
.