New in Apsfilter 7.2.8 (BUGFIX Release)
=======================================
3. New Features
- make it possible to use the lineprinter scheduler as jukebox
- network jukebox (untested)
should also work with a remote printer queue
So your remote server has a soundcard and your print clients
send audio files to the remote printer to play audio files
one after the other.
Hint:
For this purposes a new parameter from SETUP needed to be
saved into the apsfilterrc file (INTERFACES).
In every sound play routine in apsfilter
we test if this is a network printer.
Then we need to send the data stream (i.e. mp3) unprocessed.
On the print server with the soundcard the tanslation needs to
take place.
New in Apsfilter 7.2.7 (BUGFIX Release)
=======================================
7. BUG FIXES
- make spaces possible in samba printer name
from Roman Kurakin <rik at FreeBSD dot org>
py2app is a Python setuptools command which will allow you to make standalone
Mac OS X application bundles and plugins from Python scripts.
py2app is similar in purpose and design to py2exe for Windows.
NOTE: py2app must be used on OSX to build applications, it cannot create Mac
applications on other platforms.
macholib can be used to analyze and edit Mach-O headers, the executable format
used by Mac OS X.
It's typically used as a dependency analysis tool, and also to rewrite dylib
references in Mach-O headers to be @executable_path relative.
Though this tool targets a platform specific file format, it is pure python code
that is platform and endian independent.
modulegraph determines a dependency graph between Python modules primarily by
bytecode analysis for import statements.
modulegraph uses similar methods to modulefinder from the standard library, but
uses a more flexible internal representation, has more extensive knowledge of
special cases, and is extensible.
altgraph is a fork of graphlib: a graph (network) package for constructing
graphs, BFS and DFS traversals, topological sort, shortest paths, etc. with
graphviz output.
Upstream changes:
0.200005 2013-12-11 08:03:08 America/New_York
- open DATA handles both :raw and :bytes to avoid content munging on
Win32 (thanks, Kenichi Ishigaki!)
- This is not yet a perfect solution for Win32.
0.200004 2013-12-01 21:31:02 America/New_York
- avoid confusion between \n, \x0d\x0a, and Win32 (thanks, Kenichi
Ishigaki!)
0.200003 2013-11-02 07:57:52 America/New_York
[THIS MIGHT BREAK STUFF]
- stable release of 0.200002, no functional changes
0.200002 2013-10-19 22:11:32 America/New_York (TRIAL RELEASE)
[THIS MIGHT BREAK STUFF]
- add an "encoding" parameter to set encoding of data section contents;
this defaults to UTF-8 (thanks, David Golden!)
0.101622 2013-06-19 21:48:02 America/New_York
add a link to an Advent article about Data-Section
update bugtracker, repo, etc.
Based on packaged in pkgsrc-wip and reqested via PR pkg/48197 by Edgar Fuss.
Frink is a tcl formatting and static check program. It can prettify your
program, minimise, obfuscate or just sanity check it. It can also do some
rewriting.
- Django 1.6 compatibility
- Using bulk_create to speed up revision creation.
- Including docs in source distribution
- Spanish translation
- Fixing edge-case bugs in revision middleware
* A couple of issues with Django 1.6 have been fixed (including bad error handling and a loaddata incompatability)
* Migrations now import datetime from a special South module which provides the correct tz-aware or tz-naive version.
* A couple of issues fixed, including double-indexing errors, and correct persistence of non-unique indexes across ALTERs.
* The new localflavor fields are automatically accepted by the introspector.
Prevented the base geometry object of a prepared geometry to be garbage collected, which could lead to crash Django.
Fixed a crash when executing the changepassword command when the user object representation contained non-ASCII characters.
The collectstatic command will raise an error rather than default to using the current working directory if STATIC_ROOT is not set. Combined with the --clear option, the previous behavior could wipe anything below the current working directory.
Fixed mail encoding on Python 3.3.3+.
Fixed an issue where when settings.DATABASES['default']['AUTOCOMMIT'] = False, the connection wasn’t in autocommit mode but Django pretended it was.
Fixed a regression in multiple-table inheritance exclude() queries.
Added missing items to django.utils.timezone.__all__.
Fixed a field misalignment issue with select_related() and model inheritance.
Fixed join promotion for negated AND conditions.
Oracle database introspection now works with boolean and float fields.
Fixed an issue where lazy objects weren’t actually marked as safe when passed through mark_safe() and could end up being double-escaped