TheDesk Usain (18.10.1)
This commit is contained in:
parent
c5c996cb7a
commit
c9cf89adeb
|
@ -100,10 +100,10 @@ function notfColumn(acct_id, tlid, sys) {
|
|||
todc();
|
||||
//Markers
|
||||
var markers = localStorage.getItem("markers");
|
||||
if (markers == "no") {
|
||||
markers = false;
|
||||
if (markers == "yes") {
|
||||
markers = true;
|
||||
} else {
|
||||
markers = true
|
||||
markers = false
|
||||
}
|
||||
if (markers) {
|
||||
getMarker(tlid, "notf", acct_id)
|
||||
|
|
|
@ -153,10 +153,10 @@ function tl(type, data, acct_id, tlid, delc, voice, mode) {
|
|||
if (type == "home" || type == "notf") {
|
||||
//Markers
|
||||
var markers = localStorage.getItem("markers");
|
||||
if (markers == "no") {
|
||||
markers = false;
|
||||
if (markers == "yes") {
|
||||
markers = true;
|
||||
} else {
|
||||
markers = true
|
||||
markers = false
|
||||
}
|
||||
if (markers) {
|
||||
getMarker(tlid, type, acct_id)
|
||||
|
|
|
@ -217,10 +217,10 @@ function parseColumn(target, dontclose) {
|
|||
unread = ""
|
||||
}
|
||||
var markers = localStorage.getItem("markers");
|
||||
if (markers == "no") {
|
||||
markers = false;
|
||||
if (markers == "yes") {
|
||||
markers = true;
|
||||
} else {
|
||||
markers = true
|
||||
markers = false
|
||||
}
|
||||
if (!markers) {
|
||||
unread = ""
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "thedesk",
|
||||
"version": "18.10.0",
|
||||
"version": "18.10.1",
|
||||
"description": "TheDesk is a Mastodon client for PC.",
|
||||
"repository": "https://github.com/cutls/TheDesk",
|
||||
"main": "main.js",
|
||||
|
|
|
@ -714,13 +714,14 @@
|
|||
<a href="https://ja.mstdn.wiki/TheDesk" target="_blank">機能一覧</a><br>
|
||||
Pixiv Fanboxでは支援者様限定で様々なTheDeskに関する記事をご覧いただけます。最低月一更新。<br>
|
||||
困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。
|
||||
<h5>Release Note Usamin (18.10.0)</h5>
|
||||
・全てのカラムの縦、横幅を自由に変更できるように。<br>
|
||||
・一部トゥートがTLに表示されない不具合を修正。<br>
|
||||
・初回起動時にガイダンスを表示<br>
|
||||
・Featured tag(master|v3.0)<br>
|
||||
・未読マーカー(master|v3.0)<br>
|
||||
・引用のトゥート(設定で引用形式を「パラメーター」にすることで対応インスタンスで利用可)<br>
|
||||
<h5>Release Note Usamin (18.10.1)</h5>
|
||||
・Markers(3.0.0 rc1)の送信タイミングを変更。デフォルトでオフに。<br>
|
||||
・通知音の音量が調節できる<br>
|
||||
・v1検索API全廃に対応<br>
|
||||
・投票ボタン押した後に情報が更新されない(投票済みにならない)不具合を修正<br>
|
||||
・Unknownなメディアの拡張子を表示<br>
|
||||
・Pleromaでタグメニューが出ずにTL追加になる不具合を修正<br>
|
||||
・削除して再編集でアカウントが切り替えできてしまう不具合を修正<br>
|
||||
</div>
|
||||
<div id="release-en" style="display:none">
|
||||
<h5>Let's make it native!</h5>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
const fs = require("fs")
|
||||
let ver = "Usamin (18.10.1)-beta"
|
||||
let ver = "Usamin (18.10.1)"
|
||||
const execSync = require('child_process').execSync;
|
||||
let gitHash = execSync("git rev-parse HEAD").toString().trim()
|
||||
fs.writeFileSync("../../git", gitHash)
|
||||
|
|
|
@ -311,7 +311,7 @@ var tlConstruction = [
|
|||
id: "markers",
|
||||
storage: "markers",
|
||||
checkbox: true,
|
||||
setValue: "yes",
|
||||
setValue: "no",
|
||||
text: {
|
||||
head: "@@markers@@",
|
||||
desc: "@@markerswarn@@",
|
||||
|
|
Loading…
Reference in New Issue
Block a user