No description
This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2017-02-18 20:50:34 -08:00
assets big update, light switch in top navigation, bug fixes, LOTS of mobie work - almost there 2016-11-20 13:15:24 -08:00
chrome styling changes, WIP chrome extension 2017-02-18 20:50:34 -08:00
mobile styling changes, WIP chrome extension 2017-02-18 20:50:34 -08:00
web styling changes, WIP chrome extension 2017-02-18 20:50:34 -08:00
.gitignore WIP chrome extension - using chrome's storage api, figuring out background scripts 2017-02-17 00:05:40 -08:00
README.md bug fixes, minor stuff 2017-02-10 19:07:00 -08:00

Huegasm

Music awesomeness for hue lights.

It lives at http://www.huegasm.com and on https://play.google.com/store/apps/details?id=com.hoboman313.huegasm

Current priorities

  • create a Huegasm Chrome extension

SIGNING

/ember-cordova/platforms/android/release-signing.properties: storeFile=huegasm.keystore storeType=jks keyAlias=huegasm keyPassword=... storePassword=...

LE MONKEY PATCHES

  • webView.setVerticalScrollBarEnabled(true);

  • @Override public void handleStop() { if (!isInitialized()) { return; }

    sendJavascriptEvent("stop");

    pluginManager.onStop(); }

  • channel.onStop = cordova.addDocumentEventHandler('stop'); from channel.onDeviceReady = cordova.addStickyDocumentEventHandler('deviceready');

  • case 'stop': after case 'pause':

  • add to Android manifest

Just search for 'pause' and add the same type of event stuff for 'stop'. This is needed for properly split screening Huegasm with other apps.