Skip to content

Commit

Permalink
追従
Browse files Browse the repository at this point in the history
  • Loading branch information
DA-TENSHI authored Nov 12, 2024
2 parents 00d14ba + f8533b0 commit 0b3f7c7
Show file tree
Hide file tree
Showing 90 changed files with 859 additions and 889 deletions.
4 changes: 3 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@
"github.vscode-github-actions",
"redhat.vscode-yaml",
],
}

}

3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@
".github/ISSUE_TEMPLATE/config.yml",
],
},
}
}

2 changes: 1 addition & 1 deletion compose_example.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
web:
build: .
image: ghcr.io/taiyme/misskey:2024.10.1-taiyme.0
image: ghcr.io/taiyme/misskey:2024.10.1-taiyme.1
restart: always
links:
- db
Expand Down
67 changes: 35 additions & 32 deletions idea/MkDisableSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,35 +10,38 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
<div v-if="disabled" :class="[$style.cover]"></div>
</div>
</template>

<script lang="ts" setup>
defineProps<{
disabled?: boolean;
}>();
</script>

<style lang="scss" module>
.root {
position: relative;
}

.disabled {
opacity: 0.7;
}

.cover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
cursor: not-allowed;
background-image: repeating-linear-gradient(
135deg,
transparent 0px 10px,
var(--c) 6px 16px
);
--c: rgb(from var(--MI_THEME-error) r g b / 0.25);
}
</style>

<div v-if="disabled" :class="[$style.cover]"></div>
</div>
</template>

<script lang="ts" setup>
defineProps<{
disabled?: boolean;
}>();
</script>

<style lang="scss" module>
.root {
position: relative;
}

.disabled {
opacity: 0.7;
}

