Skip to content

Commit 3c2022a

Browse files
committed
merge target branch
2 parents 1dd99c2 + 824ac6f commit 3c2022a

6 files changed

Lines changed: 19 additions & 19 deletions

File tree

app/components/BlogPostListCard.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ defineProps<{
1717
/** For keyboard nav scaffold */
1818
index: number
1919
}>()
20-
21-
const emit = defineEmits<{
22-
focus: [index: number]
23-
}>()
2420
</script>
2521

2622
<template>
@@ -31,8 +27,6 @@ const emit = defineEmits<{
3127
:to="`/blog/${path}`"
3228
:data-suggestion-index="index"
3329
class="flex items-center gap-4 focus-visible:outline-none after:content-[''] after:absolute after:inset-0"
34-
@focus="index != null && emit('focus', index)"
35-
@mouseenter="index != null && emit('focus', index)"
3630
>
3731
<!-- Text Content -->
3832
<div class="flex-1 min-w-0 text-left gap-2">

app/components/BlogPostWrapper.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const blueskyPostUri = computed(() => blueskyLink.value?.postUri ?? null)
2727
<AuthorList :authors="frontmatter.authors" variant="expanded" />
2828
</div>
2929
</div>
30-
<article class="max-w-prose mx-auto p-2 prose dark:prose-invert">
30+
<article class="max-w-prose mx-auto p-2 border-b border-border prose dark:prose-invert">
3131
<div class="text-sm text-fg-muted font-mono mb-4">
3232
<DateTime :datetime="frontmatter.date" year="numeric" month="short" day="numeric" />
3333
</div>

app/pages/about.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ useSeoMeta({
2020
2121
defineOgImageComponent('Default', {
2222
primaryColor: '#60a5fa',
23-
title: 'About npmx',
23+
title: 'about npmx',
2424
description: 'a fast, modern browser for the **npm registry**',
2525
})
2626

app/pages/blog/index.vue

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
const router = useRouter()
33
44
import type { BlogPostFrontmatter } from '#shared/schemas/blog'
5-
import { isModEventDivert } from '@atproto/api/dist/client/types/tools/ozone/moderation/defs'
65
76
const blogModules = import.meta.glob<BlogPostFrontmatter>('./*.md', { eager: true })
87
@@ -66,7 +65,6 @@ useSeoMeta({
6665
:topics="Array.isArray(post.tags) ? post.tags : placeHolder"
6766
:published="post.date"
6867
:index="idx"
69-
@focus="i => console.log('Hovered:', i)"
7068
/>
7169
<hr v-if="idx < posts.length - 1" class="border-border-subtle" />
7270
</template>
@@ -79,9 +77,7 @@ useSeoMeta({
7977
<!-- </div> -->
8078
</article>
8179

82-
<isModEventDivert v-else class="text-center py-20 text-fg-subtle"
83-
>No posts found.</isModEventDivert
84-
>
80+
<p v-else class="text-center py-20 text-fg-subtle">No posts found.</p>
8581
</article>
8682
</main>
8783
</template>

i18n/locales/ja-JP.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"seo": {
33
"home": {
44
"title": "npmx - npmレジストリのためのパッケージブラウザ",
5-
"description": "優れたnpmレジストリブラウザ。モダンなインターフェイスでパッケージの検索、閲覧、探索が可能です。"
5+
"description": "高速でモダンなnpmレジストリブラウザ。モダンなインターフェイスでパッケージの検索、閲覧、探索が可能です。"
66
}
77
},
88
"version": "バージョン",
99
"built_at": "ビルド {0}",
1010
"alt_logo": "npmxロゴ",
11-
"tagline": "優れたnpmレジストリブラウザ",
11+
"tagline": "高速でモダンなnpmレジストリブラウザ",
1212
"non_affiliation_disclaimer": "npm, Inc.とは関係ありません。",
1313
"trademark_disclaimer": "npmはnpm, Inc.の登録商標です。当サイトはnpm, Inc.とは関係ありません。",
1414
"footer": {
@@ -221,7 +221,8 @@
221221
"important": "重要",
222222
"warning": "警告",
223223
"caution": "注意"
224-
}
224+
},
225+
"copy_as_markdown": "READMEをMarkdownとしてコピーする"
225226
},
226227
"provenance_section": {
227228
"title": "Provenance",
@@ -930,6 +931,10 @@
930931
"label": "ダウンロード数/週",
931932
"description": "1週間のダウンロード数"
932933
},
934+
"totalLikes": {
935+
"label": "いいね",
936+
"description": "いいねの合計数"
937+
},
933938
"lastUpdated": {
934939
"label": "公開日",
935940
"description": "このバージョンが公開された日付"

lunaria/files/ja-JP.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"seo": {
33
"home": {
44
"title": "npmx - npmレジストリのためのパッケージブラウザ",
5-
"description": "優れたnpmレジストリブラウザ。モダンなインターフェイスでパッケージの検索、閲覧、探索が可能です。"
5+
"description": "高速でモダンなnpmレジストリブラウザ。モダンなインターフェイスでパッケージの検索、閲覧、探索が可能です。"
66
}
77
},
88
"version": "バージョン",
99
"built_at": "ビルド {0}",
1010
"alt_logo": "npmxロゴ",
11-
"tagline": "優れたnpmレジストリブラウザ",
11+
"tagline": "高速でモダンなnpmレジストリブラウザ",
1212
"non_affiliation_disclaimer": "npm, Inc.とは関係ありません。",
1313
"trademark_disclaimer": "npmはnpm, Inc.の登録商標です。当サイトはnpm, Inc.とは関係ありません。",
1414
"footer": {
@@ -221,7 +221,8 @@
221221
"important": "重要",
222222
"warning": "警告",
223223
"caution": "注意"
224-
}
224+
},
225+
"copy_as_markdown": "READMEをMarkdownとしてコピーする"
225226
},
226227
"provenance_section": {
227228
"title": "Provenance",
@@ -930,6 +931,10 @@
930931
"label": "ダウンロード数/週",
931932
"description": "1週間のダウンロード数"
932933
},
934+
"totalLikes": {
935+
"label": "いいね",
936+
"description": "いいねの合計数"
937+
},
933938
"lastUpdated": {
934939
"label": "公開日",
935940
"description": "このバージョンが公開された日付"

0 commit comments

Comments
 (0)