Skip to content

Commit

Permalink
Merge pull request #65 from discoveryjs/progressbar-overlap
Browse files Browse the repository at this point in the history
Fixed progressbar overlapping
  • Loading branch information
exdis authored Apr 1, 2021
2 parents cc7d43a + 46eb37c commit b48830f
Show file tree
Hide file tree
Showing 5 changed files with 521 additions and 581 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
## 1.10.2 (18-02-2020)
## 1.10.3 (01-04-2021)

* Fixed bug, when extension could overlap part of content on pages with plain/text

## 1.10.2 (18-02-2021)

* Fixed manifest to get icons accessible

## 1.10.1 (18-02-2020)
## 1.10.1 (18-02-2021)

* Fixed bug where an extension might not load on some pages with strict CSP rules
* Updated `discovery` to `1.0.0-beta.55`

## 1.10.0 (09-02-2020)
## 1.10.0 (09-02-2021)

* Build system reworked using `esbuild`
* Fixed bug with darkmode styles applied to the part of the page in Chrome
Expand Down
5 changes: 3 additions & 2 deletions core/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,16 @@ const buildAll = async function() {
console.log('Building bundles:'); // eslint-disable-line no-console

for (const browser of browsers) {
console.log(` ${browser}...`);
console.log(` ${browser}...`); // eslint-disable-line no-console

try {
await build(browser);
} catch {
return;
}
}

console.log(' OK');
console.log(' OK'); // eslint-disable-line no-console
};

(async function() {
Expand Down
Loading

0 comments on commit b48830f

Please sign in to comment.