From 28d420ba0c0b626cf1acb87a3694acbac6813bfa Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Mon, 25 Nov 2024 16:09:23 +0200 Subject: [PATCH] Bump version to 0.3.0 Added ===== - aa57bf4e Add font-size-factor setting to scale text size - 96d0353a Add Settings dialog - 7e8f22cd Add font-name setting - 3b6f8420 Add option to install GSettings schema if missing - 98bdfbad Add right click app context menu Bug Fixes ========= - 16b92484 Fix position being updated on motion signal even when frozen Changes ======= - b5ff9f0c Update help text in About window Refactoring =========== - fab3f14d Refactor to use glib::clone more Miscellaneous Tasks =================== - 78d8bf91 Improve font size based on monitor PPI and scale_factor - 30184fa5 Sync back settings when changing them on runtime Signed-off-by: Manos Pitsidianakis --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- Cargo.toml | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7719631..1cb9849 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.3.0] - 2024-11-25 + ### Added - [**`aa57bf4e`**](https://github.com/epilys/rlr/commit/aa57bf4eef4695af2ac4757e51eb9bca352a49ba) `Add font-size-factor setting to scale text size` @@ -66,3 +68,4 @@ All notable changes to this project will be documented in this file. [0.2.0]: +[0.3.0]: diff --git a/Cargo.lock b/Cargo.lock index 287eefd..558a9fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -513,7 +513,7 @@ dependencies = [ [[package]] name = "rlr-gtk" -version = "0.2.0" +version = "0.3.0" dependencies = [ "gtk", ] diff --git a/Cargo.toml b/Cargo.toml index 72a3bea..94734df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rlr-gtk" -version = "0.2.0" +version = "0.3.0" authors = ["Manos Pitsidianakis "] edition = "2021" license = "GPL-3.0-or-later" @@ -8,7 +8,7 @@ description = "pixel screen ruler" repository = "https://github.com/epilys/rlr" homepage = "https://github.com/epilys/rlr" categories = ["graphics"] -keywords = ["pixel", "pixels", "display", "ruler", "screen"] +keywords = ["pixel", "pixels", "display", "ruler", "screen"] rust-version = "1.70.0" [dependencies]