Release 1.2.0
=============
* Intergrity check youtube-dl bin
* Non-Windows shutdown using D-Bus instead of 'shutdown'
* Custom youtube-dl format selection filters (e.g. -f best[height<=360])
* Remember list of urls after closing & re-opening
* Context menu add new option "Go to file" or change the behaviour of "Open destination"
* Context menu "Report Failed URL to Github" (see: #16)
* Icons theme selection


Features
========
* Improve playlist downloads
* Mix formats option
* About dialog show youtube-dl version (probably will have to create new frame)
* Settings menu add "Statistics"


Localization
============
* Add support for right to left languages (hebrew, arabic)
* Fix paths on R2L layouts


Other
=====
* Refactor to Python3
* Review - rewrite threads communications
* Use youtube-dl directly from python instead of using the subprocess module


Probably wont add
=================
* ListCtrl double click to "Rename"
* Option to enable-disable items deletion from the filesystem
* Add '--recode-video' to Formats tab
* Auto video format detection
* Change 'Warning' status to 'Finished (*)' or something similar? (see: issue #131)
* Use proxy during update phase (see: issue #244)


Extras
======
* Prerequisites

    gcc-c++, make, gtk3-devel, webkit2gtk3-devel, gstreamer-plugins-base-devel,
    libtiff-devel, libjpeg{62}-devel, libpng{16}-devel, libSDL-devel, libSM-devel,
    python3-devel, zlib-devel, libexpat-devel, glu-devel, libnotify-devel,
    libsecret-devel, libXtst-devel

* Recomended
    git-core

* https://www.wxpython.org/blog/2017-08-17-builds-for-linux-with-pip/index.html
* https://github.com/wxWidgets/Phoenix/blob/master/README.rst#prerequisites
* https://stackoverflow.com/questions/31594104/wxpython-phoenix-source-build-fails-on-build-py-step


Others
======
* https://realpython.com/python-gui-with-wxpython/
* https://blog.wizardsoftheweb.pro/installing-wxpython-on-fedora/amp/

* GNU/Linux
    - wxPython on openSuse Leap 15.0 (glibc-2.26, Python 3.6 and packages)
      * https://extras.wxpython.org/wxPython4/extras/linux/gtk3/fedora-27/wxPython-4.0.1-cp36-cp36m-linux_x86_64.whl
* Windows
      * https://extras.wxpython.org/wxPython4/extras/4.1.0/


# Compile wxPython from GitHub source

git clone https://github.com/wxWidgets/Phoenix
cd Phoenix

git submodule update --recursive

OR

git clone https://github.com/wxWidgets/wxWidgets.git ./ext/wxWidgets
git clone https://github.com/wxWidgets/Catch.git ./ext/wxWidgets/3rdparty/catch

python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
python build.py clean


python build.py dox etg --nodoc sip build -v

OR

python build.py dox etg --nodoc sip build_wx -v

## Create simbolic link to build/wxbld/gtk3/lib64

ln -s lib build/wxbld/gtk3/lib64

## Continue with build for Python

python build.py build_py -v

**Good Luck!**
