mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-24 00:39:32 +09:00
Merge eb34d8bbe7
into e8bf6285cb
This commit is contained in:
commit
e72722061b
@ -4,6 +4,7 @@
|
|||||||
-
|
-
|
||||||
|
|
||||||
### Client
|
### Client
|
||||||
|
- Enhance: リモートのノートのリンクをコピーできるように
|
||||||
- Fix: 画面サイズが変わった際にナビゲーションバーが自動で折りたたまれない問題を修正
|
- Fix: 画面サイズが変わった際にナビゲーションバーが自動で折りたたまれない問題を修正
|
||||||
- Fix: サーバー情報メニューに区切り線が不足していたのを修正
|
- Fix: サーバー情報メニューに区切り線が不足していたのを修正
|
||||||
- Fix: ノートがログインしているユーザーしか見れない場合にログインダイアログを閉じるとその後の動線がなくなる問題を修正
|
- Fix: ノートがログインしているユーザーしか見れない場合にログインダイアログを閉じるとその後の動線がなくなる問題を修正
|
||||||
|
@ -48,6 +48,7 @@ pin: "ピン留め"
|
|||||||
unpin: "ピン留め解除"
|
unpin: "ピン留め解除"
|
||||||
copyContent: "内容をコピー"
|
copyContent: "内容をコピー"
|
||||||
copyLink: "リンクをコピー"
|
copyLink: "リンクをコピー"
|
||||||
|
copyRemoteLink: "リモートのリンクをコピー"
|
||||||
copyLinkRenote: "リノートのリンクをコピー"
|
copyLinkRenote: "リノートのリンクをコピー"
|
||||||
delete: "削除"
|
delete: "削除"
|
||||||
deleteAndEdit: "削除して編集"
|
deleteAndEdit: "削除して編集"
|
||||||
|
@ -237,11 +237,6 @@ export function getNoteMenu(props: {
|
|||||||
os.success();
|
os.success();
|
||||||
}
|
}
|
||||||
|
|
||||||
function copyLink(): void {
|
|
||||||
copyToClipboard(`${url}/notes/${appearNote.id}`);
|
|
||||||
os.success();
|
|
||||||
}
|
|
||||||
|
|
||||||
function togglePin(pin: boolean): void {
|
function togglePin(pin: boolean): void {
|
||||||
os.apiWithDialog(pin ? 'i/pin' : 'i/unpin', {
|
os.apiWithDialog(pin ? 'i/pin' : 'i/unpin', {
|
||||||
noteId: appearNote.id,
|
noteId: appearNote.id,
|
||||||
@ -322,6 +317,13 @@ export function getNoteMenu(props: {
|
|||||||
|
|
||||||
if (appearNote.url || appearNote.uri) {
|
if (appearNote.url || appearNote.uri) {
|
||||||
menuItems.push({
|
menuItems.push({
|
||||||
|
icon: 'ti ti-link',
|
||||||
|
text: i18n.ts.copyRemoteLink,
|
||||||
|
action: () => {
|
||||||
|
copyToClipboard(appearNote.url ?? appearNote.uri);
|
||||||
|
os.success();
|
||||||
|
},
|
||||||
|
}, {
|
||||||
icon: 'ti ti-external-link',
|
icon: 'ti ti-external-link',
|
||||||
text: i18n.ts.showOnRemote,
|
text: i18n.ts.showOnRemote,
|
||||||
action: () => {
|
action: () => {
|
||||||
@ -474,6 +476,13 @@ export function getNoteMenu(props: {
|
|||||||
|
|
||||||
if (appearNote.url || appearNote.uri) {
|
if (appearNote.url || appearNote.uri) {
|
||||||
menuItems.push({
|
menuItems.push({
|
||||||
|
icon: 'ti ti-link',
|
||||||
|
text: i18n.ts.copyRemoteLink,
|
||||||
|
action: () => {
|
||||||
|
copyToClipboard(appearNote.url ?? appearNote.uri);
|
||||||
|
os.success();
|
||||||
|
},
|
||||||
|
}, {
|
||||||
icon: 'ti ti-external-link',
|
icon: 'ti ti-external-link',
|
||||||
text: i18n.ts.showOnRemote,
|
text: i18n.ts.showOnRemote,
|
||||||
action: () => {
|
action: () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user