diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f1014c..d006c16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,22 +1,26 @@ # Change Log -## dangerzone 0.1.4 +## Dangerzone 0.1.5 + +- Add support for macOS Big Sur + +## Dangerzone 0.1.4 - Suppress confusing stderr output, and fix bug when converting specific documents - Switch from PyQt5 to PySide2 - Improve Windows and Mac packaging - Add support for Fedora 32 -## dangerzone 0.1.3 +## Dangerzone 0.1.3 - Add support for Ubuntu 20.04 LTS (#79) - Prevent crash in macOS if specific PDF viewers are installed (#75) -## dangerzone 0.1.2 (Linux only) +## Dangerzone 0.1.2 (Linux only) - Add support for Ubuntu 18.04 LTS -## dangerzone 0.1.1 +## Dangerzone 0.1.1 - Fix macOS bug that caused a crash on versions earlier than Catalina - Fix macOS app bundle ODF extensions (`.ods .odt`) @@ -26,6 +30,6 @@ - Allow opening `.docm` files - Allow using a custom container for testing -## dangerzone 0.1 +## Dangerzone 0.1 - First release \ No newline at end of file diff --git a/README.md b/README.md index 14a072b..9f77ed2 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,27 @@ -# dangerzone +# Dangerzone Take potentially dangerous PDFs, office documents, or images and convert them to a safe PDF. ![Screenshot](./assets/screenshot.png) -Dangerzone works like this: You give it a document that you don't know if you can trust (for example, an email attachment). Inside of a sandbox, dangerzone converts the document to a PDF (if it isn't already one), and then converts the PDF into raw pixel data: a huge list of of RGB color values for each page. Then, in a separate sandbox, dangerzone takes this pixel data and converts it back into a PDF. +Dangerzone works like this: You give it a document that you don't know if you can trust (for example, an email attachment). Inside of a sandbox, Dangerzone converts the document to a PDF (if it isn't already one), and then converts the PDF into raw pixel data: a huge list of of RGB color values for each page. Then, in a separate sandbox, Dangerzone takes this pixel data and converts it back into a PDF. -_Read more about dangerzone in the blog post [Dangerzone: Working With Suspicious Documents Without Getting Hacked](https://tech.firstlook.media/dangerzone-working-with-suspicious-documents-without-getting-hacked)._ +_Read more about Dangerzone in the blog post [Dangerzone: Working With Suspicious Documents Without Getting Hacked](https://tech.firstlook.media/dangerzone-working-with-suspicious-documents-without-getting-hacked)._ ## Getting started -- Download [dangerzone 0.1.4 for Mac](https://github.com/firstlookmedia/dangerzone/releases/download/v0.1.4/Dangerzone.0.1.4.dmg) -- Download [dangerzone 0.1.4 for Windows](https://github.com/firstlookmedia/dangerzone/releases/download/v0.1.4/Dangerzone.0.1.4.msi) -- See [installing dangerzone](https://github.com/firstlookmedia/dangerzone/wiki/Installing-Dangerzone) on the wiki for Linux repositories +- Download [Dangerzone 0.1.5 for Mac](https://github.com/firstlookmedia/dangerzone/releases/download/v0.1.5/Dangerzone.0.1.5.dmg) +- Download [Dangerzone 0.1.5 for Windows](https://github.com/firstlookmedia/dangerzone/releases/download/v0.1.5/Dangerzone.0.1.5.msi) +- See [installing Dangerzone](https://github.com/firstlookmedia/dangerzone/wiki/Installing-Dangerzone) on the wiki for Linux repositories -You can also install dangerzone for Mac using [Homebrew](https://brew.sh/): `brew install --cask dangerzone` +You can also install Dangerzone for Mac using [Homebrew](https://brew.sh/): `brew install --cask dangerzone` ## Some features - Sandboxes don't have network access, so if a malicious document can compromise one, it can't phone home - Dangerzone can optionally OCR the safe PDFs it creates, so it will have a text layer again - Dangerzone compresses the safe PDF to reduce file size -- After converting, dangerzone lets you open the safe PDF in the PDF viewer of your choice, which allows you to open PDFs and office docs in dangerzone by default so you never accidentally open a dangerous document +- After converting, Dangerzone lets you open the safe PDF in the PDF viewer of your choice, which allows you to open PDFs and office docs in Dangerzone by default so you never accidentally open a dangerous document Dangerzone can convert these types of document into safe PDFs: diff --git a/dangerzone/__init__.py b/dangerzone/__init__.py index c3a8ce0..e890eb5 100644 --- a/dangerzone/__init__.py +++ b/dangerzone/__init__.py @@ -2,7 +2,7 @@ import os import sys from .container import container_main -dangerzone_version = "0.1.4" +dangerzone_version = "0.1.5" # This is a hack for Windows and Mac to be able to run dangerzone-container, even though # PyInstaller builds a single binary diff --git a/pyproject.toml b/pyproject.toml index 2b415fc..87d8ca3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dangerzone" -version = "0.1.4" +version = "0.1.5" description = "Take potentially dangerous PDFs, office documents, or images and convert them to a safe PDF" authors = ["Micah Lee "] license = "MIT"