.cover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
cursor: not-allowed;
background-image: repeating-linear-gradient(
135deg,
transparent 0px 10px,
var(--c) 6px 16px
);
--c: rgb(from var(--MI_THEME-error) r g b / 0.25);
}
</style>
54 changes: 8 additions & 46 deletions locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10517,29 +10517,25 @@ export interface Locale extends ILocale {
*/
readonly "aboutTaiyme": string;
/**
* taiyme拡張機能
* taiyme限定機能
*/
readonly "taiymeSettings": string;
readonly "taiymeFeatures": string;
/**
* taiyme実験的機能
* これらの機能はtaiymeで独自実装したものです。
*/
readonly "taiymeFlags": string;
readonly "taiymeFeaturesDescription": string;
/**
* {name}は、Misskeyの派生であるtaiymeを使用したサーバーのひとつです。
*/
readonly "poweredByTaiyme": ParameterizedString<"name">;
/**
* {name}を支援
* taiyを支援する
*/
readonly "supportX": ParameterizedString<"name">;
readonly "supportTaiy": string;
/**
* コミットハッシュ
*/
readonly "commitHash": string;
/**
* 問題の報告や要望はGitHubで受け付けています。
*/
readonly "reportIssuesToGithub": string;
/**
* センシティブな画像
*/
Expand Down Expand Up @@ -10605,14 +10601,10 @@ export interface Locale extends ILocale {
*/
readonly "updatedX": ParameterizedString<"x">;
readonly "_about": {
/**
* taiymeについて
*/
readonly "title": string;
/**
* taiymeは、Misskeyから派生したオープンソースのソフトウェアです。
*/
readonly "description": string;
readonly "taiymeIsOSS": string;
/**
* プロジェクトメンバー
*/
Expand All @@ -10626,15 +10618,7 @@ export interface Locale extends ILocale {
*/
readonly "patrons": string;
};
readonly "_settings": {
/**
* taiyme拡張機能
*/
readonly "title": string;
/**
* これらの機能はtaiymeで独自実装したものです。
*/
readonly "description": string;
readonly "_features": {
readonly "_tickerPosition": {
/**
* ノートのサーバー情報の表示位置
Expand Down Expand Up @@ -10715,28 +10699,6 @@ export interface Locale extends ILocale {
*/
readonly "caption": string;
};
};
readonly "_flags": {
/**
* taiyme実験的機能
*/
readonly "title": string;
/**
* これらの機能はtaiymeで独自実装したものです。
*/
readonly "description": string;
/**
* これらの設定を有効にすると、ページの表示や挙動に深刻な影響を及ぼし、{name}が正常に利用できなくなる可能性があります。
*/
readonly "warning": ParameterizedString<"name">;
/**
* {x}を強制取得
*/
readonly "forceFetchX": ParameterizedString<"x">;
/**
* {x}を開く
*/
readonly "openX": ParameterizedString<"x">;
readonly "_preventLongPressContextMenu": {
/**
* 長押しによるコンテキストメニューイベントの発行を防ぐ
Expand Down
20 changes: 5 additions & 15 deletions locales/ja-JP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2802,12 +2802,11 @@ _tms:
taiy: "taiy"
taiyme: "taiyme"
aboutTaiyme: "taiymeについて"
taiymeSettings: "taiyme拡張機能"
taiymeFlags: "taiyme実験的機能"
taiymeFeatures: "taiyme限定機能"
taiymeFeaturesDescription: "これらの機能はtaiymeで独自実装したものです。"
poweredByTaiyme: "{name}は、Misskeyの派生であるtaiymeを使用したサーバーのひとつです。"
supportX: "{name}を支援"
supportTaiy: "taiyを支援する"
commitHash: "コミットハッシュ"
reportIssuesToGithub: "問題の報告や要望はGitHubで受け付けています。"
sensitiveImage: "センシティブな画像"
sensitiveVideo: "センシティブな動画"
sensitiveAudio: "センシティブな音声"
Expand All @@ -2825,14 +2824,11 @@ _tms:
taiymeUpdated: "taiymeが更新されました!"
updatedX: "{x}が更新されました!"
_about:
title: "taiymeについて"
description: "taiymeは、Misskeyから派生したオープンソースのソフトウェアです。"
taiymeIsOSS: "taiymeは、Misskeyから派生したオープンソースのソフトウェアです。"
projectMembers: "プロジェクトメンバー"
contributors: "コントリビューター"
patrons: "支援者"
_settings:
title: "taiyme拡張機能"
description: "これらの機能はtaiymeで独自実装したものです。"
_features:
_tickerPosition:
label: "ノートのサーバー情報の表示位置"
default: "デフォルト"
Expand All @@ -2855,12 +2851,6 @@ _tms:
_pullToRefreshAllReload:
label: "「引っ張ってリロード」でページ全体を再読み込みする"
caption: "構成しているページ全体を再読み込みする動作に置き換えます。"
_flags:
title: "taiyme実験的機能"
description: "これらの機能はtaiymeで独自実装したものです。"
warning: "これらの設定を有効にすると、ページの表示や挙動に深刻な影響を及ぼし、{name}が正常に利用できなくなる可能性があります。"
forceFetchX: "{x}を強制取得"
openX: "{x}を開く"
_preventLongPressContextMenu:
label: "長押しによるコンテキストメニューイベントの発行を防ぐ"
caption: "長押しを含む操作が中断される問題を解消します。"
Expand Down
3 changes: 2 additions & 1 deletion packages/backend/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@
"typescriptreact",
],
"typescript.tsdk": "./node_modules/typescript/lib",
}
}

1 change: 0 additions & 1 deletion packages/frontend/src/components/MkAchievements.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ onMounted(() => {
user-select: none;
filter: drop-shadow(0px 2px 2px #00000044);
box-shadow: 0 1px 0px #ffffff88 inset;
overflow: hidden; // fallback (overflow: clip)
overflow: clip;
}

Expand Down
2 changes: 0 additions & 2 deletions packages/frontend/src/components/MkAutocomplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,6 @@ onBeforeUnmount(() => {
position: fixed;
max-width: 100%;
margin-top: calc(1em + 8px);
overflow: hidden; // fallback (overflow: clip)
overflow: clip;
transition: top 0.1s ease, left 0.1s ease;
}
Expand All @@ -402,7 +401,6 @@ onBeforeUnmount(() => {
align-items: center;
padding: 4px 12px;
white-space: nowrap;
overflow: hidden; // fallback (overflow: clip)
overflow: clip;
font-size: 0.9em;
cursor: default;
Expand Down
Loading

0 comments on commit 0b3f7c7

Please sign in to comment.