mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-20 20:44:18 +02:00
Functionality: * Add configuration to anchor position of messages (#60, 71 in Bugs.md). * Add output priorisation (#38, 68 in Bugs.md). * Print whether output is active in dump. Bug Fixes: * Fix gamma control (72 in Bugs.md). * Add missing commands to example config. * Add message_config to dump output. Example Scripts: * Add screenshot script. * Make example scripts standalone. Documentation: * Escape html tags in config man page. (#68, 69 in Bugs.md) * Improve README.md (#62, 70 in Bugs.md). * Improve SECURITY.md. * Add CONTRIBUTING.md (#62, 70 in Bugs.md). * FAQ: Add Firefox screenshare instructions for wayland. * FAQ: Add wlroots downgrading instructions for workaround in case of temporary wlroots incompatibility. * Update copyright notices to 2024. Development Tooling: * Add new gpg keys (signed by the old ones). * Add PR template. * Add dev-FAQ. * Remove now-unnecessary fanalyzer pragmas.
27 lines
860 B
Bash
27 lines
860 B
Bash
#! /bin/sh
|
|
# Copyright 2023 - 2024, project-repo and the cagebreak contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
RESULT=0
|
|
|
|
readonly version="${1}"
|
|
|
|
# shellcheck disable=SC2164
|
|
cd "${MESONCURRENTCONFIGDIR}"
|
|
|
|
gpg --verify "release_${version}.tar.gz.sig" || RESULT=1
|
|
gpg --verify "release-artefacts_${version}.tar.gz.sig" || RESULT=1
|
|
|
|
tar -xvf "release_${version}.tar.gz"
|
|
cd cagebreak || exit 1
|
|
meson setup build -Dxwayland=true -Dman-pages=true --buildtype=release
|
|
ninja -C build
|
|
gpg --verify ../signatures/cagebreak.sig build/cagebreak || RESULT=1
|
|
gpg --verify ../signatures/cagebreak.1.sig build/cagebreak.1 || RESULT=1
|
|
gpg --verify ../signatures/cagebreak-config.5.sig build/cagebreak-config.5 || RESULT=1
|
|
gpg --verify ../signatures/cagebreak-socket.7.sig build/cagebreak-socket.7 || RESULT=1
|
|
# shellcheck disable=2103
|
|
cd ..
|
|
rm -rf cagebreak
|
|
|
|
exit "${RESULT}"
|