diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index ed4111f..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,12 +0,0 @@ -# These are supported funding model platforms - -github: slgobinath -patreon: # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: # Replace with a single Liberapay username -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: 'https://www.paypal.com/paypalme/slgobinath' diff --git a/README.md b/README.md index 6f9d160..f26b094 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,6 @@ [![Flathub](https://img.shields.io/flathub/v/io.github.slgobinath.SafeEyes)](https://flathub.org/apps/details/io.github.slgobinath.SafeEyes) [![Translation status](https://hosted.weblate.org/widgets/safe-eyes/-/translations/svg-badge.svg)](https://hosted.weblate.org/engage/safe-eyes/?utm_source=widget) [![Awesome Humane Tech](https://raw.githubusercontent.com/humanetech-community/awesome-humane-tech/main/humane-tech-badge.svg?sanitize=true)](https://github.com/humanetech-community/awesome-humane-tech) -[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://paypal.me/slgobinath) Protect your eyes from eye strain using this simple and beautiful, yet extensible break reminder. @@ -41,7 +40,7 @@ Safe Eyes is available in Ubuntu PPA, Arch AUR, Gentoo and Python PyPI. You can ### Ubuntu, Linux Mint and other Ubuntu Derivatives ```bash -sudo add-apt-repository ppa:slgobinath/safeeyes +sudo add-apt-repository ppa:safeeyes-team/safeeyes sudo apt update sudo apt install safeeyes ``` @@ -121,11 +120,11 @@ python3 -m safeeyes Safe Eyes installers install the required icons to `/usr/share/icons/hicolor`. When you run Safe Eyes from source without, some icons may not appear. -### Install in Virtual Environment +### Install in a virtual environment -Some Linux systems like Cent OS do not have matching dependencies available in their repository. In such systems, you can install and use Safe Eyes in a Python Virtual Environment. The following instruction was tested on Cent OS 7. +Some Linux systems like CentOS do not have matching dependencies available in their repository. In such systems, you can install and use Safe Eyes in a Python virtual environment. -1. Install the necessary dependencies +1. Install the necessary dependencies for CentOS 7 ```bash sudo yum install python3-devel dbus dbus-devel cairo cairo-devel cairomm-devel libjpeg-turbo-devel pango pango-devel pangomm pangomm-devel gobject-introspection-devel cairo-gobject-devel @@ -137,13 +136,12 @@ Some Linux systems like Cent OS do not have matching dependencies available in t mkdir ~/safeeyes cd ~/safeeyes/ - pip3 install virtualenv --user - virtualenv --no-site-packages venv + python3 -m venv venv source venv/bin/activate pip3 install dbus-python safeeyes ``` -3. Start Safe Eyes from terminal +3. Start Safe Eyes from the terminal ```bash cd ~/safeeyes & source venv/bin/activate @@ -187,9 +185,3 @@ Thirdparty plugins are available at another GitHub repository: [safeeyes-plugins ## License GNU General Public License v3 - -## IDE Support - -
Thanks to JetBrains for offering IDE support to develop this Open Source project.
- - diff --git a/debian/changelog b/debian/changelog index fc406bd..f656523 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +safeeyes (2.1.9) noble; urgency=medium + + * Fix crash in smartpause + + -- Gobinath Loganathan