From 3266f3948a3e493d119881b263c181a57fc3dc7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Acid=20Chicken=20=28=E7=A1=AB=E9=85=B8=E9=B6=8F=29?= Date: Sun, 26 Aug 2018 17:55:06 +0900 Subject: [PATCH 1/2] Update README.md [AUTOGEN] --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c1b24339..32a9baede 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,7 @@ Misskey is using Crowdin for l10n. negao ne_moni Melilot +Axella べすれい gutfuckllc Peter G. @@ -66,6 +67,7 @@ Misskey is using Crowdin for l10n. negao ne_moni Melilot +Axella べすれい gutfuckllc Peter G. @@ -89,7 +91,7 @@ Misskey is using Crowdin for l10n. fujishan -**Last updated:** Wed, 22 Aug 2018 05:25:06 UTC +**Last updated:** Sun, 26 Aug 2018 08:55:06 UTC :four_leaf_clover: Copyright From fd07f00d140d8a703f8f3438d42eb014aabe91fc Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 1 Sep 2018 07:33:04 +0900 Subject: [PATCH 2/2] #2551 --- webpack.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.config.ts b/webpack.config.ts index e520c59a9..ad67530f5 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -5,6 +5,7 @@ import * as fs from 'fs'; import * as webpack from 'webpack'; import chalk from 'chalk'; +import rndstr from 'rndstr'; const { VueLoaderPlugin } = require('vue-loader'); const jsonImporter = require('node-sass-json-importer'); const minifyHtml = require('html-minifier').minify; @@ -19,7 +20,7 @@ const constants = require('./src/const.json'); const locales = require('./locales'); const meta = require('./package.json'); -const version = meta.clientVersion; +const version = meta.clientVersion + '-' + rndstr({ length: 8, chars: '0-9a-z' }); const codename = meta.codename; declare var global: {