Skip to content

Commit db0f958

Browse files
Merge pull request #6 from YimingZhanshen/copilot/fix-tray-exit-freeze-issue
Rebrand to AirPodsWindows v1.1.0 and fix video replay on x64
2 parents 993b514 + 9acfda4 commit db0f958

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+146
-135
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ Add any other context about the problem here.
4141

4242
<!--
4343
Upload the contents of log files below.
44-
You can open their directory in AirPodsDesktop settings or manually navigate to "C:\Users\<Username>\AppData\Local\AirPodsDesktop".
44+
You can open their directory in AirPodsWindows settings or manually navigate to "C:\Users\<Username>\AppData\Local\AirPodsWindows".
4545
-->
4646

47-
<details><summary><b>AirPodsDesktop.log</b></summary>
47+
<details><summary><b>AirPodsWindows.log</b></summary>
4848

4949
```
50-
Launch AirPodsDesktop with "--trace" parameter.
51-
Then after the bug occurred, insert the contents of "AirPodsDesktop.log" here.
50+
Launch AirPodsWindows with "--trace" parameter.
51+
Then after the bug occurred, insert the contents of "AirPodsWindows.log" here.
5252
```
5353
</details>
5454

.github/workflows/windows.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,20 +115,20 @@ jobs:
115115
working-directory: Build\${{ env.BUILD_TYPE }}\Installer
116116
run: |
117117
cd _CPack_Packages\${{ env.NSIS_ARCH }}\NSIS
118-
move AirPodsDesktop-*-${{ env.NSIS_ARCH }} AirPodsDesktop-${{ github.sha }}-${{ matrix.platform }}
118+
move AirPodsWindows-*-${{ env.NSIS_ARCH }} AirPodsWindows-${{ github.sha }}-${{ matrix.platform }}
119119
120120
- name: Upload artifact - Installer
121121
uses: actions/upload-artifact@v4
122122
if: env.UPLOAD_ARTIFACT == 'true'
123123
with:
124-
name: AirPodsDesktop-${{ github.sha }}-${{ matrix.platform }}-Installer
125-
path: Build\${{ env.BUILD_TYPE }}\Installer\AirPodsDesktop-*-${{ env.NSIS_ARCH }}.exe
124+
name: AirPodsWindows-${{ github.sha }}-${{ matrix.platform }}-Installer
125+
path: Build\${{ env.BUILD_TYPE }}\Installer\AirPodsWindows-*-${{ env.NSIS_ARCH }}.exe
126126
retention-days: 90
127127

128128
- name: Upload artifact - Portable
129129
uses: actions/upload-artifact@v4
130130
if: env.UPLOAD_ARTIFACT == 'true'
131131
with:
132-
name: AirPodsDesktop-${{ github.sha }}-${{ matrix.platform }}-Portable
133-
path: Build\${{ env.BUILD_TYPE }}\Installer\_CPack_Packages\${{ env.NSIS_ARCH }}\NSIS\AirPodsDesktop-${{ github.sha }}-${{ matrix.platform }}\AirPodsDesktop
132+
name: AirPodsWindows-${{ github.sha }}-${{ matrix.platform }}-Portable
133+
path: Build\${{ env.BUILD_TYPE }}\Installer\_CPack_Packages\${{ env.NSIS_ARCH }}\NSIS\AirPodsWindows-${{ github.sha }}-${{ matrix.platform }}\AirPodsWindows
134134
retention-days: 90

CMake/Utils.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# AirPodsDesktop - AirPods Desktop User Experience Enhancement Program.
2+
# AirPodsWindows - AirPods Desktop User Experience Enhancement Program.
33
# Copyright (C) 2021-2022 SpriteOvO
44
#
55
# This program is free software: you can redistribute it and/or modify

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# AirPodsDesktop - AirPods Desktop User Experience Enhancement Program.
2+
# AirPodsWindows - AirPods Desktop User Experience Enhancement Program.
33
# Copyright (C) 2021-2022 SpriteOvO
44
#
55
# This program is free software: you can redistribute it and/or modify
@@ -19,11 +19,11 @@
1919
cmake_minimum_required(VERSION 3.20)
2020

