Skip to content

Commit

Permalink
Merge pull request #2 from jgkawell:pwa-fixes
Browse files Browse the repository at this point in the history
fixed PWA install
  • Loading branch information
jgkawell authored Jan 30, 2024
2 parents e9acc60 + c2eb3b0 commit 6ef22ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" href="./static/stylesheets/app.css">
<link rel="icon" href="./static/graphicarts/favicon.svg" type="image/svg+xml">
<link rel="alternate icon" href="./static/graphicarts/favicon.png" type="image/png">
<link rel="manifest" href="./manifest.json" />
<link rel="manifest" href="manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script>
window.app = window.app || {}
Expand Down
2 changes: 1 addition & 1 deletion assets/javascripts/sw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const VERSION = "v3.1.0"
const VERSION = "v3.1.1"
const APP_STATIC_RESOURCES = [
"/",
"/static/stylesheets/bootstrap.min.css",
Expand Down
2 changes: 1 addition & 1 deletion server/routes.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (s *Server) handleManifest(c *router.Context) {
"short_name": "yarr",
"description": "yet another rss reader",
"display": "standalone",
"start_url": s.BasePath,
"start_url": "/" + s.BasePath,
"icons": []map[string]interface{}{
{
"src": s.BasePath + "/static/graphicarts/favicon.png",
Expand Down

0 comments on commit 6ef22ff

Please sign in to comment.