build: release 2.4.0 🚀

This commit is contained in:
Joxit 2023-03-18 15:13:17 +01:00
parent a8227d9cba
commit e2f2850f41
No known key found for this signature in database
GPG key ID: F526592B8E012263
5 changed files with 90 additions and 52 deletions

View file

@ -1,5 +1,5 @@
<!-- <!--
Copyright (C) 2016-2018 Jones Magloire @Joxit Copyright (C) 2016-2023 Jones Magloire @Joxit
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by it under the terms of the GNU Affero General Public License as published by
@ -16,16 +16,19 @@
--> -->
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8" />
<link rel="stylesheet" href="../dist/docker-registry-ui.css"> <link rel="stylesheet" href="../dist/docker-registry-ui.css" />
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:locale" content="en_US" /> <meta property="og:locale" content="en_US" />
<meta name="description" <meta
content="This is the live demo for Docker Registry User Interface. Try it now! Sources : https://github.com/Joxit/docker-registry-ui" /> name="description"
<meta property="og:description" content="This is the live demo for Docker Registry User Interface. Try it now! Sources : https://github.com/Joxit/docker-registry-ui"
content="This is the live demo for Docker Registry User Interface. Try it now! Sources : https://github.com/Joxit/docker-registry-ui" /> />
<meta
property="og:description"
content="This is the live demo for Docker Registry User Interface. Try it now! Sources : https://github.com/Joxit/docker-registry-ui"
/>
<link rel="canonical" href="https://joxit.dev/docker-registry-ui/demo/" /> <link rel="canonical" href="https://joxit.dev/docker-registry-ui/demo/" />
<meta property="og:url" content="https://joxit.dev/docker-registry-ui/demo/" /> <meta property="og:url" content="https://joxit.dev/docker-registry-ui/demo/" />
<meta property="og:site_name" content="Live Demo | Docker Registry User Interface" /> <meta property="og:site_name" content="Live Demo | Docker Registry User Interface" />
@ -36,35 +39,49 @@
</head> </head>
<body> <body>
<docker-registry-ui registry-url="" name="Demo Docker Registry UI" pull-url="" show-content-digest="true" <docker-registry-ui
is-image-remove-activated="true" catalog-elements-limit="1000" single-registry="false" default-registries="https://joxit.dev/docker-registry-demo"> registry-url=""
name="Demo Docker Registry UI"
pull-url=""
show-content-digest="true"
is-image-remove-activated="true"
catalog-elements-limit="1000"
single-registry="false"
default-registries="https://joxit.dev/docker-registry-demo"
show-catalog-nb-tags="true"
theme="auto"
/>
<script> <script>
if (localStorage.getItem('registryServer')) { if (localStorage.getItem('registryServer')) {
localStorage.setItem('registryServer', localStorage.setItem(
localStorage.getItem('registryServer').replace( 'registryServer',
localStorage
.getItem('registryServer')
.replace(
'https://raw.githubusercontent.com/Joxit/docker-registry-ui/master/demo', 'https://raw.githubusercontent.com/Joxit/docker-registry-ui/master/demo',
'https://joxit.dev/docker-registry-demo' 'https://joxit.dev/docker-registry-demo'
) )
) );
} }
</script> </script>
<script src="../dist/docker-registry-ui.js"></script> <script src="../dist/docker-registry-ui.js"></script>
<script> <script>
(function (i, s, o, g, r, a, m) { (function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () { (i[r] =
(i[r].q = i[r].q || []).push(arguments) i[r] ||
}, i[r].l = 1 * new Date(); function () {
a = s.createElement(o), (i[r].q = i[r].q || []).push(arguments);
m = s.getElementsByTagName(o)[0]; }),
(i[r].l = 1 * new Date());
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
a.async = 1; a.async = 1;
a.src = g; a.src = g;
m.parentNode.insertBefore(a, m) m.parentNode.insertBefore(a, m);
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga'); })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'G-T158HYBVZ2', 'auto'); ga('create', 'G-T158HYBVZ2', 'auto');
ga('send', 'pageview'); ga('send', 'pageview');
</script> </script>
</body> </body>
</html> </html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2
dist/index.html vendored
View file

@ -1,5 +1,5 @@
<!-- <!--
Copyright (C) 2016-2021 Jones Magloire @Joxit Copyright (C) 2016-2023 Jones Magloire @Joxit
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by it under the terms of the GNU Affero General Public License as published by

View file

@ -1,6 +1,6 @@
{ {
"name": "docker-registry-ui", "name": "docker-registry-ui",
"version": "2.3.3", "version": "2.4.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"format": "npm run format-html && npm run format-js && npm run format-riot", "format": "npm run format-html && npm run format-js && npm run format-riot",