mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Bump version to 0.10.2
This commit is contained in:
parent
67bee15a38
commit
031a129591
5 changed files with 20 additions and 36 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,5 +1,18 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.10.2] -- 2022-09-22
|
||||||
|
|
||||||
|
### Security release
|
||||||
|
|
||||||
|
- Fixes potential secret poisoning by the homeserver
|
||||||
|
- A crash when validation malicious html
|
||||||
|
|
||||||
|
Thanks to the matrix.org security team for disclosing this issue.
|
||||||
|
|
||||||
|
An update is highly recommended. Otherwise you can temporarily protect against
|
||||||
|
this issue by not verifying your own devices and not pressing the request button
|
||||||
|
in the setting.
|
||||||
|
|
||||||
## [0.10.1] -- 2022-09-07
|
## [0.10.1] -- 2022-09-07
|
||||||
|
|
||||||
### Highlights
|
### Highlights
|
||||||
|
|
|
@ -108,7 +108,7 @@ include(GNUInstallDirs)
|
||||||
|
|
||||||
set(CPACK_PACKAGE_VERSION_MAJOR "0")
|
set(CPACK_PACKAGE_VERSION_MAJOR "0")
|
||||||
set(CPACK_PACKAGE_VERSION_MINOR "10")
|
set(CPACK_PACKAGE_VERSION_MINOR "10")
|
||||||
set(CPACK_PACKAGE_VERSION_PATCH "1")
|
set(CPACK_PACKAGE_VERSION_PATCH "2")
|
||||||
set(PROJECT_VERSION_MAJOR ${CPACK_PACKAGE_VERSION_MAJOR})
|
set(PROJECT_VERSION_MAJOR ${CPACK_PACKAGE_VERSION_MAJOR})
|
||||||
set(PROJECT_VERSION_MINOR ${CPACK_PACKAGE_VERSION_MINOR})
|
set(PROJECT_VERSION_MINOR ${CPACK_PACKAGE_VERSION_MINOR})
|
||||||
set(PROJECT_VERSION_PATCH ${CPACK_PACKAGE_VERSION_PATCH})
|
set(PROJECT_VERSION_PATCH ${CPACK_PACKAGE_VERSION_PATCH})
|
||||||
|
|
10
appveyor.yml
10
appveyor.yml
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
version: 0.10.1-{build}
|
version: 0.10.2-{build}
|
||||||
|
|
||||||
configuration: Release
|
configuration: Release
|
||||||
image: Visual Studio 2019
|
image: Visual Studio 2019
|
||||||
|
@ -31,8 +31,8 @@ build_script:
|
||||||
# VERSION format: branch-master/branch-1.2
|
# VERSION format: branch-master/branch-1.2
|
||||||
# INSTVERSION format: x.y.z
|
# INSTVERSION format: x.y.z
|
||||||
# WINVERSION format: 9999.0.0.123/1.2.0.234
|
# WINVERSION format: 9999.0.0.123/1.2.0.234
|
||||||
- if "%APPVEYOR_REPO_TAG%"=="false" set INSTVERSION=0.10.1
|
- if "%APPVEYOR_REPO_TAG%"=="false" set INSTVERSION=0.10.2
|
||||||
- if "%APPVEYOR_REPO_TAG%"=="false" set VERSION=0.10.1
|
- if "%APPVEYOR_REPO_TAG%"=="false" set VERSION=0.10.2
|
||||||
- if "%APPVEYOR_REPO_TAG%"=="false" if "%APPVEYOR_REPO_BRANCH%"=="master" set INSTVERSION=9999.0
|
- if "%APPVEYOR_REPO_TAG%"=="false" if "%APPVEYOR_REPO_BRANCH%"=="master" set INSTVERSION=9999.0
|
||||||
- if "%APPVEYOR_REPO_TAG%"=="false" set WINVERSION=%INSTVERSION%.0.%APPVEYOR_BUILD_NUMBER%
|
- if "%APPVEYOR_REPO_TAG%"=="false" set WINVERSION=%INSTVERSION%.0.%APPVEYOR_BUILD_NUMBER%
|
||||||
# VERSION format: v1.2.3/v1.3.4
|
# VERSION format: v1.2.3/v1.3.4
|
||||||
|
@ -94,8 +94,8 @@ after_build:
|
||||||
- copy %BUILD%\deploy\installer\gui\package.xml installer\packages\io.github.nhekoreborn.nheko\meta
|
- copy %BUILD%\deploy\installer\gui\package.xml installer\packages\io.github.nhekoreborn.nheko\meta
|
||||||
- copy %BUILD%\deploy\installer\gui\installscript.qs installer\packages\io.github.nhekoreborn.nheko\meta
|
- copy %BUILD%\deploy\installer\gui\installscript.qs installer\packages\io.github.nhekoreborn.nheko\meta
|
||||||
# Amend version and date
|
# Amend version and date
|
||||||
- sed -i "s/__VERSION__/0.10.1/" installer\config\config.xml
|
- sed -i "s/__VERSION__/0.10.2/" installer\config\config.xml
|
||||||
- sed -i "s/__VERSION__/0.10.1/" installer\packages\io.github.nhekoreborn.nheko\meta\package.xml
|
- sed -i "s/__VERSION__/0.10.2/" installer\packages\io.github.nhekoreborn.nheko\meta\package.xml
|
||||||
- sed -i "s/__DATE__/%DATE%/" installer\packages\io.github.nhekoreborn.nheko\meta\package.xml
|
- sed -i "s/__DATE__/%DATE%/" installer\packages\io.github.nhekoreborn.nheko\meta\package.xml
|
||||||
# Copy nheko data
|
# Copy nheko data
|
||||||
- xcopy NhekoData\*.* installer\packages\io.github.nhekoreborn.nheko\data\*.* /s /e /c /y
|
- xcopy NhekoData\*.* installer\packages\io.github.nhekoreborn.nheko\data\*.* /s /e /c /y
|
||||||
|
|
|
@ -23,17 +23,11 @@ cleanup:
|
||||||
- /bin/mdb*
|
- /bin/mdb*
|
||||||
- '*.a'
|
- '*.a'
|
||||||
- /libexec
|
- /libexec
|
||||||
- /lib/girepository-1.0/
|
|
||||||
- /lib/gst-validate-launcher/
|
|
||||||
- /lib/gstreamer-1.0/include/
|
|
||||||
- /lib/gstreamer-1.0/validate/
|
|
||||||
- /lib/cmake/
|
- /lib/cmake/
|
||||||
- /bin/gst-*
|
|
||||||
- /bin/cmark
|
- /bin/cmark
|
||||||
- /bin/event_rpcgen.py
|
- /bin/event_rpcgen.py
|
||||||
- /bin/playout
|
- /bin/playout
|
||||||
- /bin/secret-tool
|
- /bin/secret-tool
|
||||||
- /share/gir-1.0
|
|
||||||
modules:
|
modules:
|
||||||
- name: lmdb
|
- name: lmdb
|
||||||
sources:
|
sources:
|
||||||
|
@ -151,30 +145,6 @@ modules:
|
||||||
- sha256: 1155fd1a83049767360e9a120c43c578145db3204d2b309eba49fbbedd0f4ed3
|
- sha256: 1155fd1a83049767360e9a120c43c578145db3204d2b309eba49fbbedd0f4ed3
|
||||||
type: archive
|
type: archive
|
||||||
url: https://github.com/nlohmann/json/archive/v3.10.4.tar.gz
|
url: https://github.com/nlohmann/json/archive/v3.10.4.tar.gz
|
||||||
- buildsystem: meson
|
|
||||||
name: gstreamer
|
|
||||||
sources:
|
|
||||||
- commit: ccf22e315cedf81e0075ab179ffb1b733da5206e
|
|
||||||
tag: 1.20.3
|
|
||||||
type: git
|
|
||||||
url: https://gitlab.freedesktop.org/gstreamer/gstreamer.git
|
|
||||||
config-opts:
|
|
||||||
- -Dcompositor=enabled
|
|
||||||
- -Dgl=enabled
|
|
||||||
- -Dgood=enabled
|
|
||||||
- -Dgst-plugins-good:pulse=enabled
|
|
||||||
- -Dgst-plugins-good:qt5=enabled
|
|
||||||
- -Dgst-plugins-good:rtp=enabled
|
|
||||||
- -Dgst-plugins-good:rtpmanager=enabled
|
|
||||||
- -Dgst-plugins-good:vpx=enabled
|
|
||||||
- -Dbad=enabled
|
|
||||||
- -Dgst-plugins-bad:dtls=enabled
|
|
||||||
- -Dgst-plugins-bad:gl=enabled
|
|
||||||
- -Dgst-plugins-bad:openh264=enabled
|
|
||||||
- -Dgst-plugins-bad:opus=enabled
|
|
||||||
- -Dgst-plugins-bad:srtp=enabled
|
|
||||||
- -Dgst-plugins-bad:webrtc=enabled
|
|
||||||
- -Dgst-plugins-bad:flite=disabled
|
|
||||||
- buildsystem: qmake
|
- buildsystem: qmake
|
||||||
name: qt-jdenticon
|
name: qt-jdenticon
|
||||||
no-make-install: true
|
no-make-install: true
|
||||||
|
|
|
@ -61,6 +61,7 @@
|
||||||
<url type="homepage">https://github.com/Nheko-Reborn/nheko</url>
|
<url type="homepage">https://github.com/Nheko-Reborn/nheko</url>
|
||||||
<update_contact>https://github.com/Nheko-Reborn</update_contact>
|
<update_contact>https://github.com/Nheko-Reborn</update_contact>
|
||||||
<releases>
|
<releases>
|
||||||
|
<release date="2022-09-28" version="0.10.2"/>
|
||||||
<release date="2022-09-07" version="0.10.1"/>
|
<release date="2022-09-07" version="0.10.1"/>
|
||||||
<release date="2022-07-22" version="0.10.0"/>
|
<release date="2022-07-22" version="0.10.0"/>
|
||||||
<release date="2022-03-25" version="0.9.3"/>
|
<release date="2022-03-25" version="0.9.3"/>
|
||||||
|
|
Loading…
Reference in a new issue