From a7fd6e9a1df1131ec7cc1e628b17641d1e6d8267 Mon Sep 17 00:00:00 2001 From: Vishal Pankaj Chandratreya <19171016+tfpf@users.noreply.github.com> Date: Sun, 7 Apr 2024 15:04:05 +0530 Subject: [PATCH] Added Hatch badge to the readme. (#7) Used double quotes for Tkinter sequence names in the readme for consistency (because Ruff converted all single quotes to double quotes in the code). --- README.md | 4 +++- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5a1c38f..23ba561 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ Scrollable containers are currently available for the following GUI toolkits. to: the Tcl Core Team, the Python Software Foundation, the wxWidgets Team, the wxPython Team, the Qt Company and Riverbank Computing.** +[![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch) + [![lint](https://github.com/tfpf/ScrollableContainers/actions/workflows/lint.yml/badge.svg)](https://github.com/tfpf/ScrollableContainers/actions/workflows/lint.yml) [![install](https://github.com/tfpf/ScrollableContainers/actions/workflows/install.yml/badge.svg)](https://github.com/tfpf/ScrollableContainers/actions/workflows/install.yml) [![build](https://github.com/tfpf/ScrollableContainers/actions/workflows/build.yml/badge.svg)](https://github.com/tfpf/ScrollableContainers/actions/workflows/build.yml) @@ -41,7 +43,7 @@ Add widgets to the `frame` attribute of a `ScrollableFrameTk` object. * Horizontally centres the contents if the window is wider. ### Notes -`''`, `''` and `''` are bound to all widgets using `bind_all` to handle mouse wheel +`""`, `""` and `""` are bound to all widgets using `bind_all` to handle mouse wheel scroll events. Do not `unbind_all` (or `bind_all` another function to) these three sequences! # wxPython diff --git a/pyproject.toml b/pyproject.toml index 04e8406..bd8b308 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "ScrollableContainers" -version = "2.0.2" +version = "2.0.3" authors = [ { name = "Vishal Pankaj Chandratreya" }, ]