diff --git a/.DS_Store b/.DS_Store index efa4e3a3..e86b56a0 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/app/index.html b/app/index.html index a124ad0d..9987bda6 100644 --- a/app/index.html +++ b/app/index.html @@ -179,7 +179,7 @@ var tlid=0;
- refresh + refresh 再読込
diff --git a/app/js/platform/end.js b/app/js/platform/end.js index a4291465..e7b3f334 100644 --- a/app/js/platform/end.js +++ b/app/js/platform/end.js @@ -156,4 +156,11 @@ function progshow(e) { $("#imgup").text("処理中"); } } - } \ No newline at end of file + } + + var electron = require("electron"); + var ipc = electron.ipcRenderer; + ipc.on('reload', function (event, arg) { + location.reload(); +}) + \ No newline at end of file diff --git a/app/js/ui/layout.js b/app/js/ui/layout.js index a9c741a5..6cdcad2d 100644 --- a/app/js/ui/layout.js +++ b/app/js/ui/layout.js @@ -115,7 +115,7 @@ function parseColumn() { key + '">Onメディアフィルター
linkOnリンク解析
TLヘッダーの色
[ここにトゥートはありません。]
F5で再読込できます。
'; + '" class="tl" tlid="' + key + '"'+notf_attr+'>
[ここにトゥートはありません。]
F5/⌘+Rで再読込できます。
'; $("#timeline-container").append(html); localStorage.removeItem("pool_" + key); if (acct.data) { diff --git a/app/main.js b/app/main.js index 675717dc..aeb29c47 100644 --- a/app/main.js +++ b/app/main.js @@ -132,6 +132,11 @@ function createWindow() { accelerator: 'Alt+Command+I', click: function() { mainWindow.toggleDevTools(); } }, + { + label: '再読み込み', + accelerator: 'CmdOrCtrl+R', + click: function() { mainWindow.webContents.send('reload', ""); } + } ] } ];