From 2e68e3b57a5c7b89baae667f71ca86d5c3076261 Mon Sep 17 00:00:00 2001 From: gramar Date: Sat, 9 Jul 2022 21:09:10 +0200 Subject: [PATCH] Update changelog and local build script for 0.2.0 --- .local/build.sh | 5 ----- Changelog.md | 10 +++++++++- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.local/build.sh b/.local/build.sh index 33b93ae..9fdbf68 100755 --- a/.local/build.sh +++ b/.local/build.sh @@ -48,8 +48,3 @@ if [[ "lto" == $MODE ]]; then /usr/bin/cargo b -p pgwm --profile "$MODE" --features $FEATURES --target x86_64-unknown-linux-musl && install target/x86_64-unknown-linux-musl/lto/pgwm "$INSTALL_PATH" exit 0 fi - -if [[ "lto" == $MODE ]]; then - /usr/bin/cargo b -p pgwm --profile "$MODE" --features $FEATURES --target x86_64-unknown-linux-musl && install target/x86_64-unknown-linux-musl/lto/pgwm "$INSTALL_PATH" - exit 0 -fi diff --git a/Changelog.md b/Changelog.md index 4421498..7edf250 100644 --- a/Changelog.md +++ b/Changelog.md @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Fixed + +### Added + +### Changed + +## [v0.2.0] - 2022-07-09 ### Fixed - Splitting text on a char boundary caused a panic in some cases while using the tabbed mode @@ -23,7 +30,8 @@ but a type containing a path to the specific font to be rendered and a pixel siz This is because libXft took care of that through fontconfig before, but now that dependency is gone. - No more unsafe code. - No c-library dependencies, can be built and statically linked, down to a ~2Mb binary with musl, and ~2Mb USS/PSS/RSS RAM footprint - - Reworked the connection to be lighter and faster + - Reworked the connection to be lighter and faster, eventual severe bugs in the implementation +will cause a panic in debug and a freeze otherwise - Now exclusively uses Unix-sockets, no TCP is available ## [v0.1.0] - 2022-04-09