2121
project(
22-
AirPodsDesktop
23-
VERSION 0.4.1 # Don't forget to bump the version in `vcpkg.json` as well
22+
AirPodsWindows
23+
VERSION 1.1.0 # Don't forget to bump the version in `vcpkg.json` as well
2424
LANGUAGES C CXX
2525
DESCRIPTION "AirPods desktop user experience enhancement program"
26-
HOMEPAGE_URL "https://github.com/SpriteOvO/AirPodsDesktop"
26+
HOMEPAGE_URL "https://github.com/YimingZhanshen/AirPodsWindows"
2727
)
2828

2929
include(FetchContent)

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,32 @@ Before you start contributing, make sure you already understand how Git works. Y
88

99
A **locale** for a language looks like this: `en`, `zh`, `ja`, etc. If a language is somewhat different in some regions and you need to translate it differently, then its **locale** looks like this: `en_US`, `zh_CN`, `zh_TW`, etc.
1010

11-
You can check all supported locales by launching *AirPodsDesktop* from the terminal with argument `--print-all-locales`, or `--print-all-locales=Complete` to check all full locale names (with regions).
11+
You can check all supported locales by launching *AirPodsWindows* from the terminal with argument `--print-all-locales`, or `--print-all-locales=Complete` to check all full locale names (with regions).
1212

1313
Examples:
1414

1515
```bash
16-
cd path/to/AirPodsDesktop
17-
./AirPodsDesktop --print-all-locales
18-
./AirPodsDesktop --print-all-locales=Complete
16+
cd path/to/AirPodsWindows
17+
./AirPodsWindows --print-all-locales
18+
./AirPodsWindows --print-all-locales=Complete
1919
```
2020

