TheDesk Usamin (18.9.1)

This commit is contained in:
Cutls 2019-09-01 01:31:19 +09:00
parent 6e2e488565
commit d5a27ba814
5 changed files with 7 additions and 8 deletions

View File

@ -16,6 +16,9 @@ textarea {
min-height: 100px !important; min-height: 100px !important;
font-family: inherit; font-family: inherit;
} }
#post-box .ui-resizable-s, #post-box .ui-resizable-se{
display: none !important;
}
.cancel { .cancel {
font-size: 0.5rem; font-size: 0.5rem;
@ -108,7 +111,6 @@ textarea {
} }
#left-side { #left-side {
float: left; float: left;
overflow-y: scroll;
overflow-x: hidden; overflow-x: hidden;
height: calc(100% - 32px); height: calc(100% - 32px);
} }
@ -117,7 +119,6 @@ textarea {
float: left; float: left;
width: 300px; width: 300px;
padding: 5px; padding: 5px;
overflow-y: scroll;
overflow-x: hidden; overflow-x: hidden;
height: calc(100% - 32px); height: calc(100% - 32px);
} }

View File

@ -47,9 +47,6 @@ function show() {
$('#post-box').css("top", top + "px") $('#post-box').css("top", top + "px")
var height = localStorage.getItem("postbox-height"); var height = localStorage.getItem("postbox-height");
var width = localStorage.getItem("postbox-width"); var width = localStorage.getItem("postbox-width");
if (height) {
$('#post-box').css("height", height + "px")
}
if (width) { if (width) {
$('#post-box').css("width", width + "px") $('#post-box').css("width", width + "px")
} else { } else {
@ -83,7 +80,6 @@ $(function () {
minHeight: 150, minHeight: 150,
minWidth: 100, minWidth: 100,
stop: function (event, ui) { stop: function (event, ui) {
localStorage.setItem("postbox-height", ui.size.height);
localStorage.setItem("postbox-width", ui.size.width); localStorage.setItem("postbox-width", ui.size.width);
} }
}); });

View File

@ -1,6 +1,6 @@
{ {
"name": "thedesk", "name": "thedesk",
"version": "18.9.0", "version": "18.9.1",
"description": "TheDesk is a Mastodon client for PC.", "description": "TheDesk is a Mastodon client for PC.",
"repository": "https://github.com/cutls/TheDesk", "repository": "https://github.com/cutls/TheDesk",
"main": "main.js", "main": "main.js",

View File

@ -684,6 +684,8 @@
<a href="https://ja.mstdn.wiki/TheDesk" target="_blank">機能一覧</a><br> <a href="https://ja.mstdn.wiki/TheDesk" target="_blank">機能一覧</a><br>
Pixiv Fanboxでは支援者様限定で様々なTheDeskに関する記事をご覧いただけます。最低月一更新。<br> Pixiv Fanboxでは支援者様限定で様々なTheDeskに関する記事をご覧いただけます。最低月一更新。<br>
困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。 困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。
<h5>Release Note Usamin (18.9.1)</h5>
・トゥートボックスのリサイズを横だけにした
<h5>Release Note Usamin (18.9.0)</h5> <h5>Release Note Usamin (18.9.0)</h5>
・設定エクスポートファイルが変更された<br> ・設定エクスポートファイルが変更された<br>
 .thedeskconfigv2: 17.2.0~18.8.3<br>  .thedeskconfigv2: 17.2.0~18.8.3<br>

View File

@ -1,6 +1,6 @@
const fs = require("fs") const fs = require("fs")
const readlineSync = require('readline-sync') const readlineSync = require('readline-sync')
let ver = "Usamin (18.9.0)" let ver = "Usamin (18.9.1)"
const execSync = require('child_process').execSync; const execSync = require('child_process').execSync;
let gitHash = execSync("git rev-parse HEAD").toString().trim() let gitHash = execSync("git rev-parse HEAD").toString().trim()
fs.writeFileSync("../../git", gitHash) fs.writeFileSync("../../git", gitHash)