[Pkg-privacy-commits] [onionshare] branch debian updated (506e837 -> 96c5ada)
Ulrike Uhlig
u-guest at moszumanska.debian.org
Thu Sep 8 10:26:23 UTC 2016
This is an automated email from the git hooks/post-receive script.
u-guest pushed a change to branch debian
in repository onionshare.
from 506e837 Adjust patch for 0.9
new 09d1b65 Delete patches which have been applied in new upstream version 0.9.1
new ef7fa69 Add correct version number to OSX app Info.plist (fixes #275)
new 5b9e8d5 Update PPA script
new 440f9b9 Changing stdeb config to make Launchpad's PPA server successfully build
new 9bfde7d Merge branch 'master' of github.com:micahflee/onionshare
new 3d13c1a Simplify get_resource_path
new 7073c20 Merge pull request #277 from jvoisin/simplify_get_resource_path
new 17e389b Improve pep8 conformance
new 185006d Merge pull request #280 from jvoisin/pep8
new 12ff636 fixed typo
new 8cde1d8 Merge pull request #283 from joshbegley/patch-1
new 70c5551 Fix CVE-2016-5026
new 7f43805 Merge pull request #288 from mscherer/fix_cve
new 62e7035 Tweaked Spanish locale and typo in comment, thanks to kant (#269, #270)
new 6894b5f Improved BUILD.md
new cd2baff Merge branch 'master' of https://github.com/PabloCastellano/onionshare into PabloCastellano-master
new 7a895d4 The path of the install scripts has changed, so the import path must change too if running locally
new 900276a Merge branch 'PabloCastellano-master'
new 57dd6db Added a simple nautilus extension, written by the Subgraph developers (fixes #293)
new 1295399 Added python-nautilus as a dependency (#293)
new 6ec5c15 Update Windows build instructions
new 3f1180c Add instructions for installing cx_Freeze in Windows, and add cx_Freeze support to setup.py for Windows
new 8e8ea9c Added resources to cx_Freeze setup, and make those resources findable by the app
new 4ce64ed Make launcher scripts require onionshare and onionshare_gui python packages to be installed, to workaround a cx_Freeze issue
new 7e8b3e1 Oops, use spaces instead of tabs
new dbf4af0 Pass helpers into strings.load_strings instead of importing it, so fix issue with cx_Freeze in Windows
new 52ef78a Build the cx_Freeze Windows GUI in window mode instead of console mode
new 0ad1311 Update Windows build instructions
new e192585 Refactor setup.py, and make cx_Freeze bdist_msi installer create a shortcut in the Start Menu
new e2fb8b7 Move license.txt into resources, so it will be bundled with Windows installer
new 310d861 Stop saying 'hidden service', start saying 'onion service'
new bba46e0 Merge branch 'master' into cx_Freeze
new 79938e9 Version bump to 0.9.1-dev
new db9d81b Migrate from PyInstaller to cx_Freeze for OSX
new acd8afe Update build_exe.bat and NSIS installer config to support cx_Freeze
new 22f104c Fix strings tests, now that load_strings needs helpers as an arg
new 1153454 Make sure tests can find the correct paths (fixes #284)
new fbe512a Oops, I can't have a variable called os
new 1372239 Renamed hs to onion
new 360fb6c Refactor onionshare CLI to use await_publication=True when using ephemeral onion services, instead of relying on wait_for_hs function
new 87761c6 Remove HSDirError exception, because it is no longer thrown
new b7d1a73 Refactor onionshare GUI to use await_publication=True when using ephemeral onion services
new 590edc5 Make onionshare GUI use separate thread for starting onion service with await_publication=True, to avoid non-responsive window
new 8a40602 Version bump to 0.9.1, and updated changelog
new 7ab936c Prevent canceling download from being confused with rate limit attacker
new e093c72 Disable writing to stdout in Windows (fixes #304)
new 9c250fc Add instructions for using CLI version to README, and add supporting Windows/OSX CLI to changelog
new 7a46336 Enable stdout in Windows, OSX CLI versions (#305)
new 76937d5 Move imports to module level
new 373f24e Sleep between launching threads in onionshare-gui, preventing a cx_Freeze crash related to loading the same modules in multiple threads while they're locked
new 3e5e74e Imported Upstream version 0.9.1
new d0bf454 Merge tag 'upstream/0.9.1' into debian
new 221a4c0 Add build instructions
new fcd6ad7 Update rules in order to be able to find the paths to the tests. Thanks Piotr Ozarowski.
new 96c5ada Update debian/changelog
The 55 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
BUILD.md | 49 +-
CHANGELOG.md | 8 +
MANIFEST.in | 1 +
README.md | 14 +-
SECURITY.md | 8 +-
debian/README.source | 16 +
debian/changelog | 12 +
debian/patches/fix_CVE-2016-5026 | 50 --
debian/patches/series | 1 -
debian/rules | 4 +
install/Info.plist | 18 +
install/build_exe.bat | 10 +-
install/build_osx.sh | 26 +-
install/build_rpm.sh | 2 +-
install/onionshare.nsi | 256 +++---
install/ppa_release.sh | 4 +-
install/pyinstaller.spec | 59 --
install/scripts/onionshare | 9 +-
install/scripts/onionshare-gui | 9 +-
install/scripts/onionshare-nautilus.py | 46 ++
onionshare/helpers.py | 22 +-
onionshare/{hs.py => onion.py} | 67 +-
onionshare/onionshare.py | 38 +-
onionshare/strings.py | 7 +-
onionshare/web.py | 26 +-
onionshare_gui/onionshare_gui.py | 76 +-
{install => resources}/license.txt | 1352 ++++++++++++++++----------------
resources/locale/cs.json | 18 +-
resources/locale/de.json | 4 +-
resources/locale/en.json | 16 +-
resources/locale/eo.json | 12 +-
resources/locale/es.json | 6 +-
resources/locale/fr.json | 6 +-
resources/locale/nl.json | 6 +-
resources/locale/tr.json | 2 +-
resources/version.txt | 2 +-
setup.py | 165 ++--
stdeb.cfg | 7 +-
test/onionshare_helpers_test.py | 2 -
test/onionshare_strings_test.py | 15 +-
test/onionshare_test.py | 1 -
test/test_helpers.py | 5 +-
42 files changed, 1254 insertions(+), 1203 deletions(-)
create mode 100644 debian/README.source
delete mode 100644 debian/patches/fix_CVE-2016-5026
delete mode 100644 debian/patches/series
create mode 100644 install/Info.plist
delete mode 100644 install/pyinstaller.spec
create mode 100644 install/scripts/onionshare-nautilus.py
rename onionshare/{hs.py => onion.py} (79%)
rename {install => resources}/license.txt (98%)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/onionshare.git
More information about the Pkg-privacy-commits
mailing list