Skip to content

Commit c43be0a

Browse files
committed
version/3
Merge branch 'develop' * develop: updated to latest build infra Check for up arrow character in Gnome Shell 3.10, in case an extension has moved the top bar to the bottom (like https://extensions.gnome.org/extension/828/bottom-panel/) Build v1 w/ travis Adding smartfile publish script
2 parents 03c26cc + 0c4fcf7 commit c43be0a

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule ".infra"]
2+
path = .infra
3+
url = https://github.com/mpdeimos/.infra.git

.infra

Submodule .infra added at 87dbc23

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
language: node_js
22

3+
env:
4+
- secure: "ZqWi5+UtHF6OVhY+cIxdUtbIomrXBex0URSV8dSihjmAQkZ812HddwFbK9+vb8z+IZ/nmOvA6WkUnW0QfMs0kKr0Sp/y7DzhTr1ResDiOGsDE2csX9nsNaHwaL+nggAo/fYrqzvtuI2LjG7fCaCl5VgWDvuEYyTsLjvrZjy9KRE="
5+
36
install: make deps
47

5-
script: make
8+
script: make all publish
69

710
notifications:
811
email:

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ dist: README.md\
1111
extension.js\
1212
metadata.json
1313
zip -j remove-dropdown-arrows@mpdeimos.com.zip $?
14+
15+
publish:
16+
.infra/smartfile/publish remove-dropdown-arrows@mpdeimos.com.zip
1417

1518
clean:
1619
rm -f *.zip

extension.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function edit(hide)
4242

4343
function recursiveEdit(widget, hide)
4444
{
45-
if (widget.text === '\u25BE' || // regular text drop down arrow (3.10)
45+
if (widget.text === '\u25BE' || widget.text === '\u25B4' || // regular text drop down arrow (3.10)
4646
(widget.has_style_class_name && widget.has_style_class_name('popup-menu-arrow'))) // image drop down arrow (3.12)
4747
{
4848
if (hide)

0 commit comments

Comments
 (0)