From 8b12bf40a802a51d24db588fa3feed863452482f Mon Sep 17 00:00:00 2001 From: Amarghosh Vadakkoot Date: Sat, 23 Mar 2024 17:24:17 +0000 Subject: [PATCH] Use absolute paths for images, add pypi badge Relative paths don't work when readme is reused in pypi page --- README.md | 5 +++-- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 54e79a6..53b0ee9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ ![Pylint](https://github.com/amarghosh/mp4viewer/actions/workflows/pylint.yml/badge.svg) +![PyPI - Version](https://img.shields.io/pypi/v/mp4viewer) MP4Viewer ========= @@ -39,10 +40,10 @@ options: ## Sample outputs: ### The default output on the console -![shell output](./images/console.png) +![shell output](https://github.com/amarghosh/mp4viewer/blob/develop/images/console.png?raw=true) ### GTK -![window with gtk treeview](./images/gtk.png) +![window with gtk treeview](https://github.com/amarghosh/mp4viewer/blob/develop/images/gtk.png?raw=true) MP4Viewer uses gtk in graphics mode and requires pygtk3 for viewing results in a window. This usually comes preinstalled with recent versions of ubuntu. diff --git a/pyproject.toml b/pyproject.toml index 7686ea2..0061d1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mp4viewer" -version = "0.1.0" +version = "0.1.1" authors = [ { name="Amarghosh Vadakkoot", email="myfirstname@gmail.com" }, ]