2018-08-05 02:26:34 +10:00
<!doctype html>
2019-04-15 01:45:04 +10:00
< html lang = "ja" style = "overflow:scroll" >
2019-04-11 13:52:38 +10:00
2018-08-05 02:26:34 +10:00
< head >
< title > Settings - TheDesk< / title >
2019-02-05 13:33:32 +11:00
<!--
< script type = "text/javascript" >
var _jipt = [];
_jipt.push(['project', 'thedesk']);
< / script >
< script type = "text/javascript" src = "https://cdn.crowdin.com/jipt/jipt.js" > < / script >
-->
2018-08-05 02:26:34 +10:00
< meta content = "width=device-width,initial-scale=1.0" name = "viewport" >
2019-06-22 01:22:45 +10:00
< link href = "../../node_modules/materialize-css/dist/css/materialize.css" type = "text/css" rel = "stylesheet" >
2018-09-12 02:49:41 +10:00
< link href = "../../css/themes.css" type = "text/css" rel = "stylesheet" >
2019-03-08 05:19:26 +11:00
< link href = "../../css/pickr.css" type = "text/css" rel = "stylesheet" >
2018-09-12 02:49:41 +10:00
< link href = "../../css/master.css" type = "text/css" rel = "stylesheet" >
< link href = '../../css/font-awesome.css' rel = 'stylesheet' type = 'text/css' >
2018-08-05 02:26:34 +10:00
< link href = "https://fonts.googleapis.com/icon?family=Material+Icons|Open+Sans:300" rel = "stylesheet" >
< meta charset = "utf-8" >
2019-04-11 13:52:38 +10:00
< style >
input {
max-height: 50px !important
}
2019-05-19 17:39:30 +10:00
2019-04-11 13:52:38 +10:00
.pcr-result {
height: 1rem !important;
}
< / style >
2018-08-05 02:26:34 +10:00
< / head >
2019-04-11 13:52:38 +10:00
2018-08-05 02:26:34 +10:00
< body id = "mainView" style = "overflow-y:scroll" >
2019-06-22 01:22:45 +10:00
< script type = "text/javascript" src = "../../node_modules/jquery/dist/jquery.js" > < / script >
2019-04-11 13:52:38 +10:00
< script type = "text/javascript" src = "../../js/platform/first.js" > < / script >
2019-06-22 01:22:45 +10:00
< script type = "text/javascript" src = "../../node_modules/materialize-css/dist/js/materialize.js" > < / script >
2019-04-11 13:52:38 +10:00
< script type = "text/javascript" src = "../../js/lang/lang.ja.js" > < / script >
< script src = "https://unpkg.com/json5@^2.0.0/dist/index.min.js" > < / script >
< script src = "../../node_modules/vue/dist/vue.min.js" > < / script >
< script type = "text/javascript" src = "setting.vue.js" > < / script >
2019-06-22 02:06:32 +10:00
< script type = "text/javascript" src = "../../node_modules/sweetalert2/dist/sweetalert2.all.min.js" > < / script >
2019-03-08 05:19:26 +11:00
2019-04-11 13:52:38 +10:00
< h4 > 設定< / h4 >
< ul class = "collapsible" data-collapsible = "accordion" >
< li >
< div class = "collapsible-header" >
< i class = "material-icons" > desktop_windows< / i > 環境設定
< / div >
< div class = "collapsible-body" >
< h5 > 言語< / h5 >
To translate with Crowdin, you have to login Crowdin and restart TheDesk when login is finished.< br >
2019-05-07 01:42:06 +10:00
< a onclick = "changelang('ja')" class = "pointer" style = "margin-right:5px;" > 日本語< / a > < a onclick = "changelang('en')" class = "pointer" style = "margin-right:5px;" > English< / a > < a onclick = "changelang('ps')" class = "pointer" style = "margin-right:5px;" > Crowdin translate system(beta)< / a >
2019-04-11 13:52:38 +10:00
< h5 > 設定のインポートとエクスポート< / h5 >
< button onclick = "exportSettings()" class = "btn waves-effect lime darken-3"
style="width:100%; max-width:200px;">エクスポート< / button >
< button onclick = "importSettings()" class = "btn waves-effect cyan darken-3"
style="width:100%; max-width:200px;">インポート< / button >
< div id = "envView" >
< template v-for = "(item, i) in config" >
< h5 > {{item.text.head}}< / h5 >
2019-04-15 01:45:04 +10:00
< template v-if = "item.text.desc" >
2019-07-10 23:48:36 +10:00
< span v-html = "item.text.desc" > < / span > < br >
2019-04-11 13:52:38 +10:00
< / template >
< template v-if = "item.id=='notf'" > < a onclick = "notftest()"
class="pointer">通知テスト< / a > < br > < / template >
< template v-if = "item.checkbox" >
< template v-for = "(check, j) in item.text.checkbox" >
2019-06-07 02:11:04 +10:00
< label >
< input class = "with-gap" v-on:click = "complete(i,check.value)" v-model = "item.setValue"
type="radio" v-bind:id="item.id+check.value" v-bind:value="check.value" />
< span > {{check.text}}< / span >
< / label >
2019-04-11 13:52:38 +10:00
< / template >
< / template >
< template v-else >
< template v-if = "item.doubleText" >
< template v-for = "(textbox, j) in item.data" >
< input type = "text" v-model = "textbox.setValue" type = "radio" v-bind:id = "textbox.id"
v-bind:style="{ width: textbox.width+'px'}" />{{textbox.text.after}}
< / template >
< / template >
< template v-else >
< input type = "text" v-model = "item.setValue" type = "radio" v-bind:id = "item.id"
v-bind:style="{ width: item.width+'px'}" />{{item.text.after}}
< / template >
< button class = "btn waves-effect" style = "width:100px;"
v-on:click="complete(i)">変更< / button >
< / template > < br >
2019-03-15 22:12:11 +11:00
< / template >
2019-04-11 13:52:38 +10:00
< / div >
< h5 > フォント< / h5 >
2019-04-15 01:45:04 +10:00
「選択」を押してフォントを選んでください。(Linuxでは動きません)< br >
2019-04-11 13:52:38 +10:00
< button class = "btn waves-effect" style = "width:100px;" onclick = "font()" > 選択< / button > < br >
< div id = "fonts" class = "hide" style = "overflow-y:scroll; width:300px; height:500px;" > < / div >
< br >
< input type = "text" style = "width:150px" id = "font" >
< button class = "btn waves-effect" style = "width:100px;" onclick = "settings()" > 設定< / button >
< br >
< h5 > デフォルトの保存先< / h5 >
画像ダウンロードやスクリーンショットに影響します。< br >
< button class = "btn waves-effect" style = "width:100px;" onclick = "savefolder()" > 変更< / button >
< br >
< / div >
< / li >
< li >
< div class = "collapsible-header" >
< i class = "material-icons" > color_lens< / i > テーマの設定
< / div >
< div class = "collapsible-body" >
< h4 > テーマの選択< / h4 >
2019-06-07 02:11:04 +10:00
< label >
< input class = "with-gap" onchange = "settings()" name = "theme" type = "radio" id = "black" value = "black" / >
< span > Black< / span >
< / label >
< label >
< input class = "with-gap" onchange = "settings()" name = "theme" type = "radio" id = "white" value = "white" / >
< span > White< / span >
< / label >
< label >
< input class = "with-gap" onchange = "settings()" name = "theme" type = "radio" id = "indigo"
value="indigo" />
< span > Indigo< span class = "imas hide" > (エンドレスナイト)< / span > < / span >
< / label >
< label >
< input class = "with-gap" onchange = "settings()" name = "theme" type = "radio" id = "brown" value = "brown" / >
< span > Brown< span class = "imas hide" > (ビタースイート・タイム)< / span > < / span >
< / label >
< label >
< input class = "with-gap" onchange = "settings()" name = "theme" type = "radio" id = "green" value = "green" / >
< span > Green< span class = "imas hide" > (ユースフルロマンス)< / span > < / span >
< / label >
2019-07-02 01:37:58 +10:00
< label >
< input class = "with-gap" onchange = "settings()" name = "theme" type = "radio" id = "blue" value = "blue" / >
< span > Blue< span class = "imas hide" > (渚の花嫁)< / span > < / span >
< / label >
2019-06-07 02:11:04 +10:00
< label >
< input class = "with-gap" onchange = "settings()" name = "theme" type = "radio" id = "custom"
value="custom" />
< span > custom< / span >
< / label >
2019-04-11 13:52:38 +10:00
< div style = "width:300px" id = "sel-selector" >
< select id = "custom-sel-sel" class = "custom-sel" onchange = "customSel()" > < / select >
< / div >
< h4 > カスタムテーマの作成・編集< / h4 >
< div style = "width:300px" id = "edit-selector" data-add = "新規作成" >
< select id = "custom-edit-sel" class = "custom-sel" onchange = "custom()" >
< option value = "add_new" > 新規作成< / option >
< / select >
< / div >
< h5 > 名前< / h5 >
< input type = "text" style = "width:300px" id = "custom_name" placeholder = "名前..." >
< h5 > 説明< / h5 >
< div class = "input-field" > < textarea style = "width:300px" id = "custom_desc" class = "materialize-textarea"
placeholder="説明...">< / textarea > < / div >
< h5 > 色の系統< / h5 >
2019-06-07 02:11:04 +10:00
< label >
< input class = "with-gap" onchange = "settings()" name = "direction" type = "radio" id = "dark" value = "dark"
checked="true" />
< span > Dark< / span >
< / label >
< label >
< input class = "with-gap" onchange = "settings()" name = "direction" type = "radio" id = "light"
value="light" />
< span > Light< / span >
< / label >
2019-04-11 13:52:38 +10:00
< div id = "pickers" >
< div >
< h5 > Primary< / h5 > 補助要素に使われる背景色
< div id = "color-picker0-wrap" >
< div class = "color-picker" id = "color-picker0" > < / div >
< / div >
< input type = "hidden" id = "color-picker0_value" >
< / div >
< div >
< h5 > Secondary< / h5 > 全体の背景色など
< div id = "color-picker1-wrap" >
< div class = "color-picker" id = "color-picker1" > < / div >
< / div >
< input type = "hidden" id = "color-picker1_value" >
< / div >
< div >
< h5 > Texts< / h5 > テキストの色
< div id = "color-picker2-wrap" >
< div class = "color-picker" id = "color-picker2" > < / div >
< / div >
< input type = "hidden" id = "color-picker2_value" >
< / div >
< div >
2019-05-19 17:39:30 +10:00
< h5 > Accent< / h5 > ブーストの背景色など
< div id = "color-picker3-wrap" >
< div class = "color-picker" id = "color-picker3" > < / div >
< / div >
< input type = "hidden" id = "color-picker3_value" >
2019-04-11 13:52:38 +10:00
< / div >
< / div >
< button class = "btn-large waves-effect" onclick = "customComp()" > 変更< / button > < button
class="btn waves-effect red disabled" id="delTheme" onclick="deleteIt()">削除< / button > < br > < br >
2019-06-07 02:11:04 +10:00
< input type = "text" style = "width:300px;height:40px;" id = "custom_json" class = "materialize-textarea"
2019-04-11 13:52:38 +10:00
placeholder="JSON style" readonly>< br >
このコードは他のTheDeskなどとシェアできます。このコードをMiASに貼ることはご遠慮ください。詳細:< a href = "https://thedesk.top/mias.html" target = "_blank" > テーマ互換性< / a >
< h4 > カスタムテーマのインポート< / h4 >
< a href = "https://assets.msky.cafe/" target = "_blank" > MiAS< / a > 上の80を超えるテーマを張り付けることもできます。< br >
2019-06-07 02:11:04 +10:00
< input type = "text" style = "width:300px;height:40px;" id = "custom_import" class = "materialize-textarea"
2019-04-11 13:52:38 +10:00
placeholder="JSON/JSON5 style">
< button class = "btn waves-effect" onclick = "customImp()" > インポート< / button > < br >
< / li >
< li >
< div class = "collapsible-header" >
< i class = "material-icons" > reorder< / i > タイムラインの設定
< / div >
< div class = "collapsible-body" >
< div id = "tlView" >
< template v-for = "(item, i) in config" >
< h5 > {{item.text.head}}< / h5 >
2019-04-15 01:45:04 +10:00
< template v-if = "item.text.desc" >
2019-07-10 23:48:36 +10:00
< span v-html = "item.text.desc" > < / span > < br >
2019-04-11 13:52:38 +10:00
< / template >
< template v-if = "item.checkbox" >
< template v-for = "(check, j) in item.text.checkbox" >
2019-06-07 02:11:04 +10:00
< label >
< input class = "with-gap" v-on:click = "complete(i,check.value)" v-model = "item.setValue"
type="radio" v-bind:id="item.id+check.value" v-bind:value="check.value" />
< span > {{check.text}}< / span >
< / label >
2019-03-15 22:12:11 +11:00
< / template >
2019-04-11 13:52:38 +10:00
< / template >
< template v-else >
< template v-if = "item.doubleText" >
< template v-for = "(textbox, j) in item.data" >
< input type = "text" v-model = "textbox.setValue" type = "radio" v-bind:id = "textbox.id"
v-bind:style="{ width: textbox.width+'px'}" />{{textbox.text.after}}
< / template >
< / template >
< template v-else >
< input type = "text" v-model = "item.setValue" type = "radio" v-bind:id = "item.id"
v-bind:style="{ width: item.width+'px'}" />{{item.text.after}}
< / template >
< button class = "btn waves-effect" style = "width:100px;"
v-on:click="complete(i)">変更< / button >
< / template > < br >
2019-03-15 22:12:11 +11:00
< / template >
2019-04-11 13:52:38 +10:00
< / div >
2019-04-15 01:45:04 +10:00
< h5 > カスタム通知音< / h5 >
2019-05-19 17:39:30 +10:00
< button class = "btn waves-effect" style = "width:120px;" onclick = "customSound(1)" > Custom 1< / button > < span
id="c1-file">< / span > < br >
< button class = "btn waves-effect" style = "width:120px;" onclick = "customSound(2)" > Custom 2< / button > < span
id="c2-file">< / span > < br >
< button class = "btn waves-effect" style = "width:120px;" onclick = "customSound(3)" > Custom 3< / button > < span
id="c3-file">< / span > < br >
< button class = "btn waves-effect" style = "width:120px;" onclick = "customSound(4)" > Custom 4< / button > < span
id="c4-file">< / span > < br >
2019-04-11 13:52:38 +10:00
< / div >
< / li >
< li >
< div class = "collapsible-header" >
< i class = "material-icons" > send< / i > 投稿設定
< / div >
< div class = "collapsible-body" >
< div id = "postView" >
< template v-for = "(item, i) in config" >
< h5 > {{item.text.head}}< / h5 >
2019-04-15 01:45:04 +10:00
< template v-if = "item.text.desc" >
2019-07-10 23:48:36 +10:00
< span v-html = "item.text.desc" > < / span > < br >
2019-04-11 13:52:38 +10:00
< / template >
< template v-if = "item.checkbox" >
< template v-for = "(check, j) in item.text.checkbox" >
< template v-if = "!check.kirishima || (check.kirishima && kirishima)" >
2019-06-07 02:11:04 +10:00
< label > < input class = "with-gap" v-on:click = "complete(i,check.value)"
v-model="item.setValue" type="radio" v-bind:id="item.id+check.value"
v-bind:value="check.value" />
< span > {{check.text}}< / span > < / label >
2019-04-11 13:52:38 +10:00
< span v-if = "check.kirishimaText" > {{check.kirishimaText}}< / span >
< / template >
< / template >
< / template >
< template v-else >
< template v-if = "item.doubleText" >
< template v-for = "(textbox, j) in item.data" >
< input type = "text" v-model = "textbox.setValue" type = "radio" v-bind:id = "textbox.id"
v-bind:style="{ width: textbox.width+'px'}" />{{textbox.text.after}}
< / template >
< / template >
< template v-else >
< input type = "text" v-model = "item.setValue" type = "radio" v-bind:id = "item.id"
v-bind:style="{ width: item.width+'px'}" />{{item.text.after}}
< / template >
< button class = "btn waves-effect" style = "width:100px;"
v-on:click="complete(i)">変更< / button >
< / template > < br >
2019-03-15 22:12:11 +11:00
< / template >
2019-04-11 13:52:38 +10:00
< / div >
< / div >
< / li >
< li >
< div class = "collapsible-header" >
2019-04-14 04:38:07 +10:00
< i class = "material-icons" > keyboard< / i > キーボードショートカットの設定
2019-04-11 13:52:38 +10:00
< / div >
< div class = "collapsible-body" >
< h5 > 簡単文字入力< / h5 >
絵文字やタグ、> BTなどを登録しておくとすぐに入力できます。< br >
Ctrl+Shift+1:< input type = "text" style = "width:150px" id = "oks-1" >
< button onclick = "oks(1)" class = "btn waves-effect" style = "width:100px;" > 設定< / button > < br > < br >
Ctrl+Shift+2:< input type = "text" style = "width:150px" id = "oks-2" >
< button onclick = "oks(2)" class = "btn waves-effect" style = "width:100px;" > 設定< / button > < br > < br >
Ctrl+Shift+3:< input type = "text" style = "width:150px" id = "oks-3" >
< button onclick = "oks(3)" class = "btn waves-effect" style = "width:100px;" > 設定< / button > < br > < br >
< / div >
< / li >
< li >
< div class = "collapsible-header" >
2018-09-10 03:06:00 +10:00
< i class = "material-icons" > bookmark< / i > ミュート・強調の設定
2019-04-11 13:52:38 +10:00
< / div >
< div class = "collapsible-body" >
< h5 > クライアントミュート< / h5 >
< div id = "mute-cli" > < / div >
< h5 > クライアント強調< / h5 >
各トゥートのクライアントをクリックすると設定できます。
< h5 > ワードミュート< / h5 >
Enterで確定< br >
< div class = "chips" id = "wordmute" style = "background-color:gray;" > < / div >
< button onclick = "wordmuteSave()" class = "btn waves-effect" style = "width:100px;" > 設定< / button >
< h5 > ワード強調< / h5 >
Enterで確定< br >
< div class = "chips" id = "wordemp" style = "background-color:gray;" > < / div >
< button onclick = "wordempSave()" class = "btn waves-effect" style = "width:100px;" > 設定< / button >
< h5 > ユーザー強調< / h5 >
各ユーザーのデータ表示画面で設定できます。
< span class = "emphasized" > 強調色(テーマによって異なります。) < / span >
< / div >
< / li >
< li >
< div class = "collapsible-header" >
< i class = "fa fa-spotify" > < / i > SpotifyとNowPlayingの設定
< / div >
< div class = "collapsible-body" >
< h5 > NowPlayingのソース(Windows)< / h5 >
macOSやLinuxでは動作しません。AIMPとiTunes以外未検証です。< br > foobar2000, MusicBee,J. River Media Center, Media JukeboxはCADを、Last.fm Client, TTPlayer, OpenPandora, ZuneはWLMを選んでください。< br > ただし、foobar2000は< a href = "http://poiru.github.com/foo-cad/" > foo_cad plugin< / a > が必要です。MusicBeeもCADを有効にする必要があります。< br >
2019-06-07 02:11:04 +10:00
< label >
2019-06-16 00:07:18 +10:00
< input class = "with-gap" onchange = "npprovider()" name = "npp" type = "radio" id = "aimp" value = "AIMP" / >
2019-06-07 02:11:04 +10:00
< span > AIMP< / span >
< / label >
< label >
2019-06-22 01:22:45 +10:00
< input class = "with-gap" onchange = "npprovider()" name = "npp" type = "radio" id = "itunes"
value="ITUNES" />
2019-06-07 02:11:04 +10:00
< span > iTunes< / span >
< / label >
< label >
2019-06-16 00:07:18 +10:00
< input class = "with-gap" onchange = "npprovider()" name = "npp" type = "radio" id = "npmm"
2019-06-07 02:11:04 +10:00
value="MEDIAMONKEY" />
< span > MediaMonkey< / span >
< / label >
< label >
2019-06-22 01:22:45 +10:00
< input class = "with-gap" onchange = "npprovider()" name = "npp" type = "radio" id = "winamp"
value="WINAMP" />
2019-06-07 02:11:04 +10:00
< span > Winamp< / span >
< / label >
< label >
2019-06-16 00:07:18 +10:00
< input class = "with-gap" onchange = "npprovider()" name = "npp" type = "radio" id = "wmp" value = "WMP" / >
2019-06-07 02:11:04 +10:00
< span > WMP< / span >
< / label >
< label >
2019-06-16 00:07:18 +10:00
< input class = "with-gap" onchange = "npprovider()" name = "npp" type = "radio" id = "wlm" value = "WLM" / >
2019-06-07 02:11:04 +10:00
< span > WLM< / span >
< / label >
< label >
2019-06-16 00:07:18 +10:00
< input class = "with-gap" onchange = "npprovider()" name = "npp" type = "radio" id = "cad" value = "CAD" / >
2019-06-07 02:11:04 +10:00
< span > CAD< / span >
< / label >
< br > < br >
2019-04-11 13:52:38 +10:00
< i class = "material-icons" style = "font-size:24px;" > music_note< / i > ボタンから簡単にNowPlayingができます。< br >
< h5 > アカウントの連携< / h5 >
APIの性質上, thedesk.topへアクセスします。< br >
< div id = "spotify-code-show" class = "hide" > < input type = "text" id = "spotify-code" > < button
onclick="spotifyAuth()" class="btn waves-effect" style="width:100px;">設定< / button > < / div >
< a onclick = "spotifyConnect()" class = "btn waves-effect nex"
style="width:100%; max-width:200px; background-color:#1ed760;" id="spotify-enable">< i
class="fa fa-spotify left">< / i > 接続< / a >
< a onclick = "spotifyDisconnect()" class = "btn waves-effect nex disabled"
style="width:100%; max-width:200px; background-color:#1ed760;" id="spotify-disable">< i
class="fa fa-spotify left">< / i > 切断< / a >
2019-07-02 01:37:58 +10:00
< h5 > @@templateedit@@< / h5 >
@@templateeditwarn@@< br >
2019-04-11 13:52:38 +10:00
< textarea id = "np-temp" class = "materialize-textarea" data-length = "500" > #NowPlaying {song} / {album} / {artist}
2018-08-05 02:26:34 +10:00
{url}< / textarea > < br >
2019-07-02 01:37:58 +10:00
@@template1@@< br >
@@template2@@< br >
@@template3@@< br >
2019-04-11 13:52:38 +10:00
< button onclick = "spotifySave()" class = "btn waves-effect" style = "width:100px;" > 設定< / button >
< h5 > アルバムアートワークを添付する(Spotify/Windows)< / h5 >
2019-06-07 02:11:04 +10:00
< label >
2019-06-22 01:22:45 +10:00
< input class = "with-gap" onchange = "spotifyFlagSave()" name = "awk" type = "radio" id = "awk_yes"
value="yes" />
2019-06-07 02:11:04 +10:00
< span > はい< / span >
< / label >
< label >
2019-06-22 01:22:45 +10:00
< input class = "with-gap" onchange = "spotifyFlagSave()" name = "awk" type = "radio" id = "awk_no"
value="no" />
2019-06-07 02:11:04 +10:00
< span > いいえ< / span >
< / label >
2019-04-11 13:52:38 +10:00
< br >
< / div >
< / li >
< li >
< div class = "collapsible-header" >
< i class = "material-icons" > hearing< / i > 読み上げの設定
< / div >
< div class = "collapsible-body" >
< h5 > 読み上げの速さ< / h5 >
1-100まで、デフォルトは10。< br >
< p class = "range-field" > < input type = "range" id = "voicespeed" min = "1" max = "100" value = "10"
style="width:500px; max-width:100%" />< / p >
< h5 > 読み上げの高さ< / h5 >
0-100まで、デフォルトは50。(大きくなるほど高い)< br >
< p class = "range-field" > < input type = "range" id = "voicepitch" min = "0" max = "100" value = "50"
style="width:500px; max-width:100%" />< / p >
< h5 > 読み上げの音量< / h5 >
0-100まで、デフォルトは100。< br >
< p class = "range-field" > < input type = "range" id = "voicevol" min = "0" max = "100" value = "100"
style="width:500px; max-width:100%" />< / p >
< h5 > テスト< / h5 >
< input type = "text" style = "width:350px" id = "voicetxt" value = "これはテスト音声です。TheDeskはオープンソースのPC向けマストドンクライアントです。マルチサーバーやマルチカラムに対応しています。" >
< button class = "btn waves-effect blue" style = "width:150px;" onclick = "voicePlay()"
id="testplay">再生/停止< / button > < br >
< br >
< button class = "btn waves-effect" style = "width:100px;" onclick = "voiceSettings()" > 設定< / button >
< / div >
< / li >
< / ul >
< br >
< a href = "index.html" class = "btn waves-effect orange nex" style = "width:100%; max-width:200px;" > < i
class="material-icons left">undo< / i > 戻る< / a >
2018-08-05 02:26:34 +10:00
< br >
2019-04-11 13:52:38 +10:00
< br > キーボードショートカット一覧
< li > Ctrl+1-9:1番目~ 9番目のTLにスクロール< / li >
< li > N:投稿パネルを開く< / li >
< li > X:投稿パネルを開閉< / li >
< li > Ctrl+Enter:投稿< / li >
< li > Ctrl+Enter+Shift:投稿(セカンダリートゥート)< / li >
< li > Alt+Enter:セカンダリートゥートボタン< / li >
< li > Ctrl+E:全ての通知を既読にする< / li >
< li > Esc:投稿パネルを消す< / li >
< li > F5:スーパーリロード< / li >
< li > Ctrl+Shift+C:入力内容を消す< / li >
< li > Ctrl+Shift+S:設定< / li >
< li > Ctrl+Shift+M:アカウントマネージャ< / li >
< li > Ctrl+Shift+N:NowPlaying(Spotify)< / li >
< li > Ctrl+Shift+P:現在選択中のプロフィール< / li >
< li > ←/→:イメージビューワー起動時に画像切り替え< / li >
< li > マウスホイール:イメージビューワー時に拡大縮小< / li >
< div class = "hide kirishima" >
以下Markdownに対応したインスタンスのみ。
< br >
< li > Ctrl+B/I/S/U:太字/斜字/取り消し/下線< / li >
以下アスタルテにログインしている場合のみ
< br >
< li > Ctrl+R:
< a href = "https://astarte.thedesk.top" > アスタルテ暇人ランキング< / a > を開く
< / li > < br >
< / div >
< button class = "btn waves-effect red" style = "width:100%; max-width:500px;"
onclick="if(confirm('全てのデータを削除します。この操作は取り消せません。')){ localStorage.clear(); location.href='index.html'; }">< i
class="material-icons left">delete< / i > 初期化< / button > < br > < br >
< button class = "btn waves-effect indigo" onclick = "about()" style = "width:100%; max-width:500px;" > < i
class="material-icons left">info< / i > このソフトについて< / button >
< a href = "https://thedesk.top" class = "btn waves-effect deep-purple lighten-2" style = "width:100%; max-width:500px;" > < i
class="material-icons left">web< / i > 公式HP< / a >
< a href = "https://www.pixiv.net/fanbox/creator/28105985" class = "btn waves-effect red lighten-2"
style="width:100%; max-width:500px;">< i class = "material-icons left" > trending_up< / i > 支援(Pixiv FANBOX)< / a >
2019-05-26 21:42:52 +10:00
< a href = "https://www.patreon.com/cutls" class = "btn waves-effect red darken-2"
2019-05-19 17:54:23 +10:00
style="width:100%; max-width:500px;">< i class = "material-icons left" > trending_up< / i > 支援(Patreon)< / a >
2019-04-11 13:52:38 +10:00
< a href = "https://docs.thedesk.top" class = "btn waves-effect blue darken-2" style = "width:100%; max-width:500px;" > < i
class="material-icons left">list< / i > ヘルプ/Docs(Constructing)< / a >
< a href = "https://github.com/cutls/TheDesk" class = "btn waves-effect black lighten-2"
style="width:100%; max-width:500px;">< i class = "fa fa-github left" > < / i > GitHub< / a >
2019-05-03 02:08:46 +10:00
< a href = "index.html?mode=user&code=Cutls@cutls.com" class = "btn waves-effect blue lighten-2"
2019-04-11 13:52:38 +10:00
style="width:100%; max-width:500px;">< img src = "../../img/desk_full.svg" class = "left" width = "25"
2019-05-03 02:08:46 +10:00
style="padding-top:5px;">Developer: Cutls@cutls.com< / a >
2019-04-11 13:52:38 +10:00
< br >
Kyash< br >
< img src = "../../img/kyash.png" width = "100" > < br >
< a onclick = "localStorage.removeItem('new-ver-skip'); location.href='index.html';"
class="pointer">アップデートを確認< / a > < br >
< a href = "oss.html" > OSS License(オープンソースライセンス)< / a > < br >
2019-05-11 02:31:15 +10:00
< span style = "font-family:Open Sans;" > Copyright © TheDesk 2018
2019-04-11 13:52:38 +10:00
Under < a href = "https://github.com/cutls/TheDesk/blob/master/LICENSE" > GNU General Public License v3.0< / a > and < a
href="https://thedesk.top/tos.html">Terms of Use< / a > /< a href = "https://thedesk.top/priv.html" > Privacy
Policy< / a >
< br > Developer: Cutls P(
2019-05-03 02:08:46 +10:00
< a href = "index.html?mode=user&code=Cutls@cutls.com" > @Cutls@cutls.com< / a > )
2019-04-11 13:52:38 +10:00
< br >
< / span > < br >
TheDeskおよびCutls Pは< a href = "https://donken.org/" > 被災地支援のためのマストドン研究会< / a > をログイン機能提供等の形で応援しています。< br >
タグタイムラインを開く:< a href = "index.html?mode=tag&code=被災地支援のためのマストドン研究会" > #被災地支援のためのマストドン研究会< / a > < br >
2019-06-07 02:11:04 +10:00
< script type = "text/javascript" src = "../../js/common/modal.js" > < / script >
2019-04-11 13:52:38 +10:00
< script type = "text/javascript" src = "../../js/common/about.js" > < / script >
< script type = "text/javascript" src = "../../js/platform/end.js" > < / script >
< script type = "text/javascript" src = "../../js/login/logout.js" > < / script >
< script type = "text/javascript" src = "../../js/ui/spotify.js" > < / script >
< script type = "text/javascript" src = "../../js/tl/speech.js" > < / script >
< script type = "text/javascript" src = "../../js/platform/pickr.js" > < / script >
< script type = "text/javascript" src = "../../js/ui/settings.js" > < / script >
< script type = "text/javascript" src = "../../js/ui/theme.js" > < / script >
< script type = "text/javascript" src = "../../js/tl/date.js" > < / script >