Skip to content

Commit

Permalink
Fix update checker not loading
Browse files Browse the repository at this point in the history
  • Loading branch information
austencm committed May 24, 2021
1 parent ed64a01 commit c4bd153
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Feel free to contribute with a [pull request](https://github.com/austencm/youtub
## Releases
| Version | Date | Changelog |
| ----------- | -------------- | --------- |
| **`v2.7.1`** | _May 23, 2021_ | <ul><li>Fix update checker not loading</li></ul> |
| **`v2.7.0`** | _May 23, 2021_ | <ul><li>Make minutes & percent configurable</li><li>Fix a visual bug caused by a YouTube change</li><li>Partial RU translation from @Makishima</li><li>Better logging</li></ul> |
| **`v2.6.0`** | _Apr 17, 2021_ | <ul><li>YouTube changed the subscribe button, fixed detection</li><li>Automatic update checking</li><li>Update to manifest v3</li><li>TR translation from @UtkuGARIP</li><li>Removed code for old YouTube</li></ul> |
| **`v2.5.2`** | _Oct 22, 2019_ | <ul><li>Fix logging code causing error in old YouTube</li></ul> |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "youtube-auto-like",
"description": "Never forget to like a video again.",
"version": "2.7.0",
"version": "2.7.1",
"homepage": "https://github.com/austencm/youtube-auto-like",
"author": "Austen Morgan <[email protected]> (https://github.com/austencm)",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"homepage_url": "https://github.com/austencm/youtube-auto-like",
"version": "2.7.0",
"version": "2.7.1",
"manifest_version": 3,
"default_locale": "en",
"minimum_chrome_version": "88",
Expand All @@ -23,12 +23,12 @@
"content_scripts": [
{
"matches": ["*://youtube.com/*", "*://*.youtube.com/*"],
"js": ["js/content.js"],
"js": ["content.js"],
"run_at": "document_end"
}
],
"background": {
"service_worker": "js/background.js"
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html"
Expand Down
2 changes: 1 addition & 1 deletion src/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ <h1 class="title">YouTube <strong>Auto Like</strong> <span class="version" hidde
</a>
</div>

<script src="js/options.js"></script>
<script src="options.js"></script>

<svg xmlns="http://www.w3.org/2000/svg" style="display: none">
<symbol id="icon-git" viewbox="0 0 512 512">
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module.exports = {
// Where webpack outputs the assets and bundles
output: {
path: paths.build,
filename: 'js/[name].js',
filename: '[name].js',
},

// Customize the webpack build process
Expand Down

0 comments on commit c4bd153

Please sign in to comment.