Skip to content

Commit

Permalink
Bump to 4.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jgestin committed Oct 25, 2024
1 parent 3aacbb7 commit 1b1a7fd
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Chrome and Firefox web extension for Fasterize

# Install

- [Firefox](https://github.com/fasterize/fasterize-web-extension/releases/download/4.1.1/fasterize_status-4.1.1.xpi)
- [Firefox](https://github.com/fasterize/fasterize-web-extension/releases/download/4.1.2/fasterize_status-4.1.2.xpi)
- [Chrome](https://chrome.google.com/webstore/detail/fasterize-status/pophpmnchlcddhhilmnopbahlaohdfig)

# Dev
Expand Down
2 changes: 1 addition & 1 deletion app/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Fasterize Status",
"version": "4.1.1",
"version": "4.1.2",
"manifest_version": 3,
"description": "See detailed information on a fasterized page",
"icons": {
Expand Down
21 changes: 14 additions & 7 deletions app/popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,31 +167,38 @@ <h3><strong id="statusCode"></strong></h3>
<table class="table">
<tbody>
<tr>
<td><img src="/icons/indicator/cachedByBrowser.png"/></td>
<td style="text-align: center;"><img width="20"
height="20" src="/icons/indicator/cachedByBrowser.png"/></td>
<td>The page is served from the Fasterize cache or CDN cache</td>
</tr>
<tr>
<td><img src="/icons/indicator/optimizedByFasterize.png"/></td>
<td style="text-align: center;"><img width="20"
height="20" src="/icons/indicator/optimizedByFasterize.png"/></td>
<td>The page is optimized</td>
</tr>
<tr>
<td><img src="/icons/indicator/inProgress.png"/></td>
<td style="text-align: center;"><img width="20"
height="20" src="/icons/indicator/inProgress.png"/></td>
<td>The optimization is in progress. The page is not fully optimized</td>
</tr>
<tr>
<td><img src="/icons/indicator/notOptimized.png"/></td>
<td style="text-align: center;"><img width="20"
height="20" src="/icons/indicator/notOptimized.png"/></td>
<td>The page is not optimizable</td>
</tr>
<tr>
<td><img src="/icons/indicator/error.png"/></td>
<td style="text-align: center;"><img width="20"
height="20" src="/icons/indicator/error.png"/></td>
<td>The optimization fails</td>
</tr>
<tr>
<td><img src="/icons/indicator/headersHints.png"/></td>
<td style="text-align: center;"><img width="20"
height="20" src="/icons/indicator/headersHints.png"/></td>
<td>Some assets are preloaded</td>
</tr>
<tr>
<td><img src="/icons/indicator/noFasterize.png"/></td>
<td style="text-align: center;"><img width="20"
height="20" src="/icons/indicator/noFasterize.png"/></td>
<td>Site doesn't use Fasterize (what a shame!)</td>
</tr>
</tbody>
Expand Down
4 changes: 4 additions & 0 deletions app/update-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,10 @@
{
"version": "4.1.1",
"update_link": "https://github.com/fasterize/fasterize-web-extension/releases/download/4.1.1/fasterize_status-4.1.1.xpi"
},
{
"version": "4.1.2",
"update_link": "https://github.com/fasterize/fasterize-web-extension/releases/download/4.1.2/fasterize_status-4.1.2.xpi"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Fasterize-Status",
"version": "4.1.1",
"version": "4.1.2",
"description": "See the status of the request.",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit 1b1a7fd

Please sign in to comment.