mirror of
https://github.com/beetbox/beets.git
synced 2025-12-07 17:16:07 +01:00
fix homebrew gstreamer instructions
This commit is contained in:
parent
f1c41428e6
commit
3757aec494
3 changed files with 8 additions and 4 deletions
|
|
@ -1116,6 +1116,7 @@ class Transaction(object):
|
|||
"""Execute an SQL statement with substitution values and return
|
||||
the row ID of the last affected row.
|
||||
"""
|
||||
print statement, subvals
|
||||
cursor = self.lib._connection().execute(statement, subvals)
|
||||
plugins.send('database_change', lib=self.lib)
|
||||
return cursor.lastrowid
|
||||
|
|
|
|||
|
|
@ -186,7 +186,7 @@ And a batch of fixes:
|
|||
|
||||
|
||||
1.1.0 (April 29, 2013)
|
||||
---------------------
|
||||
----------------------
|
||||
|
||||
This final release of 1.1 brings a little polish to the betas that introduced
|
||||
the new configuration system. The album art and lyrics plugins also got a
|
||||
|
|
|
|||
|
|
@ -17,9 +17,12 @@ Before you can use BPD, you'll need the media library called GStreamer (along
|
|||
with its Python bindings) on your system.
|
||||
|
||||
* On Mac OS X, you can use `MacPorts`_ or `Homebrew`_. For MacPorts, just run
|
||||
``port install py27-gst-python``. For Homebrew, use ``brew install
|
||||
gst-python``. (Note that you'll need the Mac OS X Developer Tools in either
|
||||
case.)
|
||||
``port install py27-gst-python``. For Homebrew, the appropriate formulae are
|
||||
in `homebrew-versions`_, so run ``brew tap homebrew/versions`` and then
|
||||
``brew install gst-python010``. (Note that you'll need the Mac OS X
|
||||
Developer Tools in either case.)
|
||||
|
||||
.. _homebrew-versions: https://github.com/Homebrew/homebrew-versions
|
||||
|
||||
* On Linux, it's likely that you already have gst-python. (If not, your
|
||||
distribution almost certainly has a package for it.)
|
||||
|
|
|
|||
Loading…
Reference in a new issue