Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ba-archive/blue-archive
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dev
Choose a base ref
...
head repository: xiaofeiTM233/blue-archive
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dev
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 10 commits
  • 3 files changed
  • 3 contributors

Commits on Jan 31, 2025

  1. 本地化

    xiaofeiTM233 committed Jan 31, 2025
    Copy the full SHA
    e3aa21a View commit details

Commits on Feb 1, 2025

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    326da26 View commit details

Commits on Feb 2, 2025

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0af18b3 View commit details

Commits on Feb 4, 2025

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f6e9d11 View commit details

Commits on Feb 5, 2025

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ed9ca91 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1481aa0 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f418879 View commit details

Commits on Feb 7, 2025

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8198d1d View commit details

Commits on Feb 8, 2025

  1. chore(toolbox): tab 不选中辅助按钮,直接跳到下个输入框

    mark9804 committed Feb 8, 2025
    Copy the full SHA
    69eb24a View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    fdb9aff View commit details
Original file line number Diff line number Diff line change
@@ -5,10 +5,12 @@ const props = withDefaults(
icon: "flag" | "flag-filled" | "translate";
size?: "mini" | "default";
disabled?: boolean;
tabSelect?: boolean;
}>(),
{
size: "default",
disabled: false,
tabSelect: false,
}
);
@@ -49,6 +51,7 @@ function handleMouseLeave() {
transition-colors
duration-300
cursor-pointer
:tab-index="tabSelect ? 0 : -1"
class="@hover:bg-gray-200 @dark:@hover:bg-gray-800"
:class="{
'opacity-50 cursor-not-allowed': disabled,
26 changes: 6 additions & 20 deletions apps/blue-archive-story-viewer/src/components/FriendLinks.vue
Original file line number Diff line number Diff line change
@@ -16,33 +16,19 @@ const links: FriendLink[] = [
description: "更新公告等内容发布",
},
{
title: "碧蓝档案资讯站",
url: "https://space.bilibili.com/37507923",
logo: "/image/contributor/zixunzhan.webp",
logoDescription: "资讯站logo",
description: "为玩家服务的民间组织,尊重官方设定",
},
{
title: "Gamekee wiki",
url: "https://www.gamekee.com/ba/",
logo: "/image/contributor/xwhlogo2.webp",
logoDescription: "校委会 logo",
description: "碧蓝档案中文Wiki站,提供攻略、资讯、图鉴等服务",
},
{
title: "项目仓库",
title: "原项目仓库",
url: "https://github.com/ba-archive/blue-archive",
logo: "/image/contributor/github-logo.svg",
logoDescription: "GitHub logo",
shouldReverseOnDarkTheme: true,
description: "欢迎前端、美术、Unity等同学加入",
},
{
title: "CloudFlare",
url: "https://www.cloudflare.com/",
logo: "/image/contributor/cloudflare.svg",
logoDescription: "CloudFlare logo",
description: "为本站提供 CDN 服务",
title: "本镜像仓库",
url: "https://github.com/xiaofeiTM233/blue-archive",
logo: "/image/contributor/github-logo.svg",
logoDescription: "GitHub logo",
description: "镜像所在仓库",
},
];
</script>
Original file line number Diff line number Diff line change
@@ -45,10 +45,10 @@
<div id="settings">
<language-selector :style="{ gridArea: 'language' }" />
<theme-switcher :style="{ gridArea: 'theme' }" />
<div class="sponsor-message">
<!--div class="sponsor-message">
Served with
<a href="https://cloudflare.com" target="_blank">Cloudflare</a>
</div>
</div-->
</div>
</div>
</template>