Skip to content

Commit 52888bd

Browse files
committed
Release version v1.2.1
1 parent c07f801 commit 52888bd

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ list(APPEND APP_PLATFORM_OPTION -DBUILD_TAG_VERSION=${GIT_TAG_VERSION} -DBUILD_T
7575
project(wiliwili)
7676
set(VERSION_MAJOR "1")
7777
set(VERSION_MINOR "2")
78-
set(VERSION_REVISION "0")
78+
set(VERSION_REVISION "1")
7979
set(VERSION_BUILD "0")
8080
set(PROJECT_AUTHOR "xfangfang")
8181
set(PACKAGE_NAME cn.xfangfang.wiliwili)
8282
set(VITA_TITLEID "WILIWILI0")
8383
set(PSN_TITLE_ID "WILI00000")
84-
set(VITA_VERSION "01.20")
84+
set(VITA_VERSION "01.21")
8585
set(PROJECT_ICON ${CMAKE_CURRENT_SOURCE_DIR}/resources/icon/icon.jpg)
8686
set(PROJECT_RESOURCES ${CMAKE_CURRENT_SOURCE_DIR}/resources)
8787
set(APP_VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_REVISION}")

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
[![Crowdin](https://badges.crowdin.net/wiliwili/localized.svg)](https://crowdin.com/project/wiliwili)
2424
![NS](https://img.shields.io/badge/-Nintendo%20Switch-e4000f?style=flat&logo=Nintendo%20Switch)
2525
![PSV](https://img.shields.io/badge/-PSVita-003791?style=flat&logo=PlayStation)
26+
![PS4](https://img.shields.io/badge/-PS4-003791?style=flat&logo=PlayStation)
2627
![MS](https://img.shields.io/badge/-Windows%207+-357ec7?style=flat&logo=Windows)
2728
![mac](https://img.shields.io/badge/-macOS%2010.11+-black?style=flat&logo=Apple)
2829
![Linux](https://img.shields.io/badge/-Linux-lightgrey?style=flat&logo=Linux&logoColor=white)

resources/i18n/zh-Hans/wiliwili.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"tab": "关于更多",
101101
"brief_header": "软件介绍",
102102
"repository": "项目首页",
103-
"brief": "专为手柄控制设计的第三方跨平台B站客户端\n完美复刻官方PC端B站,满足日常使用, 目前可以运行在PC全平台、PSVita 和 Nintendo Switch 上",
103+
"brief": "专为手柄控制设计的第三方跨平台B站客户端\n完美复刻官方PC端B站,满足日常使用, 目前可以运行在PC全平台、PSVita、PS4 和 Nintendo Switch 上",
104104
"repo_header": "开源地址",
105105
"author_header": "作者发言",
106106
"author": "一直想做个艺术家, 可惜程序员都没什么发挥的空间\n直到这个作品诞生,实现了:「在游戏机上看视频;用手机来玩游戏」\n或许算得上是一种行为艺术,这样的话我也就圆满了"

resources/i18n/zh-Hant/wiliwili.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"tab": "關於更多",
101101
"brief_header": "軟體介紹",
102102
"repository": "專案首頁",
103-
"brief": "專為搖桿控制設計的第三方跨平臺B站客戶端\n完美復刻官方PC端B站,滿足日常使用, 目前可以執行在PC全平臺、PSVita 和 Nintendo Switch 上",
103+
"brief": "專為搖桿控制設計的第三方跨平臺B站客戶端\n完美復刻官方PC端B站,滿足日常使用, 目前可以執行在PC全平臺、PSVita、PS4 和 Nintendo Switch 上",
104104
"repo_header": "開源位址",
105105
"author_header": "作者發言",
106106
"author": "一直想做個藝術家, 可惜程式師都沒什麽發揮的空間\n直到這個作品誕生,實現了:「在遊戲機上看影片;用手機來玩遊戲」\n或許算得上是一種行為藝術,這樣的話我也就圓滿了"

scripts/linux/cn.xfangfang.wiliwili.appdata.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</ul>
3030
</description>
3131
<releases>
32-
<release date="2023-10-31" version="1.2.0">
32+
<release date="2023-11-12" version="1.2.1">
3333
<description>
3434
<p>
3535
Please See Official Changelog at github.com/xfangfang/wiliwili/releases

wiliwili/include/fragment/latest_update.hpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@ class ReleaseNote {
4949
};
5050
inline void from_json(const nlohmann::json& nlohmann_json_j,
5151
ReleaseNote& nlohmann_json_t) {
52+
if (nlohmann_json_j.contains("reactions")) {
53+
nlohmann_json_j.at("reactions").get_to(nlohmann_json_t.reactions);
54+
}
5255
NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, tag_name, name,
53-
body, published_at, author,
54-
reactions));
56+
body, published_at, author));
5557
}
5658

5759
class LatestUpdate : public brls::Box {

0 commit comments

Comments
 (0)