Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee committed Dec 8, 2020
1 parent ea13da4 commit 63dd71e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"productName": "Beaker Browser",
"description": "An Experimental Peer-to-Peer Web Browser.",
"homepage": "https://beakerbrowser.com/",
"version": "1.0.0",
"version": "1.1.0",
"author": "Blue Link Labs <support@beakerbrowser.com>",
"copyright": "© 2020, Blue Link Labs",
"main": "main.build.js",
Expand Down
4 changes: 2 additions & 2 deletions app/userland/desktop/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import css from '../css/main.css.js'
import 'beaker://app-stdlib/js/com/img-fallbacks.js'

const VERSION_ID = (major, minor, patch, pre) => major * 1e9 + minor * 1e6 + patch * 1e3 + pre
const CURRENT_VERSION = VERSION_ID(1, 0, 0, 8)
const RELEASE = { label: '1.0', url: 'https://beakerbrowser.com/2020/12/02/beaker-1-0.html' }
const CURRENT_VERSION = VERSION_ID(1, 1, 0, 0)
const RELEASE = { label: '1.1', url: 'https://beakerbrowser.com/2020/12/08/beaker-1.1.html' }

class DesktopApp extends LitElement {
static get properties () {
Expand Down

0 comments on commit 63dd71e

Please sign in to comment.