Skip to content

Commit df89622

Browse files
committed
added links to forums, and now use pretty icons for connection
1 parent 9bdf2b5 commit df89622

9 files changed

+90
-8
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
EspruinoSerialTerminal.zip
21
.project
32
.settings
43
*~
54
Thumbs.db
5+
node_modules
6+
extras/svg
7+
EspruinoWebIDE.zip

css/icons.css

+20
Original file line numberDiff line numberDiff line change
@@ -221,3 +221,23 @@ a.title-bar__button--alert:hover { background-color: #f39c12; }
221221
.compact .icon-debug-over.lrg:before,
222222
.icon-debug-over.sml:before { background-position: -60px -2280px }
223223

224+
.icon-book.lrg:before { background-position: 0 -2340px }
225+
.compact .icon-book.lrg:before,
226+
.icon-book.sml:before { background-position: -60px -2340px }
227+
228+
.icon-chat.lrg:before { background-position: 0 -2400px }
229+
.compact .icon-chat.lrg:before,
230+
.icon-chat.sml:before { background-position: -60px -2400px }
231+
232+
.icon-bluetooth.lrg:before { background-position: 0 -2460px }
233+
.compact .icon-bluetooth.lrg:before,
234+
.icon-bluetooth.sml:before { background-position: -60px -2460px }
235+
236+
.icon-headphone.lrg:before { background-position: 0 -2520px }
237+
.compact .icon-headphone.lrg:before,
238+
.icon-headphone.sml:before { background-position: -60px -2520px }
239+
240+
.icon-network.lrg:before { background-position: 0 -2580px }
241+
.compact .icon-network.lrg:before,
242+
.icon-network.sml:before { background-position: -60px -2580px }
243+

extras/chrome_exclude.lst

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ Thumbs.db
44
.gitignore
55
.project
66
.settings*
7+
.externalToolBuilders
78
.externalToolBuilders/*
89
EspruinoSerialTerminal.zip
910
EspruinoTools/.git*
1011
EspruinoTools/node_modules/*
1112
extras*
1213
unused/*
14+
unused
1315
img/bak/*
1416
node_modules/*
17+
node_modules
1518

1619
# Electron/nw.js stuff
1720
package.json
@@ -23,6 +26,8 @@ index.html
2326
upload.html
2427
server.js
2528
EspruinoTools/bin/espruino-cli.js
26-
serviceworker.js
29+
serviceworker.js
2730
*.sh
28-
31+
EspruinoWebIDE.zip
32+
README.md
33+
serviceworker.js

extras/make_icons.sh

+10-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
# Extract icons from http://modernuiicons.com/ into an directory called 'svg'
44
# needs imagemagick to be installed
5+
#
6+
# apt-get install librsvg2-bin
57

68
cd `dirname $0`
79
Y=0
@@ -35,19 +37,19 @@ function i {
3537

3638
convert $IMG -resize 60x60\! a.png
3739
convert $IMG -resize 30x30\! b.png
38-
convert a.png b.png +append -negate -alpha copy -channel RGB -level 100,100 $TEMPIMG
40+
convert a.png b.png -background transparent +append -negate -level 100,100 $TEMPIMG
3941

4042
# convert a.png b.png +append -negate -fuzz 100% -transparent black $TEMPIMG
4143
rm a.png b.png
4244
IMAGES="$IMAGES $TEMPIMG"
43-
}
45+
}
4446

4547
# list of OLD icons (in order)
4648
# We do this because old icons looked good, and recreating
4749
# the image from SVG causes icons to be all different sizes :(
4850
o svg/appbar.close cross
4951
o svg/appbar.app window
50-
o svg/appbar.minus minus
52+
o svg/appbar.minus minus
5153
o svg/appbar.add plus
5254
o svg/appbar.chevron.left back
5355
o svg/appbar.chevron.right forward
@@ -87,6 +89,11 @@ i svg/appbar.control.stop debug-stop
8789
i svg/appbar.debug.step.into debug-into
8890
i svg/appbar.debug.step.out debug-out
8991
i svg/appbar.debug.step.over debug-over
92+
i svg/appbar.book.hardcover.open book
93+
i svg/appbar.chat chat
94+
i svg/appbar.connection.bluetooth bluetooth
95+
i svg/appbar.hardware.headphones headphone
96+
i svg/appbar.network network
9097

9198
# Now put them all together into one file
9299
convert icons/oldicons.png $IMAGES -append $ICONFILE

img/icons.png

4.41 KB
Loading

js/core/menuPortSelector.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,13 @@
9696
html = '<ul class="list">';
9797
for (var i in items) {
9898
var port = items[i];
99+
var icon = "icon-usb";
100+
if (port.type=="bluetooth") icon = "icon-bluetooth";
101+
if (port.type=="socket") icon = "icon-network";
102+
if (port.type=="audio") icon = "icon-headphone";
99103
html += '<li class="list__item">'+
100104
'<a title="'+ port.path +'" class="button button--icon button--wide" data-port="'+ port.path +'">'+
101-
'<i class="icon-usb lrg button__icon"></i>'+
105+
'<i class="'+icon+' lrg button__icon"></i>'+
102106
'<span class="list__item__name">'+ port.path;
103107
if (port.description)
104108
html += '</br><span class="list__item__desc">' + port.description + '</span>';

js/plugins/helpLinks.js

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/**
2+
Copyright 2014 Gordon Williams ([email protected])
3+
4+
This Source Code is subject to the terms of the Mozilla Public
5+
License, v2.0. If a copy of the MPL was not distributed with this
6+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
8+
------------------------------------------------------------------
9+
The Espruino tutorial
10+
------------------------------------------------------------------
11+
**/
12+
"use strict";
13+
(function(){
14+
15+
function init() {
16+
17+
var icon = Espruino.Core.App.findIcon("help");
18+
if(icon) {
19+
icon.addMenuItem({
20+
id: "forum",
21+
icon: "chat",
22+
title: "Forum",
23+
order: 100,
24+
click: function(){
25+
window.open("http://forum.espruino.com");
26+
}
27+
});
28+
icon.addMenuItem({
29+
id: "troubleshooting",
30+
icon: "book",
31+
title: "Troubleshooting",
32+
order: 100,
33+
click: function(){
34+
window.open("http://www.espruino.com/Troubleshooting");
35+
}
36+
});
37+
}
38+
}
39+
40+
Espruino.Plugins.HelpLinks = {
41+
init : init,
42+
};
43+
}());

main.html

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@
135135
<script src="js/plugins/debugger.js"></script>
136136
<script src="js/plugins/tour.js"></script>
137137
<script src="js/plugins/settingsProfile.js"></script>
138+
<script src="js/plugins/helpLinks.js"></script>
138139

139140

140141
<!-- <script src="js/plugins/_examplePlugin.js"></script> -->

0 commit comments

Comments
 (0)