minor stuff: higher quality pressButtonBridge.png, adding link to the new huegasm chrome extension to the web app

This commit is contained in:
lone-cloud 2017-02-25 20:34:13 -08:00
parent 7ea66bda80
commit 8e63b5e01d
12 changed files with 33 additions and 19 deletions

View file

@ -4,9 +4,6 @@ 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

Binary file not shown.

View file

@ -117,10 +117,10 @@ export default Component.extend({
this.set('firstVisit', false);
next(this, () => {
this.$('#fancy-button-wrapper a').popover('show');
$('#fancy-button-wrapper a').popover('show');
later(this, () => {
this.$('#fancy-button-wrapper a').popover('hide');
$('#fancy-button-wrapper a').popover('hide');
}, 5000);
});
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View file

@ -125,7 +125,7 @@ chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
error = chrome.runtime.lastError.message;
} else {
stream = _stream;
dancer.load(_stream, 2);
dancer.load(_stream, 3);
chrome.storage.local.set({ currentlyListenining: true });
chrome.browserAction.setBadgeText({ text: "♪" });
state.preMusicLightsDataCache = state.lightsData;
@ -188,7 +188,7 @@ let simulateKick = (/*mag, ratioKickMag*/) => {
type: 'PUT'
});
},
timeToBriOff = 100;
timeToBriOff = 80;
if (state.activeLights.length > 0) {
let lightBopIndex = Math.floor(Math.random() * state.activeLights.length);

View file

@ -1,8 +1,9 @@
{
"manifest_version": 2,
"name": "Huegasm",
"name": "Huegasm for Philips Hue Lights",
"short_name": "Huegasm",
"description": "Manage and synchronize your Philips Hue lights with the beat of your music.",
"version": "1.0",
"version": "1.0.1",
"icons": {
"16": "16x16.png",
"48": "48x48.png",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View file

@ -7,7 +7,7 @@ const {
export default Component.extend({
tagName: 'footer',
classNames: ['footer'],
elementId: 'footer',
year: computed(function () {
return new Date().getFullYear();

View file

@ -1,11 +1,16 @@
<div class="footer-text">
<div id="footer-text">
© {{year}}
<a href="https://www.nidratech.com/" target="_blank" rel="noopener noreferrer">
<a href="http://www.nidratech.com/" target="_blank" rel="noopener noreferrer">
Nidratech Ltd
</a>
</div>
<div id="footer-links">
<a href="https://play.google.com/store/apps/details?id=com.hoboman313.huegasm" target="_blank" rel="noopener noreferrer">
<img src="assets/images/google-play-badge.png" alt="Get it on the Google Play Store">
</a>
<a href="https://chrome.google.com/webstore/detail/huegasm-for-philips-hue-l/mbjanbdhcpohhfecjgbdpcfhnnbofooj" target="_blank" rel="noopener noreferrer">
<img src="assets/images/chrome-store-badge.png" alt="Available in the Chrome Web Store">
</a>
</div>

View file

@ -36,7 +36,7 @@ body, button {
padding-bottom: 50px;
}
.footer {
#footer {
margin: 0 auto 10px auto;
width: 100%;
max-width: 1200px;
@ -48,12 +48,12 @@ body, button {
}
@media(min-width:767px) {
.footer {
#footer {
padding: 0 9%;
}
}
.footer-text {
#footer-text {
display: inline-block;
font-size: 18px;
padding-left: 39%;
@ -119,9 +119,20 @@ div.ember-modal-dialog {
}
@media(max-width:768px) {
.footer-text {
#footer {
display: block;
}
#footer-links {
margin-top: 10px;
display: flex;
justify-content: space-around;
}
#footer-text {
padding-left: 0 !important;
}
#intro-logo {
margin-bottom: 10px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 31 KiB