Skip to content

Commit e2f2850

Browse files
committed
build: release 2.4.0 🚀
1 parent a8227d9 commit e2f2850

File tree

5 files changed

+90
-52
lines changed

5 files changed

+90
-52
lines changed

demo/index.html

+63-46
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright (C) 2016-2018 Jones Magloire @Joxit
2+
Copyright (C) 2016-2023 Jones Magloire @Joxit
33
44
This program is free software: you can redistribute it and/or modify
55
it under the terms of the GNU Affero General Public License as published by
@@ -16,55 +16,72 @@
1616
-->
1717
<!DOCTYPE html>
1818
<html>
19+
<head>
20+
<meta charset="UTF-8" />
21+
<link rel="stylesheet" href="../dist/docker-registry-ui.css" />
22+
<meta name="viewport" content="width=device-width, initial-scale=1" />
23+
<meta property="og:locale" content="en_US" />
24+
<meta
25+
name="description"
26+
content="This is the live demo for Docker Registry User Interface. Try it now! Sources : https://github.com/Joxit/docker-registry-ui"
27+
/>
28+
<meta
29+
property="og:description"
30+
content="This is the live demo for Docker Registry User Interface. Try it now! Sources : https://github.com/Joxit/docker-registry-ui"
31+
/>
32+
<link rel="canonical" href="https://joxit.dev/docker-registry-ui/demo/" />
33+
<meta property="og:url" content="https://joxit.dev/docker-registry-ui/demo/" />
34+
<meta property="og:site_name" content="Live Demo | Docker Registry User Interface" />
35+
<meta name="twitter:card" content="summary" />
36+
<meta name="twitter:site" content="@Joxit" />
37+
<meta name="twitter:creator" content="@Jones Magloire" />
38+
<title>Live Demo | Docker Registry User Interface</title>
39+
</head>
1940

20-
<head>
21-
<meta charset="UTF-8">
22-
<link rel="stylesheet" href="../dist/docker-registry-ui.css">
23-
<meta name="viewport" content="width=device-width, initial-scale=1">
24-
<meta property="og:locale" content="en_US" />
25-
<meta name="description"
26-
content="This is the live demo for Docker Registry User Interface. Try it now! Sources : https://github.com/Joxit/docker-registry-ui" />
27-
<meta property="og:description"
28-
content="This is the live demo for Docker Registry User Interface. Try it now! Sources : https://github.com/Joxit/docker-registry-ui" />
29-
<link rel="canonical" href="https://joxit.dev/docker-registry-ui/demo/" />
30-
<meta property="og:url" content="https://joxit.dev/docker-registry-ui/demo/" />
31-
<meta property="og:site_name" content="Live Demo | Docker Registry User Interface" />
32-
<meta name="twitter:card" content="summary" />
33-
<meta name="twitter:site" content="@Joxit" />
34-
<meta name="twitter:creator" content="@Jones Magloire" />
35-
<title>Live Demo | Docker Registry User Interface</title>
36-
</head>
37-
38-
<body>
39-
<docker-registry-ui registry-url="" name="Demo Docker Registry UI" pull-url="" show-content-digest="true"
40-
is-image-remove-activated="true" catalog-elements-limit="1000" single-registry="false" default-registries="https://joxit.dev/docker-registry-demo">
41+
<body>
42+
<docker-registry-ui
43+
registry-url=""
44+
name="Demo Docker Registry UI"
45+
pull-url=""
46+
show-content-digest="true"
47+
is-image-remove-activated="true"
48+
catalog-elements-limit="1000"
49+
single-registry="false"
50+
default-registries="https://joxit.dev/docker-registry-demo"
51+
show-catalog-nb-tags="true"
52+
theme="auto"
53+
/>
4154
<script>
4255
if (localStorage.getItem('registryServer')) {
43-
localStorage.setItem('registryServer',
44-
localStorage.getItem('registryServer').replace(
45-
'https://raw.githubusercontent.com/Joxit/docker-registry-ui/master/demo',
46-
'https://joxit.dev/docker-registry-demo'
47-
)
48-
)
56+
localStorage.setItem(
57+
'registryServer',
58+
localStorage
59+
.getItem('registryServer')
60+
.replace(
61+
'https://raw.githubusercontent.com/Joxit/docker-registry-ui/master/demo',
62+
'https://joxit.dev/docker-registry-demo'
63+
)
64+
);
4965
}
5066
</script>
5167
<script src="../dist/docker-registry-ui.js"></script>
52-
<script>
53-
(function (i, s, o, g, r, a, m) {
54-
i['GoogleAnalyticsObject'] = r;
55-
i[r] = i[r] || function () {
56-
(i[r].q = i[r].q || []).push(arguments)
57-
}, i[r].l = 1 * new Date();
58-
a = s.createElement(o),
59-
m = s.getElementsByTagName(o)[0];
60-
a.async = 1;
61-
a.src = g;
62-
m.parentNode.insertBefore(a, m)
63-
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
64-
65-
ga('create', 'G-T158HYBVZ2', 'auto');
66-
ga('send', 'pageview');
67-
</script>
68-
</body>
68+
<script>
69+
(function (i, s, o, g, r, a, m) {
70+
i['GoogleAnalyticsObject'] = r;
71+
(i[r] =
72+
i[r] ||
73+
function () {
74+
(i[r].q = i[r].q || []).push(arguments);
75+
}),
76+
(i[r].l = 1 * new Date());
77+
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
78+
a.async = 1;
79+
a.src = g;
80+
m.parentNode.insertBefore(a, m);
81+
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
6982

70-
</html>
83+
ga('create', 'G-T158HYBVZ2', 'auto');
84+
ga('send', 'pageview');
85+
</script>
86+
</body>
87+
</html>

dist/docker-registry-ui.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/docker-registry-ui.js

+24-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.html

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docker-registry-ui",
3-
"version": "2.3.3",
3+
"version": "2.4.0",
44
"type": "module",
55
"scripts": {
66
"format": "npm run format-html && npm run format-js && npm run format-riot",

0 commit comments

Comments
 (0)