Skip to content

Commit

Permalink
Upgrade to v0.3.7: Add copy to clipboard for images with tag and add …
Browse files Browse the repository at this point in the history
…sha256

Fixes: #42
  • Loading branch information
Joxit committed Jun 19, 2018
1 parent b78fd35 commit cc62475
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/scripts/tags-static.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/scripts/tags.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/scripts/vendor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/style.css

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

3 changes: 3 additions & 0 deletions gulpfile.js
Expand Up @@ -12,6 +12,7 @@ var riot = require('gulp-riot');
var minifier = require('gulp-uglify/minifier');
var uglify = require('uglify-js-harmony');
var useref = require('gulp-useref');
var injectVersion = require('gulp-inject-version');

gulp.task('html', function() {
var htmlFilter = filter('**/*.html', {restore: true});
Expand Down Expand Up @@ -45,6 +46,7 @@ gulp.task('riot-tag', ['html'], function() {
year: '2016-2018',
organization: 'Jones Magloire @Joxit'
}))
.pipe(injectVersion())
.pipe(gulp.dest('dist/scripts'));
});

Expand All @@ -59,6 +61,7 @@ gulp.task('riot-static-tag', ['html'], function() {
year: '2016-2018',
organization: 'Jones Magloire @Joxit'
}))
.pipe(injectVersion())
.pipe(gulp.dest('dist/scripts'));
});

Expand Down
3 changes: 2 additions & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "docker-registry-ui",
"version": "0.3.6",
"version": "0.3.7",
"scripts": {
"build": "./node_modules/gulp/bin/gulp.js build"
},
Expand All @@ -20,6 +20,7 @@
"gulp-filter": "^5.1.0",
"gulp-htmlmin": "^3.0.0",
"gulp-if": "^2.0.0",
"gulp-inject-version": "^1.0.1",
"gulp-license": "^1.1.0",
"gulp-riot": "^1.1.4",
"gulp-uglify": "^2.1.2",
Expand Down
2 changes: 1 addition & 1 deletion src/tags/app.tag
Expand Up @@ -31,7 +31,7 @@
</main>
<footer>
<material-footer>
<a class="material-footer-logo" href="https://joxit.github.io/docker-registry-ui/">Docker Registry UI</a>
<a class="material-footer-logo" href="https://joxit.github.io/docker-registry-ui/">Docker Registry UI %%GULP_INJECT_VERSION%%</a>
<ul class="material-footer-link-list">
<li>
<a href="https://github.com/Joxit/docker-registry-ui">Contribute on GitHub</a>
Expand Down

0 comments on commit cc62475

Please sign in to comment.