Skip to content

Commit

Permalink
README & Announcement
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanxven committed Jan 6, 2025
1 parent 9695fc5 commit d79313f
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 11 deletions.
3 changes: 2 additions & 1 deletion README-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ Supports both Tencent and non-Tencent game clients.

A fun place for casual chats, party setups, bug reports, and suggestions.

QQ Group: 301157623 (Passcode: akari)
QQ Group 1: 301157623 (Passcode: akari)
QQ Group 2: 1021970497 (Passcode: akari)

## 1.4 Beta Versions

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ Gitee 镜像站点:[https://gitee.com/Hanxven/LeagueAkari](https://gitee.com/H

一个适合吹水开黑聊天的好地方,甚至还能反馈 BUG 和提出建议。

企鹅群组:301157623 (密码为 akari)
企鹅群组 1:301157623 (密码为 akari)
企鹅群组 2:1021970497 (密码:akari)

## 1.4 测试版本

Expand Down
11 changes: 6 additions & 5 deletions docs/announcement.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
## 公告 (2025-1-1 00:00)
## 公告 (2025-1-6 22:30)

## 新年快乐

祝大家 2025 新年快乐!

### 存在问题

- 目前 `秒退` 相关功能已经无法使用。(包括 `最后一秒秒退` 以及 `秒退`)
- 目前 `秒退` 相关功能已经无法使用。(包括 `最后一秒秒退` 以及 `秒退`)。目前该功能已无法修复,将于后续版本中移除。

## 声明

欢迎使用 League Akari。

QQ 群聊:[301157623](https://qm.qq.com/q/F1Xv85etlm) (密码:akari)
QQ 群聊 (1):[301157623](https://qm.qq.com/q/F1Xv85etlm) (密码:akari)
QQ 群聊 (2):[1021970497](https://qm.qq.com/q/SWfPsyeyKy) (密码:akari)

本软件是开源软件,遵循 GPL-3.0 协议。

本软件为**免费软件**不提供任何形式的付费服务,无任何捐赠或赞助渠道
本软件为**免费软件**无付费项目。若您从任何渠道购买了本软件,请立即退款

支持此软件请 Star 本项目 ❤️。
支持此软件请 [Star](https://github.com/Hanxven/LeagueAkari) 本项目 ❤️。
8 changes: 8 additions & 0 deletions src/main/shards/window-manager/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ export class WindowManagerMain implements IAkariShardInitDispose {
public readonly settings = new WindowManagerSettings()
public readonly state = new WindowManagerState()

get mainWindow() {
return this._mw
}

get auxWindow() {
return this._aw
}

constructor(deps: any) {
this._ipc = deps['akari-ipc-main']
this._mobx = deps['mobx-utils-main']
Expand Down
7 changes: 3 additions & 4 deletions src/renderer/src-aux-window/views/opgg/OpggChampion.vue
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@
</div>
<div class="card-area" v-if="data && data.data.synergies && data.data.synergies.length">
<div class="card-title">
{{t('OpggChampion.synergies')}}<NCheckbox size="small" v-model:checked="isSynergiesExpanded">{{
{{ t('OpggChampion.synergies')
}}<NCheckbox size="small" v-model:checked="isSynergiesExpanded">{{
t('OpggChampion.showAll')
}}</NCheckbox>
</div>
Expand Down Expand Up @@ -313,7 +314,6 @@
<template #tab>
<span class="augments-tab-title">{{ t('OpggChampion.augmentGold') }}</span>
</template>

<div
class="augments-group"
v-for="(a, i) of augments[1].augments.slice(0, isAugmentsExpanded ? Infinity : 4)"
Expand Down Expand Up @@ -744,6 +744,7 @@ import { useLeagueClientStore } from '@renderer-shared/shards/league-client/stor
import { championIconUri } from '@renderer-shared/shards/league-client/utils'
import { LoggerRenderer } from '@renderer-shared/shards/logger'
import { ArrowForwardIosOutlined as ArrowForwardIosOutlinedIcon } from '@vicons/material'
import { useTranslation } from 'i18next-vue'
import {
NButton,
NCheckbox,
Expand All @@ -756,7 +757,6 @@ import {
useMessage
} from 'naive-ui'
import { computed, ref, watchEffect } from 'vue'
import { useTranslation } from 'i18next-vue'
const props = defineProps<{
region?: string
Expand All @@ -783,7 +783,6 @@ const emits = defineEmits<{
]
}>()
const { t } = useTranslation()
const lcs = useLeagueClientStore()
Expand Down
7 changes: 7 additions & 0 deletions src/renderer/src-aux-window/views/opgg/workaround.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import 'naive-ui'

declare module 'naive-ui' {
interface TabPaneSlots {
tab?: () => VNode[]
}
}

0 comments on commit d79313f

Please sign in to comment.