Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gnome 3.32 support - alternative pull request #312

Merged
merged 14 commits into from
Apr 28, 2020
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .jshint.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"moz": true
"moz": true,
"esversion": 6
}
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,7 @@ clean-test-docs:
$(BUILDDIR):
mkdir -p $@

$(BUILDDIR)/convenience.js: $(BUILDDIR)
wget https://gitlab.gnome.org/GNOME/gnome-shell-extensions/raw/gnome-3-30/lib/convenience.js -O $@

collect: $(BUILDDIR)/convenience.js
collect:
cp -R extension/* $(BUILDDIR)
cp -R data/* $(BUILDDIR)

Expand Down
12 changes: 1 addition & 11 deletions data/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,7 @@
"gettext-domain": "hamster-shell-extension",
"settings-schema": "org.gnome.shell.extensions.project-hamster",
"shell-version": [
"3.10",
"3.12",
"3.14",
"3.16",
"3.18",
"3.20",
"3.22",
"3.24",
"3.26",
"3.28",
"3.30"
"3.32"
],
"url": "https://github.com/projecthamster/hamster-shell-extension.git",
"uuid": "contact@projecthamster.org"
Expand Down
2 changes: 1 addition & 1 deletion docs/styleguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Code-style

Documentation
---------------
- We use `JSDoc syntax and blog tags <http://usejsdoc.org>`_ to document all
- We use JSDoc syntax and blog tags to document all
our code.
- Headings should capitalise each word.
- Please use ``-`` for unordered lists and ``#.`` for ordered lists unless you
Expand Down
Loading