From 6a790d7d474b60f2b3685c63a570d3e6a2abe96b Mon Sep 17 00:00:00 2001 From: markubiak Date: Sun, 22 May 2016 19:07:33 -0400 Subject: [PATCH] Update README and setup.py for 3.0.1 release --- README.md | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7dfcedc..9e40395 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ #About -wallpaper-reddit is a Python 3 program that sets your wallpaper to the top image of one or multiple subreddits. Version 2 has introduced many changes, such as the removal of all external dependencies, automatic DE detection for wallpaper setting, and proper setup using setuptools. +wallpaper-reddit is a Python 3 program that sets your wallpaper to the top image of one or multiple subreddits. Version 3 has introduced many changes, such as the removal of all external dependencies, automatic DE detection for wallpaper setting, and proper setup using setuptools. #Installation -RPMs for Fedora can be found on the [Releases pages] (https://github.com/markubiak/wallpaper-reddit/releases) -Ubuntu 16.04 has finally updated python3-pil to version 3.x, so a .deb package for 16.04 and derivatives is coming shortly. Older versions of Ubuntu and derivates unfortunately will have to build from source. +RPMs for Fedora 23, Fedora 24, and Ubuntu 16.04 can be found on the [Releases pages] (https://github.com/markubiak/wallpaper-reddit/releases) +Users of Ubuntu derivatives <16.04 will have to build from source, as the version of PIL shipped with those versions of Ubuntu is outdated. Arch users can get the package from the [AUR](https://aur.archlinux.org/packages/wallpaper-reddit-git/) From Source: * Install Pillow 3.x or the libraries necessary to compile it from scratch if the distribution you're using does not package it: - - Ubuntu/Linux Mint/ElementaryOS: `sudo apt-get install python3-dev python3-setuptools libjpeg8-dev zlib1g-dev libfreetype6-dev` + - Ubuntu <16.04/Linux Mint/ElementaryOS: `sudo apt-get install python3-dev python3-setuptools libjpeg8-dev zlib1g-dev libfreetype6-dev` - Fedora: `sudo dnf install python3-imaging` (installed by default) - Arch: `sudo pacman -S python-pillow` * Clone the repository and navigate into the directory with the setup.py file. diff --git a/setup.py b/setup.py index f75e690..b42c605 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='wallpaper-reddit', - version='3.0.0', + version='3.0.1', packages=find_packages(), url='https://www.github.com/markubiak/wallpaper-reddit', author='Mark Kubiak',