mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-11 15:29:38 -05:00
Version bump to 2.3.2 and update changelog, and upgrade PySide to 5.15.2
This commit is contained in:
parent
659ed83853
commit
5d4966cd09
@ -1,5 +1,14 @@
|
|||||||
# OnionShare Changelog
|
# OnionShare Changelog
|
||||||
|
|
||||||
|
## 2.3.2
|
||||||
|
|
||||||
|
* New feature: Receive mode supports custom titles
|
||||||
|
* New feature: Receive mode supports notification webhooks
|
||||||
|
* New feature: Receive mode supports submitting messages as well files
|
||||||
|
* New feature: New ASCII art banner and prettier verbose output
|
||||||
|
* New feature: Partial support for range requests (pausing and resuming in HTTP)
|
||||||
|
* Various bug fixes
|
||||||
|
|
||||||
## 2.3.1
|
## 2.3.1
|
||||||
|
|
||||||
* Bugfix: Fix chat mode
|
* Bugfix: Fix chat mode
|
||||||
|
@ -1 +1 @@
|
|||||||
2.3.1
|
2.3.2
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "onionshare_cli"
|
name = "onionshare_cli"
|
||||||
version = "2.3.1"
|
version = "2.3.2"
|
||||||
description = "OnionShare lets you securely and anonymously send and receive files. It works by starting a web server, making it accessible as a Tor onion service, and generating an unguessable web address so others can download files from you, or upload files to you. It does _not_ require setting up a separate server or using a third party file-sharing service."
|
description = "OnionShare lets you securely and anonymously send and receive files. It works by starting a web server, making it accessible as a Tor onion service, and generating an unguessable web address so others can download files from you, or upload files to you. It does _not_ require setting up a separate server or using a third party file-sharing service."
|
||||||
authors = ["Micah Lee <micah@micahflee.com>"]
|
authors = ["Micah Lee <micah@micahflee.com>"]
|
||||||
license = "GPLv3+"
|
license = "GPLv3+"
|
||||||
|
@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
"""
|
"""
|
||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
version = "2.3.1"
|
version = "2.3.2"
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="onionshare-cli",
|
name="onionshare-cli",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[tool.briefcase]
|
[tool.briefcase]
|
||||||
project_name = "OnionShare"
|
project_name = "OnionShare"
|
||||||
bundle = "org.onionshare"
|
bundle = "org.onionshare"
|
||||||
version = "2.3.1"
|
version = "2.3.2"
|
||||||
url = "https://onionshare.org"
|
url = "https://onionshare.org"
|
||||||
license = "GPLv3"
|
license = "GPLv3"
|
||||||
author = 'Micah Lee'
|
author = 'Micah Lee'
|
||||||
@ -13,8 +13,8 @@ description = "Securely and anonymously share files, host websites, and chat wit
|
|||||||
icon = "src/onionshare/resources/onionshare"
|
icon = "src/onionshare/resources/onionshare"
|
||||||
sources = ['src/onionshare']
|
sources = ['src/onionshare']
|
||||||
requires = [
|
requires = [
|
||||||
"./onionshare_cli-2.3.1-py3-none-any.whl",
|
"./onionshare_cli-2.3.2-py3-none-any.whl",
|
||||||
"pyside2==5.15.1",
|
"pyside2==5.15.2",
|
||||||
"qrcode"
|
"qrcode"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
project = "OnionShare"
|
project = "OnionShare"
|
||||||
author = copyright = "Micah Lee, et al."
|
author = copyright = "Micah Lee, et al."
|
||||||
version = release = "2.3.1"
|
version = release = "2.3.2"
|
||||||
|
|
||||||
extensions = ["sphinx_rtd_theme"]
|
extensions = ["sphinx_rtd_theme"]
|
||||||
templates_path = ["_templates"]
|
templates_path = ["_templates"]
|
||||||
@ -18,7 +16,7 @@ languages = [
|
|||||||
("Українська", "uk"), # Ukranian
|
("Українська", "uk"), # Ukranian
|
||||||
]
|
]
|
||||||
|
|
||||||
versions = ["2.3", "2.3.1"]
|
versions = ["2.3", "2.3.1", "2.3.2"]
|
||||||
|
|
||||||
html_theme = "sphinx_rtd_theme"
|
html_theme = "sphinx_rtd_theme"
|
||||||
html_logo = "_static/logo.png"
|
html_logo = "_static/logo.png"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: onionshare
|
name: onionshare
|
||||||
base: core18
|
base: core18
|
||||||
version: '2.3.1'
|
version: '2.3.2'
|
||||||
summary: Securely and anonymously share files, host websites, and chat using Tor
|
summary: Securely and anonymously share files, host websites, and chat using Tor
|
||||||
description: |
|
description: |
|
||||||
OnionShare lets you securely and anonymously send and receive files. It works by starting
|
OnionShare lets you securely and anonymously send and receive files. It works by starting
|
||||||
@ -40,7 +40,7 @@ parts:
|
|||||||
python-version: python3
|
python-version: python3
|
||||||
python-packages:
|
python-packages:
|
||||||
- psutil
|
- psutil
|
||||||
- pyside2==5.15.1
|
- pyside2==5.15.2
|
||||||
- qrcode
|
- qrcode
|
||||||
stage-packages:
|
stage-packages:
|
||||||
- libasound2
|
- libasound2
|
||||||
|
Loading…
Reference in New Issue
Block a user