diff --git a/README.md b/README.md index 4ffa579..f147dc8 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,9 @@ One may think of ViXeN as a special, customizable file browser with which one may view and edit metadata associated with media files like videos, images, and audio. +The ViXeN documentation is at http://vixen.rtfd.io + + Features -------- @@ -44,12 +47,18 @@ project at the same time. Download --------- -To try out ViXeN please download a binary installer from here: +If you are not familiar with Python you can install ViXeN using a very simple +binary installer on all the major platforms. To try out ViXeN please download +a binary installer from here: https://github.com/vixen-project/vixen/releases These are very easy to install, basically just download, unzip, and run. +If you are familiar with Python packages, you can install ViXeN using the +standard Python mechanisms of either running `python setup.py install` or with +[pip](https://pip.pypa.io/) using `pip install vixen`. + History -------- diff --git a/freeze.py b/freeze.py index 5f6f5a8..7bb74c1 100644 --- a/freeze.py +++ b/freeze.py @@ -56,6 +56,7 @@ def make_bundle(): if sys.platform.startswith('linux'): shutil.copy(os.path.join('installer', 'vixen'), package_dir) shutil.copy(os.path.join('installer', 'ViXeN.desktop'), package_dir) + shutil.copy(os.path.join('installer', 'vixen.png'), package_dir) ssl_cert = os.path.join(sys.prefix, 'ssl', 'cert.pem') if os.path.exists(ssl_cert): d = os.path.join(package_dir, 'vixen_app', 'ssl') diff --git a/installer/ViXeN.desktop b/installer/ViXeN.desktop index 64d5d1c..09b010c 100755 --- a/installer/ViXeN.desktop +++ b/installer/ViXeN.desktop @@ -5,3 +5,4 @@ Comment=View Extract and Annotate media application Exec=bash -c 'cd $(dirname %k) && ./vixen' Terminal=false Type=Application +Icon=vixen.png diff --git a/installer/vixen.png b/installer/vixen.png new file mode 100644 index 0000000..e33751f Binary files /dev/null and b/installer/vixen.png differ