check something

This commit is contained in:
Cutls 2019-03-21 13:39:30 +09:00
parent 5d0b5e9c94
commit 153f1aacee
13 changed files with 49 additions and 13 deletions

View File

@ -45,6 +45,7 @@ var lang={
//post/img.js //post/img.js
"lang_postimg_previewdis":"cannot preview", "lang_postimg_previewdis":"cannot preview",
"lang_postimg_aftupload":"You cannot change accounts after uploading.", "lang_postimg_aftupload":"You cannot change accounts after uploading.",
"lang_postimg_delete":"Delete this image.",
//post/post.js //post/post.js
"lang_post_tagTL":"This toot does not contain a default tag. This toot will not be shown on Local TL. Continue?", "lang_post_tagTL":"This toot does not contain a default tag. This toot will not be shown on Local TL. Continue?",
"lang_post_tagVis":"This toot(not 'public' toot) is not shown on this tag's TL.", "lang_post_tagVis":"This toot(not 'public' toot) is not shown on this tag's TL.",

View File

@ -45,6 +45,7 @@ var lang={
//post/img.js //post/img.js
"lang_postimg_previewdis":"プレビューできません。", "lang_postimg_previewdis":"プレビューできません。",
"lang_postimg_aftupload":"アップロード後はアカウントを切り替えられません。", "lang_postimg_aftupload":"アップロード後はアカウントを切り替えられません。",
"lang_postimg_delete":"この画像を削除します",
//post/post.js //post/post.js
"lang_post_tagTL":"デフォルトタグが挿入されていません。このまま投稿するとローカルには表示されません。", "lang_post_tagTL":"デフォルトタグが挿入されていません。このまま投稿するとローカルには表示されません。",
"lang_post_tagVis":"公開範囲が「公開」以外だと、タグTLに表示されません。(一部インスタンスを除く)", "lang_post_tagVis":"公開範囲が「公開」以外だと、タグTLに表示されません。(一部インスタンスを除く)",

View File

@ -335,7 +335,29 @@ function misskeyLogin(url) {
httpreq.send(JSON.stringify({ httpreq.send(JSON.stringify({
name: "TheDesk(PC)", name: "TheDesk(PC)",
description: "Mastodon client for PC", description: "Mastodon client for PC",
permission: ["read","write","follow"] permission: [
"account-read",
"account-write",
"account/read",
"account/write",
"drive-read",
"drive-write",
"favorite-read",
"favorite-write",
"favorites-read",
"following-read",
"following-write",
"messaging-read",
"messaging-write",
"note-read",
"note-write",
"notification-read",
"notification-write",
"reaction-read",
"reaction-write",
"vote-read",
"vote-write"
]
})); }));
httpreq.onreadystatechange = function() { httpreq.onreadystatechange = function() {
if (httpreq.readyState === 4) { if (httpreq.readyState === 4) {

View File

@ -131,7 +131,7 @@ function media(b64, type, no) {
console.log(json); console.log(json);
var img = localStorage.getItem("img"); var img = localStorage.getItem("img");
if (json.type.indexOf("image")!=-1) { if (json.type.indexOf("image")!=-1) {
var html = '<div class="pi-wrap"><img src="' + json[previewer] + '" class="preview-img pointer" data-media="'+json["id"]+'" onclick="deleteImage(\''+json["id"]+'\')"></div>'; var html = '<img src="' + json[previewer] + '" class="preview-img pointer" data-media="'+json["id"]+'" onclick="deleteImage(\''+json["id"]+'\')" title="'+lang.lang_postimg_delete+'">';
$('#preview').append(html); $('#preview').append(html);
} else { } else {
$('#preview').append(lang.lang_postimg_previewdis); $('#preview').append(lang.lang_postimg_previewdis);
@ -226,7 +226,7 @@ ipc.on('adobeagree', function (event, arg) {
}); });
function deleteImage(key){ function deleteImage(key){
console.log(key); console.log(key);
if(!confirm("Delete it?")){ if(!confirm(lang.lang_postimg_delete)){
return false; return false;
} }
var media = $("#media").val(); var media = $("#media").val();

View File

@ -115,7 +115,7 @@ input.addEventListener("focus", function() {
} }
}); });
$("#right-side").show() $("#right-side").show()
$("#suggest").html("@:<br>" + accts); $("#suggest").html(accts);
$("#poll").addClass("hide") $("#poll").addClass("hide")
$("#emoji").addClass("hide") $("#emoji").addClass("hide")
} else { } else {

View File

@ -8,7 +8,9 @@ function re(id,ats_cm,acct_id,mode){
for(var i=0;i<ats.length;i++){ for(var i=0;i<ats.length;i++){
var at=ats[i]; var at=ats[i];
var te=$("#textarea").val(); var te=$("#textarea").val();
$("#textarea").val("@"+at+" "+te); if(at!=localStorage.getItem("user_"+acct_id)){
$("#textarea").val("@"+at+" "+te);
}
} }
$("#rec").text(lang.lang_yesno); $("#rec").text(lang.lang_yesno);
$("#post-acct-sel").val(acct_id); $("#post-acct-sel").val(acct_id);

View File

@ -606,7 +606,7 @@ function misskeyParse(obj, mix, acct_id, tlid, popup, mutefilter) {
}); });
poll='<div class="vote_'+toot.id+'">'+poll+'</div>'; poll='<div class="vote_'+toot.id+'">'+poll+'</div>';
} }
//Reactions //Reactions
if(toot.reactionCounts){ if(toot.reactionCounts){
if(toot.reactionCounts.like){ if(toot.reactionCounts.like){
var like=toot.reactionCounts.like; var like=toot.reactionCounts.like;

View File

@ -402,7 +402,7 @@ function importSettings(){
localStorage.setItem("card_" + i,"true"); localStorage.setItem("card_" + i,"true");
localStorage.removeItem("catch_" + i); localStorage.removeItem("catch_" + i);
} }
location.href="language.html"; location.href="index.html";
}else{ }else{
alert("Error.") alert("Error.")
} }

View File

@ -132,12 +132,14 @@ function nowplaying(mode){
var content="#NowPlaying {song} / {album} / {artist}\n{url}"; var content="#NowPlaying {song} / {album} / {artist}\n{url}";
} }
var flag=localStorage.getItem("artwork"); var flag=localStorage.getItem("artwork");
if(arg.win){ var remote=electron.remote;
var platform=remote.process.platform;
if(platform=="win32"){
if(!uploadnow && flag && arg.path){ if(!uploadnow && flag && arg.path){
uploadnow=true; uploadnow=true;
media(arg.path,"image/png","new"); media(arg.path,"image/png","new");
} }
}else{ }else if(platform=="darwin"){
if(!uploadnow && flag && arg.artworks[0].path){ if(!uploadnow && flag && arg.artworks[0].path){
uploadnow=true; uploadnow=true;
ipc.send('bmp-image', [arg.artworks[0].path,0]); ipc.send('bmp-image', [arg.artworks[0].path,0]);

View File

@ -590,7 +590,9 @@ var tlid=0;
困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。 困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。
<h5>Release Note Usamin (18.1.0)</h5> <h5>Release Note Usamin (18.1.0)</h5>
・iTunes NowPlaying(macOS)にアルバムアートワークを付ける(Thanks to <a href="https://www.kr-kp.com/">kPherox</a>)<br> ・iTunes NowPlaying(macOS)にアルバムアートワークを付ける(Thanks to <a href="https://www.kr-kp.com/">kPherox</a>)<br>
・カラムを<b>縦に並べられる</b>ように(2つ目以降のカラム毎の設定の「左に重ねる」「右に出す」を押す) ・カラムを<b>縦に並べられる</b>ように(2つ目以降のカラム毎の設定の「左に重ねる」「右に出す」を押す)<br>
・画像を個別に削除する(画像をクリックして)<br>
・何個もアルバムアートワークが投稿されるバグを修正
</div> </div>
<div id="release-en"> <div id="release-en">
<h5>Let's make it native!</h5> <h5>Let's make it native!</h5>

View File

@ -590,7 +590,9 @@ var tlid=0;
困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。 困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。
<h5>Release Note Usamin (18.1.0)</h5> <h5>Release Note Usamin (18.1.0)</h5>
・iTunes NowPlaying(macOS)にアルバムアートワークを付ける(Thanks to <a href="https://www.kr-kp.com/">kPherox</a>)<br> ・iTunes NowPlaying(macOS)にアルバムアートワークを付ける(Thanks to <a href="https://www.kr-kp.com/">kPherox</a>)<br>
・カラムを<b>縦に並べられる</b>ように(2つ目以降のカラム毎の設定の「左に重ねる」「右に出す」を押す) ・カラムを<b>縦に並べられる</b>ように(2つ目以降のカラム毎の設定の「左に重ねる」「右に出す」を押す)<br>
・画像を個別に削除する(画像をクリックして)<br>
・何個もアルバムアートワークが投稿されるバグを修正
</div> </div>
<div id="release-en"> <div id="release-en">
<h5>Let's make it native!</h5> <h5>Let's make it native!</h5>

View File

@ -590,7 +590,9 @@ var tlid=0;
困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。 困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。
<h5>Release Note Usamin (18.1.0)</h5> <h5>Release Note Usamin (18.1.0)</h5>
・iTunes NowPlaying(macOS)にアルバムアートワークを付ける(Thanks to <a href="https://www.kr-kp.com/">kPherox</a>)<br> ・iTunes NowPlaying(macOS)にアルバムアートワークを付ける(Thanks to <a href="https://www.kr-kp.com/">kPherox</a>)<br>
・カラムを<b>縦に並べられる</b>ように(2つ目以降のカラム毎の設定の「左に重ねる」「右に出す」を押す) ・カラムを<b>縦に並べられる</b>ように(2つ目以降のカラム毎の設定の「左に重ねる」「右に出す」を押す)<br>
・画像を個別に削除する(画像をクリックして)<br>
・何個もアルバムアートワークが投稿されるバグを修正
</div> </div>
<div id="release-en"> <div id="release-en">
<h5>Let's make it native!</h5> <h5>Let's make it native!</h5>

View File

@ -590,7 +590,9 @@ var tlid=0;
困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。 困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。
<h5>Release Note Usamin (18.1.0)</h5> <h5>Release Note Usamin (18.1.0)</h5>
・iTunes NowPlaying(macOS)にアルバムアートワークを付ける(Thanks to <a href="https://www.kr-kp.com/">kPherox</a>)<br> ・iTunes NowPlaying(macOS)にアルバムアートワークを付ける(Thanks to <a href="https://www.kr-kp.com/">kPherox</a>)<br>
・カラムを<b>縦に並べられる</b>ように(2つ目以降のカラム毎の設定の「左に重ねる」「右に出す」を押す) ・カラムを<b>縦に並べられる</b>ように(2つ目以降のカラム毎の設定の「左に重ねる」「右に出す」を押す)<br>
・画像を個別に削除する(画像をクリックして)<br>
・何個もアルバムアートワークが投稿されるバグを修正
</div> </div>
<div id="release-en"> <div id="release-en">
<h5>Let's make it native!</h5> <h5>Let's make it native!</h5>