Skip to content

Commit

Permalink
build: release 2.3.0 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
Joxit committed Sep 20, 2022
1 parent fb81859 commit c1f6c43
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/docker-registry-ui.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@
read-only-registries="${READ_ONLY_REGISTRIES}"
show-catalog-nb-tags="${SHOW_CATALOG_NB_TAGS}"
history-custom-labels="${HISTORY_CUSTOM_LABELS}"
use-control-cache-header="${USE_CONTROL_CACHE_HEADER}"
></docker-registry-ui><script src="docker-registry-ui.js"></script></body></html>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docker-registry-ui",
"version": "2.2.2",
"version": "2.3.0",
"scripts": {
"format": "npm run format-html && npm run format-js && npm run format-riot",
"format-html": "find src rollup rollup.config.js -name '*.html' -exec prettier --config .prettierrc -w --parser html {} \\;",
Expand Down
2 changes: 1 addition & 1 deletion src/components/docker-registry-ui.riot
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<a href="https://github.com/Joxit/docker-registry-ui">Contribute on GitHub</a>
</li>
<li>
<a href="https://github.com/Joxit/docker-registry-ui/blob/main/LICENSE">Privacy &amp; Terms</a>
<a href="https://github.com/Joxit/docker-registry-ui/blob/main/LICENSE">License AGPL-3.0</a>
</li>
</ul>
</material-footer>
Expand Down
5 changes: 4 additions & 1 deletion src/scripts/docker-image.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,10 @@ export class DockerImage {
} else if (this.status === 404) {
self.opts.onNotify(`Blobs for ${self.name}:${self.tag} not found: blob '${self.blobs}'`, true);
} else if (!this.responseText) {
self.opts.onNotify(`Can"t get blobs for ${self.name}:${self.tag}: blob '${self.blobs}' (no message error)`, true);
self.opts.onNotify(
`Can"t get blobs for ${self.name}:${self.tag}: blob '${self.blobs}' (no message error)`,
true
);
} else {
self.opts.onNotify(this.responseText);
}
Expand Down

0 comments on commit c1f6c43

Please sign in to comment.