Skip to content

Commit

Permalink
Release version v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xfangfang committed Apr 30, 2024
1 parent f0de3e2 commit 717e578
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ add_definitions(-DFONS_HASH_LUT_SIZE=4096)
# Project Info
project(wiliwili)
set(VERSION_MAJOR "1")
set(VERSION_MINOR "3")
set(VERSION_MINOR "4")
set(VERSION_REVISION "0")
if (NOT VERSION_BUILD)
set(VERSION_BUILD "0")
Expand Down
2 changes: 1 addition & 1 deletion scripts/deb/switchroot-bionic/control
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Section: video
Priority: optional
Maintainer: xfangfang <[email protected]>
Version: 1.3.0-1
Version: 1.4.0-1
Homepage: https://xfangfang.github.io/wiliwili/
Vcs-Git: https://github.com/xfangfang/wiliwili.git
Package: wiliwili
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 @@ -42,7 +42,7 @@
</ul>
</description>
<releases>
<release date="2024-01-12" version="1.3.0">
<release date="2024-05-01" version="1.4.0">
<description>
<p>
Please See Official Changelog at github.com/xfangfang/wiliwili/releases
Expand Down
2 changes: 1 addition & 1 deletion wiliwili/source/view/danmaku_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ void DanmakuCore::drawMask(NVGcontext *vg, float x, float y, float width, float
if (maskTex != 0) {
nvgUpdateImage(vg, maskTex, bitmap.data());
} else {
maskTex = nvgCreateImageRGBA(vg, (int)maskWidth, (int)maskHeight, 0, bitmap.data());
maskTex = nvgCreateImageRGBA(vg, (int)maskWidth, (int)maskHeight, imageFlags, bitmap.data());
}
}
if (maskTex == 0) return;
Expand Down

0 comments on commit 717e578

Please sign in to comment.