Skip to content

Commit 3d405dd

Browse files
authored
Merge pull request #114 from jorgnyg/master
2 parents fa3bf2c + 3b4294b commit 3d405dd

4 files changed

Lines changed: 34 additions & 5 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sudo: required
55

66
language: go
77
go:
8-
- "1.13.1"
8+
- "1.18.1"
99

1010
addons:
1111
apt:

Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ license-dir:
2222
mkdir -p build/license || true
2323

2424
download-tools:
25-
GO111MODULE=off go get -u golang.org/x/lint/golint
26-
GO111MODULE=off go get -u golang.org/x/tools/cmd/goimports
27-
GO111MODULE=off go get -u github.com/gobuffalo/packr/v2/packr2
25+
go install golang.org/x/tools/cmd/goimports@v0.1.10
26+
go install github.com/gobuffalo/packr/v2/packr2@v2.7.1
27+
2828

2929
generate-go:
3030
go run hack/gqlgen/gqlgen.go
@@ -36,7 +36,6 @@ generate: generate-go generate-js
3636

3737
lint-go:
3838
go vet ./...
39-
golint -set_exit_status $(shell go list ./...)
4039
goimports -l $(shell find . -type f -name '*.go' -not -path "./vendor/*")
4140

4241
lint-js:

ui/public/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/favicon-16x16.png" />
99
<link rel="icon" type="image/png" sizes="192x192" href="%PUBLIC_URL%/favicon-192x192.png" />
1010
<link rel="icon" type="image/png" sizes="256x256" href="%PUBLIC_URL%/favicon-256x256.png" />
11+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
1112

1213
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
1314
<meta name="theme-color" content="#000000" />

ui/public/manifest.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "Traggo",
3+
"short_name": "Traggo",
4+
"description": "Tag-based time tracking",
5+
"theme_color": "#9bd7fe",
6+
"background_color": "#3f51b5",
7+
"display": "standalone",
8+
"scope": "/",
9+
"start_url": "/",
10+
"icons": [
11+
{
12+
"src": "/favicon-16x16.png",
13+
"sizes": "16x16",
14+
"type": "image/png"
15+
}, {
16+
"src": "/favicon-32x32.png",
17+
"sizes": "32x32",
18+
"type": "image/png"
19+
}, {
20+
"src": "/favicon-192x192.png",
21+
"sizes": "192x192",
22+
"type": "image/png"
23+
}, {
24+
"src": "/favicon-256x256.png",
25+
"sizes": "256x256",
26+
"type": "image/png"
27+
}
28+
]
29+
}

0 commit comments

Comments
 (0)