diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2016-12-29 08:14:02 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2016-12-29 08:14:02 +0900 |
| commit | e3ff21577f6a380f76dccb8fa31485065d58e755 (patch) | |
| tree | 7668435b1c1eb57042e3f97039770dfd2ca26fe3 | |
| parent | Fix bug (diff) | |
| download | misskey-e3ff21577f6a380f76dccb8fa31485065d58e755.tar.gz misskey-e3ff21577f6a380f76dccb8fa31485065d58e755.tar.bz2 misskey-e3ff21577f6a380f76dccb8fa31485065d58e755.zip | |
Fix: Add missing resources
| -rw-r--r-- | gulpfile.ts | 1 | ||||
| -rw-r--r-- | src/web/resources/error.jpg | bin | 0 -> 56865 bytes | |||
| -rw-r--r-- | src/web/resources/favicon.ico | bin | 0 -> 360414 bytes | |||
| -rw-r--r-- | src/web/resources/label.svg | 6 | ||||
| -rw-r--r-- | src/web/resources/manifest.json | 1 | ||||
| -rw-r--r-- | src/web/resources/title.svg | 7 |
6 files changed, 15 insertions, 0 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index b01c5f829e..ba75963dac 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -458,6 +458,7 @@ gulp.task('copy:client', [ return es.merge( gulp.src('./resources/**/*').pipe(gulp.dest('./built/web/resources/')), + gulp.src('./src/web/resources/**/*').pipe(gulp.dest('./built/web/resources/')), gulp.src('./src/web/app/desktop/resources/**/*').pipe(gulp.dest('./built/web/resources/desktop/')), gulp.src('./src/web/app/mobile/resources/**/*').pipe(gulp.dest('./built/web/resources/mobile/')), gulp.src('./src/web/app/dev/resources/**/*').pipe(gulp.dest('./built/web/resources/dev/')), diff --git a/src/web/resources/error.jpg b/src/web/resources/error.jpg Binary files differnew file mode 100644 index 0000000000..872b1a3f5d --- /dev/null +++ b/src/web/resources/error.jpg diff --git a/src/web/resources/favicon.ico b/src/web/resources/favicon.ico Binary files differnew file mode 100644 index 0000000000..4fd944c3da --- /dev/null +++ b/src/web/resources/favicon.ico diff --git a/src/web/resources/label.svg b/src/web/resources/label.svg new file mode 100644 index 0000000000..b1f85f3c07 --- /dev/null +++ b/src/web/resources/label.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
+ y="0px" width="96px" height="96px" viewBox="0 0 96 96" enable-background="new 0 0 96 96" xml:space="preserve">
+<polygon fill="#0B8AEA" points="0,45.255 45.254,0 84.854,0 0,84.854 "/>
+</svg>
diff --git a/src/web/resources/manifest.json b/src/web/resources/manifest.json new file mode 100644 index 0000000000..0967ef424b --- /dev/null +++ b/src/web/resources/manifest.json @@ -0,0 +1 @@ +{} diff --git a/src/web/resources/title.svg b/src/web/resources/title.svg new file mode 100644 index 0000000000..d74b754039 --- /dev/null +++ b/src/web/resources/title.svg @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
+ y="0px" width="1024px" height="512px" viewBox="0 256 1024 512" enable-background="new 0 256 1024 512" xml:space="preserve">
+<polyline opacity="0.3" fill="none" stroke="#000000" stroke-width="34" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
+ 896.5,608.5 800.5,416.5 704.5,608.5 608.5,416.5 512.5,608.5 416.5,416.5 320.5,608.5 224.5,416.5 128.5,608.5 "/>
+</svg>
|