広告ブロッカーの警告を削除 (#5408)
* remove f*ckadbloack * follow-buttonが消されないように * revert version * remove locales
This commit is contained in:
parent
c033464b92
commit
a7b710a2f8
7 changed files with 4 additions and 39 deletions
|
@ -19,9 +19,6 @@ common:
|
||||||
drive: "ドライブ"
|
drive: "ドライブ"
|
||||||
drive-desc: "以前投稿したことのある画像をまた投稿したくなったことはありませんか?もしくは、アップロードしたファイルをフォルダ分けして整理したくなったことはありませんか?Misskeyの根幹に組み込まれたドライブ機能によってそれらが解決します。ファイルの共有も簡単です。"
|
drive-desc: "以前投稿したことのある画像をまた投稿したくなったことはありませんか?もしくは、アップロードしたファイルをフォルダ分けして整理したくなったことはありませんか?Misskeyの根幹に組み込まれたドライブ機能によってそれらが解決します。ファイルの共有も簡単です。"
|
||||||
outro: "他にもMisskeyにしかない機能はまだまだあるので、ぜひあなた自身の目で確かめてください。Misskeyは分散型SNSなので、このインスタンスが気に入らなければ他のインスタンスを試すこともできます。それでは、GLHF!"
|
outro: "他にもMisskeyにしかない機能はまだまだあるので、ぜひあなた自身の目で確かめてください。Misskeyは分散型SNSなので、このインスタンスが気に入らなければ他のインスタンスを試すこともできます。それでは、GLHF!"
|
||||||
adblock:
|
|
||||||
detected: "広告ブロッカーを無効にしてください"
|
|
||||||
warning: "<strong>Misskeyは広告を掲載していません</strong>が、広告をブロックする機能が有効だと一部の機能が利用できなかったり、不具合が発生する場合があります。"
|
|
||||||
application-authorization: "アプリの連携"
|
application-authorization: "アプリの連携"
|
||||||
close: "閉じる"
|
close: "閉じる"
|
||||||
do-not-copy-paste: "ここにコードを入力したり張り付けたりしないでください。アカウントが不正利用される可能性があります。"
|
do-not-copy-paste: "ここにコードを入力したり張り付けたりしないでください。アカウントが不正利用される可能性があります。"
|
||||||
|
|
|
@ -130,7 +130,6 @@
|
||||||
"feed": "3.0.0",
|
"feed": "3.0.0",
|
||||||
"file-type": "12.2.0",
|
"file-type": "12.2.0",
|
||||||
"fluent-ffmpeg": "2.1.2",
|
"fluent-ffmpeg": "2.1.2",
|
||||||
"fuckadblock": "3.2.1",
|
|
||||||
"gulp": "4.0.2",
|
"gulp": "4.0.2",
|
||||||
"gulp-cssnano": "2.1.3",
|
"gulp-cssnano": "2.1.3",
|
||||||
"gulp-imagemin": "6.1.0",
|
"gulp-imagemin": "6.1.0",
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
declare const fuckAdBlock: any;
|
|
||||||
|
|
||||||
export default ($root: any) => {
|
|
||||||
require('fuckadblock');
|
|
||||||
|
|
||||||
function adBlockDetected() {
|
|
||||||
$root.dialog({
|
|
||||||
title: $root.$t('@.adblock.detected'),
|
|
||||||
text: $root.$t('@.adblock.warning')
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fuckAdBlock === undefined) {
|
|
||||||
adBlockDetected();
|
|
||||||
} else {
|
|
||||||
fuckAdBlock.onDetected(adBlockDetected);
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -18,7 +18,7 @@
|
||||||
<div class="description" v-if="user.description" :title="user.description">
|
<div class="description" v-if="user.description" :title="user.description">
|
||||||
<mfm :text="user.description" :is-note="false" :author="user" :i="$store.state.i" :custom-emojis="user.emojis" :plain="true" :nowrap="true"/>
|
<mfm :text="user.description" :is-note="false" :author="user" :i="$store.state.i" :custom-emojis="user.emojis" :plain="true" :nowrap="true"/>
|
||||||
</div>
|
</div>
|
||||||
<mk-follow-button class="follow-button" v-if="$store.getters.isSignedIn && user.id != $store.state.i.id" :user="user" mini/>
|
<mk-follow-button class="koudoku-button" v-if="$store.getters.isSignedIn && user.id != $store.state.i.id" :user="user" mini/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<button class="more" :class="{ fetching: moreFetching }" v-if="more" @click="fetchMore()" :disabled="moreFetching">
|
<button class="more" :class="{ fetching: moreFetching }" v-if="more" @click="fetchMore()" :disabled="moreFetching">
|
||||||
|
@ -134,7 +134,7 @@ export default Vue.extend({
|
||||||
font-size 14px
|
font-size 14px
|
||||||
padding-right 40px
|
padding-right 40px
|
||||||
|
|
||||||
> .follow-button
|
> .koudoku-button
|
||||||
position absolute
|
position absolute
|
||||||
top 8px
|
top 8px
|
||||||
right 0
|
right 0
|
||||||
|
|
|
@ -9,7 +9,6 @@ import VueRouter from 'vue-router';
|
||||||
import './style.styl';
|
import './style.styl';
|
||||||
|
|
||||||
import init from '../init';
|
import init from '../init';
|
||||||
import fuckAdBlock from '../common/scripts/fuck-ad-block';
|
|
||||||
import composeNotification from '../common/scripts/compose-notification';
|
import composeNotification from '../common/scripts/compose-notification';
|
||||||
|
|
||||||
import MkHome from './views/home/home.vue';
|
import MkHome from './views/home/home.vue';
|
||||||
|
@ -203,13 +202,6 @@ init(async (launch, os) => {
|
||||||
// Launch the app
|
// Launch the app
|
||||||
const [app, _] = launch(router);
|
const [app, _] = launch(router);
|
||||||
|
|
||||||
if (os.store.getters.isSignedIn) {
|
|
||||||
/**
|
|
||||||
* Fuck AD Block
|
|
||||||
*/
|
|
||||||
fuckAdBlock(app);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Init Notification
|
* Init Notification
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
<p>{{ $t('followers') }}</p><span>{{ u.followersCount }}</span>
|
<p>{{ $t('followers') }}</p><span>{{ u.followersCount }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<mk-follow-button class="follow-button" v-if="$store.getters.isSignedIn && u.id != $store.state.i.id" :user="u" mini/>
|
<mk-follow-button class="koudoku-button" v-if="$store.getters.isSignedIn && u.id != $store.state.i.id" :user="u" mini/>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -156,7 +156,7 @@ export default Vue.extend({
|
||||||
font-size 1em
|
font-size 1em
|
||||||
color var(--primary)
|
color var(--primary)
|
||||||
|
|
||||||
> .follow-button
|
> .koudoku-button
|
||||||
position absolute
|
position absolute
|
||||||
top 8px
|
top 8px
|
||||||
right 8px
|
right 8px
|
||||||
|
|
|
@ -4554,11 +4554,6 @@ fsevents@^1.2.7:
|
||||||
nan "^2.12.1"
|
nan "^2.12.1"
|
||||||
node-pre-gyp "^0.12.0"
|
node-pre-gyp "^0.12.0"
|
||||||
|
|
||||||
fuckadblock@3.2.1:
|
|
||||||
version "3.2.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/fuckadblock/-/fuckadblock-3.2.1.tgz#17fa3237a5e15c86613406b911e608191a3e62e2"
|
|
||||||
integrity sha1-F/oyN6XhXIZhNAa5EeYIGRo+YuI=
|
|
||||||
|
|
||||||
function-bind@^1.1.1:
|
function-bind@^1.1.1:
|
||||||
version "1.1.1"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
||||||
|
|
Loading…
Reference in a new issue