Skip to content

Commit

Permalink
Release version v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xfangfang committed Nov 12, 2023
1 parent c07f801 commit 52888bd
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ list(APPEND APP_PLATFORM_OPTION -DBUILD_TAG_VERSION=${GIT_TAG_VERSION} -DBUILD_T
project(wiliwili)
set(VERSION_MAJOR "1")
set(VERSION_MINOR "2")
set(VERSION_REVISION "0")
set(VERSION_REVISION "1")
set(VERSION_BUILD "0")
set(PROJECT_AUTHOR "xfangfang")
set(PACKAGE_NAME cn.xfangfang.wiliwili)
set(VITA_TITLEID "WILIWILI0")
set(PSN_TITLE_ID "WILI00000")
set(VITA_VERSION "01.20")
set(VITA_VERSION "01.21")
set(PROJECT_ICON ${CMAKE_CURRENT_SOURCE_DIR}/resources/icon/icon.jpg)
set(PROJECT_RESOURCES ${CMAKE_CURRENT_SOURCE_DIR}/resources)
set(APP_VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_REVISION}")
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
[![Crowdin](https://badges.crowdin.net/wiliwili/localized.svg)](https://crowdin.com/project/wiliwili)
![NS](https://img.shields.io/badge/-Nintendo%20Switch-e4000f?style=flat&logo=Nintendo%20Switch)
![PSV](https://img.shields.io/badge/-PSVita-003791?style=flat&logo=PlayStation)
![PS4](https://img.shields.io/badge/-PS4-003791?style=flat&logo=PlayStation)
![MS](https://img.shields.io/badge/-Windows%207+-357ec7?style=flat&logo=Windows)
![mac](https://img.shields.io/badge/-macOS%2010.11+-black?style=flat&logo=Apple)
![Linux](https://img.shields.io/badge/-Linux-lightgrey?style=flat&logo=Linux&logoColor=white)
Expand Down
2 changes: 1 addition & 1 deletion resources/i18n/zh-Hans/wiliwili.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"tab": "关于更多",
"brief_header": "软件介绍",
"repository": "项目首页",
"brief": "专为手柄控制设计的第三方跨平台B站客户端\n完美复刻官方PC端B站,满足日常使用, 目前可以运行在PC全平台、PSVita 和 Nintendo Switch 上",
"brief": "专为手柄控制设计的第三方跨平台B站客户端\n完美复刻官方PC端B站,满足日常使用, 目前可以运行在PC全平台、PSVita、PS4 和 Nintendo Switch 上",
"repo_header": "开源地址",
"author_header": "作者发言",
"author": "一直想做个艺术家, 可惜程序员都没什么发挥的空间\n直到这个作品诞生,实现了:「在游戏机上看视频;用手机来玩游戏」\n或许算得上是一种行为艺术,这样的话我也就圆满了"
Expand Down
2 changes: 1 addition & 1 deletion resources/i18n/zh-Hant/wiliwili.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"tab": "關於更多",
"brief_header": "軟體介紹",
"repository": "專案首頁",
"brief": "專為搖桿控制設計的第三方跨平臺B站客戶端\n完美復刻官方PC端B站,滿足日常使用, 目前可以執行在PC全平臺、PSVita 和 Nintendo Switch 上",
"brief": "專為搖桿控制設計的第三方跨平臺B站客戶端\n完美復刻官方PC端B站,滿足日常使用, 目前可以執行在PC全平臺、PSVita、PS4 和 Nintendo Switch 上",
"repo_header": "開源位址",
"author_header": "作者發言",
"author": "一直想做個藝術家, 可惜程式師都沒什麽發揮的空間\n直到這個作品誕生,實現了:「在遊戲機上看影片;用手機來玩遊戲」\n或許算得上是一種行為藝術,這樣的話我也就圓滿了"
Expand Down
2 changes: 1 addition & 1 deletion scripts/linux/cn.xfangfang.wiliwili.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</ul>
</description>
<releases>
<release date="2023-10-31" version="1.2.0">
<release date="2023-11-12" version="1.2.1">
<description>
<p>
Please See Official Changelog at github.com/xfangfang/wiliwili/releases
Expand Down
6 changes: 4 additions & 2 deletions wiliwili/include/fragment/latest_update.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,11 @@ class ReleaseNote {
};
inline void from_json(const nlohmann::json& nlohmann_json_j,
ReleaseNote& nlohmann_json_t) {
if (nlohmann_json_j.contains("reactions")) {
nlohmann_json_j.at("reactions").get_to(nlohmann_json_t.reactions);
}
NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, tag_name, name,
body, published_at, author,
reactions));
body, published_at, author));
}

class LatestUpdate : public brls::Box {
Expand Down

0 comments on commit 52888bd

Please sign in to comment.