Skip to content

Commit

Permalink
versioned to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brunurd committed Jun 17, 2020
1 parent c3bbccc commit ffbc90c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = {
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
indent: ['error', 2],
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

---

## [1.?.?] - ???
## [1.5.0] - 2020-06-16

### Added

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,3 @@ A client to watch youtube videos (plus: or any website) outside the browser and
[linux-download]: https://github.com/brunurd/youtube-companion-plus/releases/download/v1.4.1/Youtube.Companion.Plus-1.4.1.AppImage
[mac-download]: https://github.com/brunurd/youtube-companion-plus/releases/download/v1.4.1/Youtube.Companion.Plus-1.4.1.dmg
[win-download]: https://github.com/brunurd/youtube-companion-plus/releases/download/v1.4.1/Youtube.Companion.Plus.1.4.1.exe

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "youtube-companion-plus",
"version": "1.4.1",
"version": "1.5.0",
"description": "A client to watch youtube videos outside the browser and pin on top of everything.",
"main": "public/main.min.js",
"build": {
Expand Down Expand Up @@ -41,8 +41,8 @@
"electron": "electron .",
"debug": "electron . debug",
"test": "jest",
"lint": "eslint src/*.js public/scripts.js",
"lint:fix": "eslint src/*.js public/scripts.js --fix",
"lint": "eslint src/*.js",
"lint:fix": "eslint src/*.js --fix",
"prettier": "prettier --write .",
"css": "stylus style/main.styl --out public/style.min.css",
"css:watch": "stylus style/main.styl --out public/style.min.css --watch",
Expand Down
3 changes: 1 addition & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@
<script defer src="build/bundle.js"></script>
</head>

<body>
</body>
<body></body>
</html>
2 changes: 1 addition & 1 deletion src/components/store.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { writable } from 'svelte/store';

export const url = writable('https://m.youtube.com');
export const webview = writable({});
export const webview = writable({});

0 comments on commit ffbc90c

Please sign in to comment.