Skip to content

Commit

Permalink
Merge pull request #11 from bgins/release-0.4.5
Browse files Browse the repository at this point in the history
Release 0.4.5
  • Loading branch information
bgins authored Mar 27, 2021
2 parents a0afc51 + eb13951 commit 298d98a
Show file tree
Hide file tree
Showing 11 changed files with 225 additions and 119 deletions.
293 changes: 178 additions & 115 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "moon-forge",
"version": "0.4.4",
"version": "0.4.5",
"description": "A forge for lunar instruments",
"scripts": {
"start": "npm install && npm run build:dev && npm run dev",
Expand Down Expand Up @@ -38,9 +38,9 @@
},
"dependencies": {
"rxjs": "^6.6.3",
"standardized-audio-context": "^25.1.3",
"standardized-audio-context": "^25.1.12",
"webmidi": "^2.5.1",
"webnative": "^0.21.4"
"webnative": "^0.23.2"
},
"browserslist": [
"last 1 Chrome versions"
Expand Down
Binary file removed public/images/favicon.ico
Binary file not shown.
Binary file added public/images/favicons/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicons/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicons/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicons/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicons/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/favicons/favicon.ico
Binary file not shown.
38 changes: 38 additions & 0 deletions src/Pages/Top.elm
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,44 @@ view { params } =
"""
]
]
, column
[ width fill, spacing 15 ]
[ paragraph
[ Font.center
, Font.family Fonts.cinzel
, Font.size 36
]
[ text "Proudly 0data"
]
, paragraph
[ Font.family Fonts.quattrocento
, Font.size 20
]
[ text "Moon Forge is proud to be part of the "
, newTabLink
[ Font.color Colors.lightPurple
, Font.bold
, Border.widthEach { top = 0, right = 0, bottom = 1, left = 0 }
, Border.color Colors.darkGrey
, mouseOver
[ Border.color Colors.lightPurple
]
]
{ url = "https://ring.0data.app/", label = text "0data Appring" }
, text ". 0data apps keep your data under your control. Visit a "
, newTabLink
[ Font.color Colors.lightPurple
, Font.bold
, Border.widthEach { top = 0, right = 0, bottom = 1, left = 0 }
, Border.color Colors.darkGrey
, mouseOver
[ Border.color Colors.lightPurple
]
]
{ url = "https://ring.0data.app/#random", label = text "random site " }
, text "in the ring!"
]
]
]
]
}
7 changes: 6 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<link rel="icon" href="../public/images/favicon.ico" />
<link rel="shortcut icon" href="../public/images/favicons/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="../public/images/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../public/images/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../public/images/favicons/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="192x192" href="../public/images/favicons/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="../public/images/favicons/android-chrome-512x512.png">
<link rel="stylesheet" href="../public/css/main.css" />
<title>Moon Forge</title>
</head>
Expand Down

0 comments on commit 298d98a

Please sign in to comment.