diff --git a/README.md b/README.md index 7c58ddc7e3..72c4392153 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,7 @@ These are common installation actions, not depending on the package manager: pip install -r https://raw.github.com/nuxeo/nuxeo-drive/$DRIVE_VERSION/requirements-unix.txt pip install git+https://github.com/nuxeo/nuxeo-drive.git@$DRIVE_VERSION +Check that `~/.local/bin` is in the `PATH` and then you can start Drive by typing `ndrive` in a terminal. ### macOS and Windows Desktop Clients @@ -121,7 +122,7 @@ To easily manage all dependencies and packaging steps, we created several Jenkin The desktop synchronization client can also be operated from the command-line: -1. Make sure that the `ndrive` program is installed in a folder that has been added to the `PATH` enviroment variable of your OS. +1. Make sure that the `ndrive` program is installed in a folder that has been added to the `PATH` enviroment variable of your OS (on Unix like, it may be `~/.local/bin`). * You can check by typing the `ndrive --help` command in a console. diff --git a/docs/changes.md b/docs/changes.md index 977435399e..299da7aec0 100644 --- a/docs/changes.md +++ b/docs/changes.md @@ -1,6 +1,10 @@ # dev Release date: `2017-??-??` + +# 3.0.0 +Release date: `2017-12-04` + ### Core - [NXDRIVE-748](https://jira.nuxeo.com/browse/NXDRIVE-748): RemoteWatcher polling now uses timestamp instead of counter - [NXDRIVE-968](https://jira.nuxeo.com/browse/NXDRIVE-968): Improve logs disk space usage (set level to DEBUG) diff --git a/docs/deployment.md b/docs/deployment.md index 85a162bdb9..db7af220e1 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -45,6 +45,8 @@ You will also need to install the Qt4 qmake tool and the Qt4 library: ## Windows +PowerShell **4.0** or above is required to run this script. You can find installation instructions [here](https://docs.microsoft.com/en-us/powershell/scripting/setup/installing-windows-powershell). + ### Usage powershell .\tools\windows\deploy_jenkins_slave.ps1 [ARG] @@ -98,7 +100,6 @@ If an envar is specifying a version, this means that the specified version of th test_local_client.py::TestLocalClient (a whole class) test_local_client.py::TestLocalClient::test_make_documents (only one method) ``` -- `REPORT_PATH` is the absolute path to a directory where to store the generated report in case of failure, i.e. `$WORKSPACE`. #### GNU/Linux specific diff --git a/docs/technical_changes.md b/docs/technical_changes.md index 2d97fea42f..37a2c459d9 100644 --- a/docs/technical_changes.md +++ b/docs/technical_changes.md @@ -3,6 +3,9 @@ [//]: # (Note 3: keywords ordered [Added, Changed, Moved, Removed]) # dev + + +# 3.0.0 - Removed `options` keyword from `Application.__init__()`. Use `Options` instead. - Removed `ignored_prefixes` keyword from `BaseAutomationClient.__init__()`. Use `Options.ignored_prefixes` instead. - Removed `ignored_suffixes` keyword from `BaseAutomationClient.__init__()`. Use `Options.ignored_suffixes` instead. diff --git a/setup.py b/setup.py index fde7faf104..b1f0e8da78 100644 --- a/setup.py +++ b/setup.py @@ -235,7 +235,7 @@ def get_install_dir(self): return os.path.join(self.get_author(), 'Drive') def get_author_email(self): - return 'contact@nuxeo.com' + return 'maintainers-python+drive@nuxeo.com' def get_url(self): return 'https://github.com/nuxeo/nuxeo-drive'