Skip to content

Commit

Permalink
新增 TIM 版本列表,新增“基于 QQNT 技术架构”标识 (#9)
Browse files Browse the repository at this point in the history
* 通知时间改为3秒

* a logic fix

* refactor(index): 优化文件检测逻辑与页面描述

优化了HEAD请求中的内容类型检查,以涵盖更广泛的应用程序类型。修改了指数猜测的描述,以提高用户对功能的理解。

* 去掉首页滚动条,底部占位符增高

* TD上游更新至1.6.0

* 暂存

* Update README.md

* Update README.md

* 优化版本列表显示与切换

- 实现版本列表滑动切换,新增 TIM 版本信息。
- 动态标题反映当前列表(QQ/TIM)。
- 重构滚动视图逻辑,提升用户体验。
- 更新数据请求处理,确保稳定性。
- 代码细节调整,包括注释规范与错误管理。

* 临时方案修复标题栏不显示文字问题

* 优化pull_request_template文档结构和链接

修改了pull_request_template文档中的部分内容,包括将"上游更新"改为"上游更改"以更准确描述,同时将开源许可证链接改为直接链接,提高可访问性。
  • Loading branch information
ArcticFoxPro authored Sep 11, 2024
1 parent 57b5b87 commit 4ad8d2e
Show file tree
Hide file tree
Showing 133 changed files with 6,298 additions and 336 deletions.
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

- ……

#### 上游更新
#### 上游更改

- ……

Expand All @@ -43,4 +43,4 @@
- (单项选择)若后续项目决定更改开源许可:
- [ ] 请通知我并等待我的决定
- [ ] 无需通知,我授权项目所有者自行决定我的贡献的开源许可变更。
- [ ] 其他,请补充说明:_______
- [ ] 其他,请补充说明:_______
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ QQ 版本列表 Lite for WeChat MiniProgram 是一个使用 TDesign 组件库构

### 版本列表

在进入 QQ 版本列表 Lite 时,您首先会看到一系列显示“版本:x.y.z 额定大小:xxx MB”的卡片,这些卡片组成的列表即为 Android QQ 的版本列表,卡片列表展示了已经或即将发布的 Android QQ 版本。版本信息来源:https://im.qq.com/rainbow/androidQQVersionList
在进入 QQ 版本列表 Lite 时,您首先会看到一系列显示“版本:x.y.z 额定大小:xxx MB”的卡片,这些卡片组成的列表即为 Android QQ 的版本列表,卡片列表展示了已经或即将发布的 Android QQ 版本。QQ 版本信息来源:https://im.qq.com/rainbow/androidQQVersionList

从右向左滑动版本列表,可切换到 TIM 版本列表。TIM 版本信息来源:https://im.qq.com/rainbow/TIMDownload

点击卡片将弹出弹出层,可查阅到更为详尽的信息和原始 JSON 字符串信息。

Expand Down Expand Up @@ -174,7 +176,9 @@ QQ 版本列表 Lite 采用 [木兰公共许可证, 第2版](https://github.com/
QQ 版本列表 Lite 的诞生离不开以下开源项目,感谢以下开源项目的作者和贡献者:

- [TDesign WeChat MiniProgram(Tencent)](https://github.com/Tencent/tdesign-miniprogram),Licensed under [MIT License](https://github.com/Tencent/tdesign-miniprogram/blob/develop/LICENSE)
- [Node.js](https://github.com/nodejs/node),Licensed under [MIT License](https://github.com/nodejs/node/blob/main/LICENSE)
- [TDesign Icons(Tencent)](https://github.com/Tencent/tdesign-icons),Licensed under [MIT License](https://github.com/Tencent/tdesign-icons/blob/develop/LICENSE)
- [Node.js®(OpenJS Foundation)](https://nodejs.org/),Licensed under [MIT License](https://github.com/nodejs/node/blob/main/LICENSE)
- [Semver(npm)](https://github.com/npm/node-semver),Licensed under [ISC License](https://github.com/npm/node-semver/blob/main/LICENSE)

## 孪生项目

Expand Down
22 changes: 17 additions & 5 deletions source/app.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
// app.js
App({
onLaunch() {
},
globalData: {

}
/*
Copyright (c) 2024 ArcticFoxPro
QQ Ver. Lite is licensed under Mulan PubL v2.
You can use this software according to the terms and conditions of the Mulan PubL v2.
You may obtain a copy of Mulan PubL v2 at:
http://license.coscl.org.cn/MulanPubL-2.0
THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
See the Mulan PubL v2 for more details.
*/

App({
onLaunch() {
}, globalData: {
EARLIEST_ACCESSIBILITY_VERSION: false, EARLIEST_QQNT_FRAMEWORK_VERSION_STABLE: "8.9.63"
}
})
29 changes: 29 additions & 0 deletions source/app.wxss

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions source/miniprogram_npm/dayjs/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4ad8d2e

Please sign in to comment.