TheDesk Usain (18.10.1)

This commit is contained in:
Cutls 2019-09-22 20:36:11 +09:00
parent c5c996cb7a
commit c9cf89adeb
7 changed files with 20 additions and 19 deletions

View File

@ -100,10 +100,10 @@ function notfColumn(acct_id, tlid, sys) {
todc(); todc();
//Markers //Markers
var markers = localStorage.getItem("markers"); var markers = localStorage.getItem("markers");
if (markers == "no") { if (markers == "yes") {
markers = false; markers = true;
} else { } else {
markers = true markers = false
} }
if (markers) { if (markers) {
getMarker(tlid, "notf", acct_id) getMarker(tlid, "notf", acct_id)

View File

@ -153,10 +153,10 @@ function tl(type, data, acct_id, tlid, delc, voice, mode) {
if (type == "home" || type == "notf") { if (type == "home" || type == "notf") {
//Markers //Markers
var markers = localStorage.getItem("markers"); var markers = localStorage.getItem("markers");
if (markers == "no") { if (markers == "yes") {
markers = false; markers = true;
} else { } else {
markers = true markers = false
} }
if (markers) { if (markers) {
getMarker(tlid, type, acct_id) getMarker(tlid, type, acct_id)

View File

@ -217,10 +217,10 @@ function parseColumn(target, dontclose) {
unread = "" unread = ""
} }
var markers = localStorage.getItem("markers"); var markers = localStorage.getItem("markers");
if (markers == "no") { if (markers == "yes") {
markers = false; markers = true;
} else { } else {
markers = true markers = false
} }
if (!markers) { if (!markers) {
unread = "" unread = ""

View File

@ -1,6 +1,6 @@
{ {
"name": "thedesk", "name": "thedesk",
"version": "18.10.0", "version": "18.10.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

@ -714,13 +714,14 @@
<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.10.0)</h5> <h5>Release Note Usamin (18.10.1)</h5>
・全てのカラムの縦、横幅を自由に変更できるように。<br> ・Markers(3.0.0 rc1)の送信タイミングを変更。デフォルトでオフに。<br>
・一部トゥートがTLに表示されない不具合を修正。<br> ・通知音の音量が調節できる<br>
・初回起動時にガイダンスを表示<br> ・v1検索API全廃に対応<br>
・Featured tag(master|v3.0)<br> ・投票ボタン押した後に情報が更新されない(投票済みにならない)不具合を修正<br>
・未読マーカー(master|v3.0)<br> ・Unknownなメディアの拡張子を表示<br>
・引用のトゥート(設定で引用形式を「パラメーター」にすることで対応インスタンスで利用可)<br> ・Pleromaでタグメニューが出ずにTL追加になる不具合を修正<br>
・削除して再編集でアカウントが切り替えできてしまう不具合を修正<br>
</div> </div>
<div id="release-en" style="display:none"> <div id="release-en" style="display:none">
<h5>Let's make it native!</h5> <h5>Let's make it native!</h5>

View File

@ -1,5 +1,5 @@
const fs = require("fs") const fs = require("fs")
let ver = "Usamin (18.10.1)-beta" let ver = "Usamin (18.10.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)

View File

@ -311,7 +311,7 @@ var tlConstruction = [
id: "markers", id: "markers",
storage: "markers", storage: "markers",
checkbox: true, checkbox: true,
setValue: "yes", setValue: "no",
text: { text: {
head: "@@markers@@", head: "@@markers@@",
desc: "@@markerswarn@@", desc: "@@markerswarn@@",