2121
2. You will need the [*Qt Linguist*](https://doc.qt.io/qt-5/linguist-translators.html) tool to complete the translation work. If you didn't have it, please download and install [Qt 5.15.2](https://www.qt.io/download-qt-installer).
2222

2323
3. This step is to get the `.ts` translation file for a new target locale. If you just want to improve an existing translation, you can skip this step.
2424

25-
You can [open an issue](https://github.com/SpriteOvO/AirPodsDesktop/issues/new/choose) to request a `.ts` translation file directly. Or continue with this step to get the `.ts` translation file yourself (requires you to build *AirPodsDesktop* yourself).
25+
You can [open an issue](https://github.com/YimingZhanshen/AirPodsWindows/issues/new/choose) to request a `.ts` translation file directly. Or continue with this step to get the `.ts` translation file yourself (requires you to build *AirPodsWindows* yourself).
2626

2727
1. Follow the [Build Instructions](/Docs/Build.md) to complete the first build.
2828

2929
2. Adds the target **locale** to the variable `APD_TRANSLATION_LOCALES` in [CMakeLists.txt](/CMakeLists.txt).
3030

31-
3. Rebuild *AirPodsDesktop* once and you will see the `.ts` translation file for your target **locale** in directory `/Source/Resource/Translation`.
31+
3. Rebuild *AirPodsWindows* once and you will see the `.ts` translation file for your target **locale** in directory `/Source/Resource/Translation`.
3232

3333
4. Open the `.ts` translation file with *Qt Linguist* tool and complete the translation.
3434

3535
If you don't know how to use the tool, please read [Qt Linguist Manual: Translators](https://doc.qt.io/qt-5/linguist-translators.html).
3636

3737
5. If you search for comments containing "credit" in *Qt Linguist*, you will see a text for crediting translators. If you wish, you can add your name to its translation as required by the developer comment.
3838

39-
6. After completing the translation work, [submit a PR](https://github.com/SpriteOvO/AirPodsDesktop/compare) for merging.
39+
6. After completing the translation work, [submit a PR](https://github.com/YimingZhanshen/AirPodsWindows/compare) for merging.

Docs/Build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
## Preparations
44
```
5-
git clone --recursive https://github.com/SpriteOvO/AirPodsDesktop.git
6-
cd AirPodsDesktop
5+
git clone --recursive https://github.com/YimingZhanshen/AirPodsWindows.git
6+
cd AirPodsWindows
77
mkdir Build
88
cd Build
99
```

README-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1 align="center">
22
<a href="https://github.com/YimingZhanshen/AirPodsWindows"><img src="/Source/Resource/Image/Icon.svg" alt="Icon" width="128"></a>
33
<br>
4-
AirPodsDesktop
4+
AirPodsWindows
55
</h1>
66
<p align="center">AirPods 桌面用户体验增强程序 - Windows 平台完整 ANC 控制支持</p>
77
<p align="center">
@@ -59,7 +59,7 @@
5959
查看 [构建说明](/Docs/Build.md)
6060

6161
## 🤝 贡献
62-
*AirPodsDesktop* 是一个开源项目,您可以通过以下方式贡献:
62+
*AirPodsWindows* 是一个开源项目,您可以通过以下方式贡献:
6363
* [打开问题](https://github.com/YimingZhanshen/AirPodsWindows/issues/new/choose) 来报告错误或建议新功能。
6464
* [提交 PR](https://github.com/YimingZhanshen/AirPodsWindows/compare) 来修复已知 BUG 或尝试 TODO 列表中的事项。
6565
* [翻译到其他语言](/CONTRIBUTING.md#-translation-guide)[改进现有的翻译](/CONTRIBUTING.md#-translation-guide)

README-TW.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1 align="center">
22
<a href="https://github.com/YimingZhanshen/AirPodsWindows"><img src="/Source/Resource/Image/Icon.svg" alt="Icon" width="128"></a>
33
<br>
4-
AirPodsDesktop
4+
AirPodsWindows
55
</h1>
66
<p align="center">AirPods 桌面使用者體驗增進軟體 - Windows 完整 ANC 控制</p>
77
<p align="center">
@@ -59,7 +59,7 @@
5959
檢視 [構建說明](/Docs/Build.md)
6060

6161
## 🤝 貢獻
62-
*AirPodsDesktop* 是一個開源專案,您可以透過以下方式貢獻:
62+
*AirPodsWindows* 是一個開源專案,您可以透過以下方式貢獻:
6363
* [開立問題](https://github.com/YimingZhanshen/AirPodsWindows/issues/new/choose) 以回報錯誤或建議新功能。
6464
* [提交 PR](https://github.com/YimingZhanshen/AirPodsWindows/compare) 以修正已知 BUG 或嘗試 TODO 清單中的項目。
6565
* [翻譯成其它語言](/CONTRIBUTING.md#-translation-guide)[改進現有的翻譯](/CONTRIBUTING.md#-translation-guide)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1 align="center">
22
<a href="https://github.com/YimingZhanshen/AirPodsWindows"><img src="/Source/Resource/Image/Icon.svg" alt="Icon" width="128"></a>
33
<br>
4-
AirPodsDesktop
4+
AirPodsWindows
55
</h1>
66
<p align="center">AirPods desktop user experience enhancement program - Full ANC control on Windows</p>
77
<p align="center">
@@ -59,7 +59,7 @@
5959
See the [Build Instructions](/Docs/Build.md).
6060

6161
## 🤝 Contribute
62-
*AirPodsDesktop* is an open source project, here are some ways you can contribute:
62+
*AirPodsWindows* is an open source project, here are some ways you can contribute:
6363
* [Open an issue](https://github.com/YimingZhanshen/AirPodsWindows/issues/new/choose) to report bugs or suggest new features.
6464
* [Submit a PR](https://github.com/YimingZhanshen/AirPodsWindows/compare) to fix a known bug or try something from the TODO list.
6565
* [Translate to other languages](/CONTRIBUTING.md#-translation-guide) or [improve existing translations](/CONTRIBUTING.md#-translation-guide).

Source/Application.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// AirPodsDesktop - AirPods Desktop User Experience Enhancement Program.
2+
// AirPodsWindows - AirPods Desktop User Experience Enhancement Program.
33
// Copyright (C) 2021-2022 SpriteOvO
44
//
55
// This program is free software: you can redistribute it and/or modify

0 commit comments

Comments
 (0)