Skip to content

Commit 1914827

Browse files
Add hamenu, ttw
1 parent 90032e2 commit 1914827

File tree

3 files changed

+46
-4
lines changed

3 files changed

+46
-4
lines changed

images/hamenu.png

35 KB
Loading

images/ttw.png

22.4 KB
Loading

index.html

Lines changed: 46 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,16 @@ <h5>CodeChimp<p>Productivity Apps</h5>
5959
<div class="mdl-layout__header-row portfolio-navigation-row">
6060
<nav class="mdl-navigation mdl-typography--body-1-force-preferred-font">
6161
<a class="mdl-navigation__link is-active" id="all">All Apps</a>
62-
<a class="mdl-navigation__link" id="android">Android</a>
6362
<a class="mdl-navigation__link" id="ios">iOS</a>
64-
<!-- <a class="mdl-navigation__link" id="macos">MacOS</a> -->
63+
<a class="mdl-navigation__link" id="macos">MacOS</a>
64+
<a class="mdl-navigation__link" id="android">Android</a>
6565
</nav>
6666
</div>
6767
</header>
6868
<main class="mdl-layout__content">
6969

70-
7170
<div class="mdl-layout__tab-panel is-active" id="apps">
72-
<div class="ios">
71+
<div class="ios" style="margin-bottom: 48px;">
7372
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
7473
<header class="section__play-btn mdl-cell mdl-cell--3-col-desktop mdl-cell--2-col-tablet mdl-cell--4-col-phone mdl-color--white-100 mdl-color-text--white">
7574
<image src="images/whendo.png"/>
@@ -88,6 +87,24 @@ <h4 class="mdl-card__title-text"><b>When Do</b>&nbsp;for Apple Watch®</h4>
8887
</div>
8988
</section>
9089
</div>
90+
<div class="macos" style="margin-bottom: 48px;">
91+
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
92+
<header class="section__play-btn mdl-cell mdl-cell--3-col-desktop mdl-cell--2-col-tablet mdl-cell--4-col-phone mdl-color--white-100 mdl-color-text--white">
93+
<image src="images/hamenu.png"/>
94+
</header>
95+
<div class="mdl-card mdl-cell mdl-cell--9-col-desktop mdl-cell--6-col-tablet mdl-cell--4-col-phone">
96+
<div class="mdl-card__title">
97+
<h4 class="mdl-card__title-text"><b>HA Menu</b>&nbsp;for MacOS</h4>
98+
</div>
99+
<div class="mdl-card__supporting-text">
100+
<p>A Mac OS Menu Bar app to perform common Home Assistant functions.</p>
101+
</div>
102+
<div class="mdl-card__actions">
103+
<a href="https://github.com/andrew-codechimp/ha-menu" class="mdl-button mdl-button--accent">View on GitHub</a>
104+
</div>
105+
</div>
106+
</section>
107+
</div>
91108
<div class="android">
92109
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
93110
<header class="section__play-btn mdl-cell mdl-cell--3-col-desktop mdl-cell--2-col-tablet mdl-cell--4-col-phone mdl-color--white-100 mdl-color-text--white">
@@ -167,6 +184,23 @@ <h4 class="mdl-card__title-text"><b>Grocery Sum</b></h4>
167184
</div>
168185
</div>
169186
</section>
187+
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
188+
<header class="section__play-btn mdl-cell mdl-cell--3-col-desktop mdl-cell--2-col-tablet mdl-cell--4-col-phone mdl-color--white-100 mdl-color-text--white">
189+
<image src="images/ttw.png"/>
190+
</header>
191+
<div class="mdl-card mdl-cell mdl-cell--9-col-desktop mdl-cell--6-col-tablet mdl-cell--4-col-phone">
192+
<div class="mdl-card__title">
193+
<h4 class="mdl-card__title-text"><b>Tasker Tap Wear</b></h4>
194+
</div>
195+
<div class="mdl-card__supporting-text">
196+
This app is a Tasker plugin to trigger a vibration pattern on the wearable device only, for a discreet notification tap where a popup is not required.</br>
197+
To use it create a new Tasker task and add TTW from the plugins. You'll be able to change the type of vibration tap within the configuration screen.
198+
</div>
199+
<div class="mdl-card__actions">
200+
<a href="https://play.google.com/store/apps/details?id=org.codechimp.ttw" class="mdl-button mdl-button--accent">View on Google PlayStore</a>
201+
</div>
202+
</div>
203+
</section>
170204
</div>
171205
</div>
172206
<footer class="mdl-mini-footer">
@@ -209,14 +243,22 @@ <h4 class="mdl-card__title-text"><b>Grocery Sum</b></h4>
209243
var $btns = $('.mdl-navigation__link').on("click", function() {
210244
if (this.id == "all") {
211245
$(".ios").show();
246+
$(".macos").show();
212247
$(".android").show();
213248
}
249+
if (this.id == "macos") {
250+
$(".ios").hide();
251+
$(".macos").show();
252+
$(".android").hide();
253+
}
214254
if (this.id == "ios") {
215255
$(".ios").show();
256+
$(".macos").hide();
216257
$(".android").hide();
217258
}
218259
if (this.id == "android") {
219260
$(".ios").hide();
261+
$(".macos").hide();
220262
$(".android").show();
221263
}
222264
$btns.removeClass('is-active');

0 commit comments

Comments
 (0)