Skip to content

Commit

Permalink
Fix to work with Ulysses 13
Browse files Browse the repository at this point in the history
Part of the Ulysses underlying file format has moved from xml to binary plist files. Replace calls to built in plistlib library to 3rd part biplist.
  • Loading branch information
robwalton committed Jun 20, 2018
1 parent 4681741 commit 4bca0ea
Show file tree
Hide file tree
Showing 9 changed files with 1,044 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .gitignore
@@ -1,4 +1,6 @@
*.pyc
/.project
/.pydevproject
.vscode
.vscode
.idea
.DS_Store
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -41,6 +41,9 @@ To install, download the [latest Ulysses.alfredworkflow](https://github.com/robw

## Versions

**1.0.4**
- Fixed ExpatError exception that **completely broke the workflow with Ulysses 13 update**.

**1.0.3**
- Fixed to work with unicode search strings

Expand Down
3 changes: 3 additions & 0 deletions biplist/AUTHORS
@@ -0,0 +1,3 @@
Andrew Wooster (andrew@planetaryscale.com)

Ported to Python 3 by Kevin Kelley (kelleyk@kelleyk.net)
25 changes: 25 additions & 0 deletions biplist/LICENSE
@@ -0,0 +1,25 @@
Copyright (c) 2010, Andrew Wooster
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of biplist nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 changes: 24 additions & 0 deletions biplist/PKG-INFO
@@ -0,0 +1,24 @@
Metadata-Version: 1.1
Name: biplist
Version: 1.0.3
Summary: biplist is a library for reading/writing binary plists.
Home-page: https://bitbucket.org/wooster/biplist
Author: Andrew Wooster
Author-email: andrew@planetaryscale.com
License: BSD
Download-URL: https://bitbucket.org/wooster/biplist/downloads/biplist-1.0.3.tar.gz
Description: `biplist` is a binary plist parser/generator for Python.

Binary Property List (plist) files provide a faster and smaller serialization
format for property lists on OS X. This is a library for generating binary
plists which can be read by OS X, iOS, or other clients.

This module requires Python 2.6 or higher or Python 3.4 or higher.
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup

0 comments on commit 4bca0ea

Please sign in to comment.