You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

492 lines
18 KiB
Plaintext

committing changes in /etc after apt run Package changes: +freepats 20060219-1 all +libadplug-2.2.1-0v5 2.2.1+dfsg3-0.4 armhf +libao-common 1.2.2+20180113-1 all +libao4 1.2.2+20180113-1 armhf +libaudiofile1 0.3.6-4 armhf +libavcodec58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-1+b2 armhf +libbinio1v5 1.4+dfsg1-6 armhf +libcdio-cdda2 10.2+0.94+2-4 armhf +libcdio-paranoia2 10.2+0.94+2-4 armhf +libcdio18 2.0.0-2 armhf +libcodec2-0.8.1 0.8.1-1 armhf +libfaad2 2.8.8-1 armhf +libfluidsynth1 1.1.11-1 armhf +libid3tag0 0.15.1b-13 armhf +libiso9660-11 2.0.0-2 armhf +libjack-jackd2-0 1.9.12~dfsg-2 armhf +libjansson4 2.11-1 armhf +libldb1 2:1.4.0+really1.3.6-1 armhf +libmad0 0.15.1b-9 armhf +libmikmod3 3.3.11.1-4 armhf +libmms0 0.6.4-3 armhf +libmodplug1 1:0.8.9.0-2 armhf +libmpcdec6 2:0.1~r495-1+b1 armhf +libmpdclient2 2.13-1 armhf +libnfs11 2.0.0-1~exp1 armhf +libopenal-data 1:1.18.2-3 all +libopenal1 1:1.18.2-3+b1 armhf +libroar2 1.0~beta11-10 armhf +libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libshout3 2.4.1-2 armhf +libsidplayfp4 1.8.8-1 armhf +libsmbclient 2:4.8.5+dfsg-1 armhf +libsndio7.0 1.5.0-2 armhf +libspeexdsp1 1.2~rc1.2-1 armhf -libssh-gcrypt-4 0.8.0~20170825.94fa1e38-1 armhf +libssh-gcrypt-4 0.8.1-1 armhf +libswresample3 7:4.0.2-1+b2 armhf +libtdb1 1.3.15-4 armhf +libtevent0 0.9.36-2 armhf +libupnp6 1:1.6.24-4 armhf -libwbclient0 2:4.8.2+dfsg-2 armhf +libwayland-client0 1.15.0-2 armhf +libwayland-cursor0 1.15.0-2 armhf +libwayland-egl1 1.15.0-2 armhf +libwbclient0 2:4.8.5+dfsg-1 armhf +libwildmidi-config 0.4.2-1 all +libwildmidi2 0.4.2-1 armhf +libxkbcommon0 0.8.2-1 armhf +libyajl2 2.1.0-2 armhf +libzzip-0-13 0.13.62-3.1 armhf +mpc 0.30-1 armhf +mpd 0.20.21-1 armhf +python-talloc 2.1.14-1 armhf +samba-libs 2:4.8.5+dfsg-1 armhf
6 years ago
# OpenAL config file.
#
# Option blocks may appear multiple times, and duplicated options will take the
# last value specified. Environment variables may be specified within option
# values, and are automatically substituted when the config file is loaded.
# Environment variable names may only contain alpha-numeric characters (a-z,
# A-Z, 0-9) and underscores (_), and are prefixed with $. For example,
# specifying "$HOME/file.ext" would typically result in something like
# "/home/user/file.ext". To specify an actual "$" character, use "$$".
#
# Device-specific values may be specified by including the device name in the
# block name, with "general" replaced by the device name. That is, general
# options for the device "Name of Device" would be in the [Name of Device]
# block, while ALSA options would be in the [alsa/Name of Device] block.
# Options marked as "(global)" are not influenced by the device.
#
# The system-wide settings can be put in /etc/openal/alsoft.conf and user-
# specific override settings in $HOME/.alsoftrc.
# For Windows, these settings should go into $AppData\alsoft.ini
#
# Option and block names are case-senstive. The supplied values are only hints
# and may not be honored (though generally it'll try to get as close as
# possible). Note: options that are left unset may default to app- or system-
# specified values. These are the current available settings:
##
## General stuff
##
[general]
## disable-cpu-exts: (global)
# Disables use of specialized methods that use specific CPU intrinsics.
# Certain methods may utilize CPU extensions for improved performance, and
# this option is useful for preventing some or all of those methods from being
# used. The available extensions are: sse, sse2, sse3, sse4.1, and neon.
# Specifying 'all' disables use of all such specialized methods.
#disable-cpu-exts =
## drivers: (global)
# Sets the backend driver list order, comma-seperated. Unknown backends and
# duplicated names are ignored. Unlisted backends won't be considered for use
# unless the list is ended with a comma (e.g. 'oss,' will try OSS first before
# other backends, while 'oss' will try OSS only). Backends prepended with -
# won't be considered for use (e.g. '-oss,' will try all available backends
# except OSS). An empty list means to try all backends.
#drivers =
## channels:
# Sets the output channel configuration. If left unspecified, one will try to
# be detected from the system, and defaulting to stereo. The available values
# are: mono, stereo, quad, surround51, surround51rear, surround61, surround71,
# ambi1, ambi2, ambi3. Note that the ambi* configurations provide ambisonic
# channels of the given order (using ACN ordering and SN3D normalization by
# default), which need to be decoded to play correctly on speakers.
#channels =
## sample-type:
# Sets the output sample type. Currently, all mixing is done with 32-bit float
# and converted to the output sample type as needed. Available values are:
# int8 - signed 8-bit int
# uint8 - unsigned 8-bit int
# int16 - signed 16-bit int
# uint16 - unsigned 16-bit int
# int32 - signed 32-bit int
# uint32 - unsigned 32-bit int
# float32 - 32-bit float
#sample-type = float32
## frequency:
# Sets the output frequency. If left unspecified it will try to detect a
# default from the system, otherwise it will default to 44100.
#frequency =
## period_size:
# Sets the update period size, in frames. This is the number of frames needed
# for each mixing update. Acceptable values range between 64 and 8192.
#period_size = 1024
## periods:
# Sets the number of update periods. Higher values create a larger mix ahead,
# which helps protect against skips when the CPU is under load, but increases
# the delay between a sound getting mixed and being heard. Acceptable values
# range between 2 and 16.
#periods = 3
## stereo-mode:
# Specifies if stereo output is treated as being headphones or speakers. With
# headphones, HRTF or crossfeed filters may be used for better audio quality.
# Valid settings are auto, speakers, and headphones.
#stereo-mode = auto
## stereo-encoding:
# Specifies the encoding method for non-HRTF stereo output. 'panpot' (default)
# uses standard amplitude panning (aka pair-wise, stereo pair, etc) between
# -30 and +30 degrees, while 'uhj' creates stereo-compatible two-channel UHJ
# output, which encodes some surround sound information into stereo output
# that can be decoded with a surround sound receiver. If crossfeed filters are
# used, UHJ is disabled.
#stereo-encoding = panpot
## ambi-format:
# Specifies the channel order and normalization for the "ambi*" set of channel
# configurations. Valid settings are: fuma, acn+sn3d, acn+n3d
#ambi-format = acn+sn3d
## hrtf:
# Controls HRTF processing. These filters provide better spatialization of
# sounds while using headphones, but do require a bit more CPU power. The
# default filters will only work with 44100hz or 48000hz stereo output. While
# HRTF is used, the cf_level option is ignored. Setting this to auto (default)
# will allow HRTF to be used when headphones are detected or the app requests
# it, while setting true or false will forcefully enable or disable HRTF
# respectively.
#hrtf = auto
## default-hrtf:
# Specifies the default HRTF to use. When multiple HRTFs are available, this
# determines the preferred one to use if none are specifically requested. Note
# that this is the enumerated HRTF name, not necessarily the filename.
#default-hrtf =
## hrtf-paths:
# Specifies a comma-separated list of paths containing HRTF data sets. The
# format of the files are described in docs/hrtf.txt. The files within the
# directories must have the .mhr file extension to be recognized. By default,
# OS-dependent data paths will be used. They will also be used if the list
# ends with a comma. On Windows this is:
# $AppData\openal\hrtf
# And on other systems, it's (in order):
# $XDG_DATA_HOME/openal/hrtf (defaults to $HOME/.local/share/openal/hrtf)
# $XDG_DATA_DIRS/openal/hrtf (defaults to /usr/local/share/openal/hrtf and
# /usr/share/openal/hrtf)
#hrtf-paths =
## cf_level:
# Sets the crossfeed level for stereo output. Valid values are:
# 0 - No crossfeed
# 1 - Low crossfeed
# 2 - Middle crossfeed
# 3 - High crossfeed (virtual speakers are closer to itself)
# 4 - Low easy crossfeed
# 5 - Middle easy crossfeed
# 6 - High easy crossfeed
# Users of headphones may want to try various settings. Has no effect on non-
# stereo modes.
#cf_level = 0
## resampler: (global)
# Selects the resampler used when mixing sources. Valid values are:
# point - nearest sample, no interpolation
# linear - extrapolates samples using a linear slope between samples
committing changes in /etc after apt run Package changes: -adduser 3.117 all -adwaita-icon-theme 3.28.0-1 all +adduser 3.118 all +adwaita-icon-theme 3.30.0-1 all -apt 1.6.4+b2 armhf +apt 1.7.0 armhf -apt-utils 1.6.4+b2 armhf -aptitude 0.8.10-9 armhf -aptitude-common 0.8.10-9 all -at-spi2-core 2.28.0-3 armhf -avahi-daemon 0.7-4 armhf +apt-utils 1.7.0 armhf +aptitude 0.8.11-3 armhf +aptitude-common 0.8.11-3 all +at-spi2-core 2.30.0-2 armhf +avahi-daemon 0.7-4+b1 armhf -bind9 1:9.11.4+dfsg-4 armhf -bind9-host 1:9.11.4+dfsg-4 armhf -bind9utils 1:9.11.4+dfsg-4 armhf -binutils 2.31.1-5+rpi1 armhf -binutils-arm-linux-gnueabihf 2.31.1-5+rpi1 armhf -binutils-common 2.31.1-5+rpi1 armhf +bind9 1:9.11.4.P2+dfsg-3 armhf +bind9-host 1:9.11.4.P2+dfsg-3 armhf +bind9utils 1:9.11.4.P2+dfsg-3 armhf +binutils 2.31.1-6+rpi1 armhf +binutils-arm-linux-gnueabihf 2.31.1-6+rpi1 armhf +binutils-common 2.31.1-6+rpi1 armhf -bluez 5.50-1 armhf +bluez 5.50-1+b2 armhf -certbot 0.26.1-1 all +certbot 0.27.0-1 all -cmake 3.12.1-1 armhf -cmake-data 3.12.1-1 all +cmake 3.12.3-2 armhf +cmake-data 3.12.3-2 all -console-setup 1.185 all -console-setup-linux 1.185 all -coreutils 8.28-1 armhf +console-setup 1.186 all +console-setup-linux 1.186 all +coreutils 8.30-1 armhf -cpp-6 6.4.0-20+rpi1 armhf +cpp-6 6.4.0-22+rpi1 armhf -cpp-8 8.2.0-4+rpi1 armhf +cpp-8 8.2.0-7+rpi1 armhf -dash 0.5.8-2.10 armhf +dash 0.5.10.2-1 armhf -dconf-gsettings-backend 0.28.0-2 armhf -dconf-service 0.28.0-2 armhf +dconf-gsettings-backend 0.30.0-1 armhf +dconf-service 0.30.0-1 armhf -device-tree-compiler 1.4.6-1 armhf -dh-python 3.20180723 all +device-tree-compiler 1.4.7-3 armhf +dh-python 3.20180927 all -dirmngr 2.2.10-1+rpi1 armhf +dirmngr 2.2.10-3+rpi1 armhf -dmidecode 3.1-2 armhf +dmidecode 3.2-1 armhf -dnsutils 1:9.11.4+dfsg-4 armhf +dnsutils 1:9.11.4.P2+dfsg-3 armhf -dpkg 1.19.0.5 armhf -dpkg-dev 1.19.0.5 all +dpkg 1.19.2 armhf +dpkg-dev 1.19.2 all -exim4-base 4.91-7 armhf -exim4-config 4.91-7 all -exim4-daemon-light 4.91-7 armhf -eyed3 0.8.5-1 all -fail2ban 0.10.2-2 all +exim4-base 4.91-8 armhf +exim4-config 4.91-8 all +exim4-daemon-light 4.91-8 armhf +eyed3 0.8.7-1 all +fail2ban 0.10.2-2.1 all -fontconfig 2.13.0-5 armhf -fontconfig-config 2.13.0-5 all +fontconfig 2.13.1-1 armhf +fontconfig-config 2.13.1-1 all -g++-8 8.2.0-4+rpi1 armhf -gawk 1:4.1.4+dfsg-1+b1 armhf +g++-8 8.2.0-7+rpi1 armhf +gawk 1:4.2.1+dfsg-1 armhf -gcc-6 6.4.0-20+rpi1 armhf -gcc-6-base 6.4.0-20+rpi1 armhf +gcc-6 6.4.0-22+rpi1 armhf +gcc-6-base 6.4.0-22+rpi1 armhf -gcc-8 8.2.0-4+rpi1 armhf -gcc-8-base 8.2.0-4+rpi1 armhf +gcc-8 8.2.0-7+rpi1 armhf +gcc-8-base 8.2.0-7+rpi1 armhf -gettext-base 0.19.8.1-7 armhf -gir1.2-glib-2.0 1.56.1-1 armhf -git 1:2.18.0-1 armhf -git-man 1:2.18.0-1 all -glib-networking 2.57.92-1 armhf -glib-networking-common 2.57.92-1 all -glib-networking-services 2.57.92-1 armhf +gettext-base 0.19.8.1-8 armhf +gir1.2-glib-2.0 1.58.0-1 armhf +git 1:2.19.1-1 armhf +git-man 1:2.19.1-1 all +glib-networking 2.58.0-1 armhf +glib-networking-common 2.58.0-1 all +glib-networking-services 2.58.0-1 armhf -gnupg 2.2.10-1+rpi1 all -gnupg-agent 2.2.10-1+rpi1 all -gnupg-l10n 2.2.10-1+rpi1 all -gnupg-utils 2.2.10-1+rpi1 armhf -gpg 2.2.10-1+rpi1 armhf -gpg-agent 2.2.10-1+rpi1 armhf -gpg-wks-client 2.2.10-1+rpi1 armhf -gpg-wks-server 2.2.10-1+rpi1 armhf -gpgconf 2.2.10-1+rpi1 armhf -gpgsm 2.2.10-1+rpi1 armhf -gpgv 2.2.10-1+rpi1 armhf +gnupg 2.2.10-3+rpi1 all +gnupg-agent 2.2.10-3+rpi1 all +gnupg-l10n 2.2.10-3+rpi1 all +gnupg-utils 2.2.10-3+rpi1 armhf +gpg 2.2.10-3+rpi1 armhf +gpg-agent 2.2.10-3+rpi1 armhf +gpg-wks-client 2.2.10-3+rpi1 armhf +gpg-wks-server 2.2.10-3+rpi1 armhf +gpgconf 2.2.10-3+rpi1 armhf +gpgsm 2.2.10-3+rpi1 armhf +gpgv 2.2.10-3+rpi1 armhf -gsettings-desktop-schemas 3.28.0-1 all -gtk-update-icon-cache 3.22.30-2+rpi1 armhf -gzip 1.9-2 armhf +gsettings-desktop-schemas 3.28.1-1 all +gtk-update-icon-cache 3.24.1-2+rvt armhf +gzip 1.9-2.1 armhf -hostname 3.20 armhf +hostname 3.21 armhf -i2c-tools 4.0-2+b1 armhf +i2c-tools 4.0-2+b2 armhf -iso-codes 3.79-1 all +iso-codes 4.1-1 all -keyboard-configuration 1.185 all +keyboard-configuration 1.186 all +libaom0 1.0.0-3 armhf -libapt-inst2.0 1.6.4+b2 armhf -libapt-pkg5.0 1.6.4+b2 armhf +libapt-inst2.0 1.7.0 armhf +libapt-pkg5.0 1.7.0 armhf -libasan3 6.4.0-20+rpi1 armhf +libasan3 6.4.0-22+rpi1 armhf -libasan5 8.2.0-4+rpi1 armhf +libasan5 8.2.0-7+rpi1 armhf -libatk-bridge2.0-0 2.26.2-1 armhf -libatk1.0-0 2.28.1-1 armhf -libatk1.0-data 2.28.1-1 all -libatomic1 8.2.0-4+rpi1 armhf -libatspi2.0-0 2.28.0-3 armhf +libatk-bridge2.0-0 2.30.0-2 armhf +libatk1.0-0 2.30.0-1 armhf +libatk1.0-data 2.30.0-1 all +libatomic1 8.2.0-7+rpi1 armhf +libatspi2.0-0 2.30.0-2 armhf -libavahi-client3 0.7-4 armhf -libavahi-common-data 0.7-4 armhf -libavahi-common3 0.7-4 armhf -libavahi-core7 0.7-4 armhf +libavahi-client3 0.7-4+b1 armhf +libavahi-common-data 0.7-4+b1 armhf +libavahi-common3 0.7-4+b1 armhf +libavahi-core7 0.7-4+b1 armhf -libavcodec58 7:4.0.2-1+b2 armhf +libavcodec58 7:4.0.2-2+b2 armhf -libavformat58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-2+b2 armhf -libavutil56 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-2+b2 armhf -libbind9-160 1:9.11.4+dfsg-4 armhf +libbind9-160 1:9.11.4.P2+dfsg-3 armhf -libbinutils 2.31.1-5+rpi1 armhf -libblas3 3.8.0-1 armhf +libbinutils 2.31.1-6+rpi1 armhf +libblas3 3.8.0-1+b1 armhf -libbluetooth3 5.50-1 armhf +libbluetooth3 5.50-1+b2 armhf -libboost-filesystem1.62.0 1.62.0+dfsg-8 armhf +libboost-filesystem1.62.0 1.62.0+dfsg-10 armhf -libboost-iostreams1.62.0 1.62.0+dfsg-8 armhf -libboost-system1.62.0 1.62.0+dfsg-8 armhf +libboost-iostreams1.62.0 1.62.0+dfsg-10 armhf +libboost-system1.62.0 1.62.0+dfsg-10 armhf -libc-bin 2.27-5+rpi1 armhf -libc-dev-bin 2.27-5+rpi1 armhf -libc-l10n 2.27-5+rpi1 all -libc6 2.27-5+rpi1 armhf -libc6-dbg 2.27-5+rpi1 armhf -libc6-dev 2.27-5+rpi1 armhf +libc-bin 2.27-6+rpi1 armhf +libc-dev-bin 2.27-6+rpi1 armhf +libc-l10n 2.27-6+rpi1 all +libc6 2.27-6+rpi1 armhf +libc6-dbg 2.27-6+rpi1 armhf +libc6-dev 2.27-6+rpi1 armhf -libcc1-0 8.2.0-4+rpi1 armhf +libcc1-0 8.2.0-7+rpi1 armhf -libcups2 2.2.8-5 armhf +libcups2 2.2.8-5+b1 armhf -libdb5.3 5.3.28+dfsg1-0.1 armhf +libdb5.3 5.3.28+dfsg1-0.2 armhf -libdconf1 0.28.0-2 armhf -libdebconfclient0 0.244 armhf +libdconf1 0.30.0-1 armhf +libdebconfclient0 0.245 armhf -libdns-export1102 1:9.11.4+dfsg-4 armhf +libdns-export1102 1:9.11.4.P2+dfsg-3 armhf -libdns1102 1:9.11.4+dfsg-4 armhf -libdpkg-perl 1.19.0.5 all -libdrm-amdgpu1 2.4.93-1+rpi1 armhf -libdrm-common 2.4.93-1+rpi1 all -libdrm-etnaviv1 2.4.93-1+rpi1 armhf -libdrm-freedreno1 2.4.93-1+rpi1 armhf -libdrm-nouveau2 2.4.93-1+rpi1 armhf -libdrm-radeon1 2.4.93-1+rpi1 armhf -libdrm2 2.4.93-1+rpi1 armhf +libdns1102 1:9.11.4.P2+dfsg-3 armhf +libdpkg-perl 1.19.2 all +libdrm-amdgpu1 2.4.95-1+rpi1 armhf +libdrm-common 2.4.95-1+rpi1 all +libdrm-etnaviv1 2.4.95-1+rpi1 armhf +libdrm-freedreno1 2.4.95-1+rpi1 armhf +libdrm-nouveau2 2.4.95-1+rpi1 armhf +libdrm-radeon1 2.4.95-1+rpi1 armhf +libdrm2 2.4.95-1+rpi1 armhf -libepoxy0 1.4.3-1 armhf +libepoxy0 1.5.3-0.1 armhf -libfftw3-single3 3.3.8-1 armhf +libfftw3-single3 3.3.8-2 armhf -libfontconfig1 2.13.0-5 armhf +libfontconfig1 2.13.1-1 armhf -libgcc-6-dev 6.4.0-20+rpi1 armhf +libgcc-6-dev 6.4.0-22+rpi1 armhf -libgcc-8-dev 8.2.0-4+rpi1 armhf -libgcc1 1:8.2.0-4+rpi1 armhf +libgcc-8-dev 8.2.0-7+rpi1 armhf +libgcc1 1:8.2.0-7+rpi1 armhf -libgd3 2.2.5-4 armhf -libgdbm-compat4 1.14.1-6 armhf +libgd3 2.2.5-4.1 armhf +libgdbm-compat4 1.18-2 armhf -libgdk-pixbuf2.0-0 2.36.12-2 armhf -libgdk-pixbuf2.0-bin 2.36.12-2 armhf -libgdk-pixbuf2.0-common 2.36.12-2 all +libgdbm6 1.18-2 armhf +libgdk-pixbuf2.0-0 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-bin 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-common 2.38.0+dfsg-6+rpi1 all -libgirepository-1.0-1 1.56.1-1 armhf +libgfortran5 8.2.0-7+rpi1 armhf +libgirepository-1.0-1 1.58.0-1 armhf -libglib2.0-0 2.56.1-2 armhf -libglib2.0-data 2.56.1-2 all +libglib2.0-0 2.58.1-2 armhf +libglib2.0-data 2.58.1-2 all -libgomp1 8.2.0-4+rpi1 armhf -libgpg-error0 1.32-1 armhf +libgomp1 8.2.0-7+rpi1 armhf +libgpg-error-l10n 1.32-2 all +libgpg-error0 1.32-2 armhf -libgssapi-krb5-2 1.16-2 armhf -libgtk-3-0 3.22.30-2+rpi1 armhf -libgtk-3-bin 3.22.30-2+rpi1 armhf -libgtk-3-common 3.22.30-2+rpi1 all +libgssapi-krb5-2 1.16.1-1 armhf +libgtk-3-0 3.24.1-2+rvt armhf +libgtk-3-bin 3.24.1-2+rvt armhf +libgtk-3-common 3.24.1-2+rvt all -libharfbuzz0b 1.8.8-2+rpi1 armhf +libharfbuzz0b 1.9.0-1+rpi1 armhf -libi2c0 4.0-2+b1 armhf +libi2c0 4.0-2+b2 armhf -libirs-export160 1:9.11.4+dfsg-4 armhf -libirs160 1:9.11.4+dfsg-4 armhf +libirs-export160 1:9.11.4.P2+dfsg-3 armhf +libirs160 1:9.11.4.P2+dfsg-3 armhf -libisc-export169 1:9.11.4+dfsg-4 armhf -libisc169 1:9.11.4+dfsg-4 armhf -libisccc160 1:9.11.4+dfsg-4 armhf -libisccfg-export160 1:9.11.4+dfsg-4 armhf -libisccfg160 1:9.11.4+dfsg-4 armhf +libisc-export169 1:9.11.4.P2+dfsg-3 armhf +libisc169 1:9.11.4.P2+dfsg-3 armhf +libisccc160 1:9.11.4.P2+dfsg-3 armhf +libisccfg-export160 1:9.11.4.P2+dfsg-3 armhf +libisccfg160 1:9.11.4.P2+dfsg-3 armhf -libiw30 30~pre9-12 armhf +libiw30 30~pre9-13 armhf -libjs-sphinxdoc 1.7.8-1 all +libjs-sphinxdoc 1.7.9-1 all -libjson-glib-1.0-0 1.4.2-4 armhf -libjson-glib-1.0-common 1.4.2-4 all +libjson-glib-1.0-0 1.4.4-1 armhf +libjson-glib-1.0-common 1.4.4-1 all -libk5crypto3 1.16-2 armhf +libk5crypto3 1.16.1-1 armhf -libkrb5-3 1.16-2 armhf -libkrb5support0 1.16-2 armhf +libkrb5-3 1.16.1-1 armhf +libkrb5support0 1.16.1-1 armhf -liblcms2-2 2.9-2 armhf +liblcms2-2 2.9-3 armhf -libllvm6.0 1:6.0.1-6+rpi1 armhf +libllvm6.0 1:6.0.1-9+rpi1 armhf -liblwres160 1:9.11.4+dfsg-4 armhf +liblwres160 1:9.11.4.P2+dfsg-3 armhf -libnewt0.52 0.52.20-6 armhf +libnewt0.52 0.52.20-8 armhf -libnginx-mod-http-auth-pam 1.14.0-1 armhf -libnginx-mod-http-dav-ext 1.14.0-1 armhf -libnginx-mod-http-echo 1.14.0-1 armhf -libnginx-mod-http-geoip 1.14.0-1 armhf -libnginx-mod-http-headers-more-filter 1.14.0-1 armhf -libnginx-mod-http-image-filter 1.14.0-1 armhf -libnginx-mod-http-subs-filter 1.14.0-1 armhf -libnginx-mod-http-upstream-fair 1.14.0-1 armhf -libnginx-mod-http-xslt-filter 1.14.0-1 armhf -libnginx-mod-mail 1.14.0-1 armhf -libnginx-mod-stream 1.14.0-1 armhf +libnginx-mod-http-auth-pam 1.14.0-1+b1 armhf +libnginx-mod-http-dav-ext 1.14.0-1+b1 armhf +libnginx-mod-http-echo 1.14.0-1+b1 armhf +libnginx-mod-http-geoip 1.14.0-1+b1 armhf +libnginx-mod-http-headers-more-filter 1.14.0-1+b1 armhf +libnginx-mod-http-image-filter 1.14.0-1+b1 armhf +libnginx-mod-http-subs-filter 1.14.0-1+b1 armhf +libnginx-mod-http-upstream-fair 1.14.0-1+b1 armhf +libnginx-mod-http-xslt-filter 1.14.0-1+b1 armhf +libnginx-mod-mail 1.14.0-1+b1 armhf +libnginx-mod-stream 1.14.0-1+b1 armhf -libnspr4 2:4.19-3+rpi1 armhf +libnspr4 2:4.20-1 armhf -libnss-systemd 239-7 armhf -libnss3 2:3.38-1 armhf +libnss-systemd 239-10+rpi1 armhf +libnss3 2:3.39-1 armhf -libopenal-data 1:1.18.2-3 all -libopenal1 1:1.18.2-3+b1 armhf +libopenal-data 1:1.19.1-1 all +libopenal1 1:1.19.1-1 armhf -libopenmpt0 0.3.11-1 armhf +libopenmpt0 0.3.12-1 armhf -libpam-systemd 239-7 armhf +libpam-systemd 239-10+rpi1 armhf -libpango-1.0-0 1.42.4-1 armhf -libpangocairo-1.0-0 1.42.4-1 armhf -libpangoft2-1.0-0 1.42.4-1 armhf -libparted2 3.2-21 armhf +libpango-1.0-0 1.42.4-3 armhf +libpangocairo-1.0-0 1.42.4-3 armhf +libpangoft2-1.0-0 1.42.4-3 armhf +libparted2 3.2-22 armhf -libpcsclite1 1.8.23-3 armhf -libperl5.26 5.26.2-7 armhf +libpcsclite1 1.8.24-1 armhf +libperl5.26 5.26.2-7+b1 armhf -libproxy1v5 0.4.15-1 armhf -libpsl5 0.20.2-1 armhf -libpulse0 12.0-1+rpi1 armhf +libproxy1v5 0.4.15-3 armhf +libpsl5 0.20.2-2 armhf +libpulse0 12.2-2+b2 armhf -libpython3-dev 3.6.5-3 armhf -libpython3-stdlib 3.6.5-3 armhf +libpython3-dev 3.6.6-1 armhf +libpython3-stdlib 3.6.6-1 armhf -libraspberrypi-bin 1.20180817-1 armhf -libraspberrypi-dev 1.20180817-1 armhf -libraspberrypi-doc 1.20180817-1 armhf -libraspberrypi0 1.20180817-1 armhf +libraspberrypi-bin 1.20180924-1 armhf +libraspberrypi-dev 1.20180924-1 armhf +libraspberrypi-doc 1.20180924-1 armhf +libraspberrypi0 1.20180924-1 armhf -libroar2 1.0~beta11-10 armhf +libroar2 1.0~beta11-11 armhf -libruby2.5 2.5.1-5 armhf +libruby2.5 2.5.1-5+b1 armhf -libsasl2-2 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules-db 2.1.27~101-g0780600+dfsg-3.1 armhf +libsasl2-2 2.1.27~rc8-1 armhf +libsasl2-modules 2.1.27~rc8-1 armhf +libsasl2-modules-db 2.1.27~rc8-1 armhf -libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libsdl2-2.0-0 2.0.8+dfsg1-4 armhf -libsensors4 1:3.4.0-4+b1 armhf +libsensors4 1:3.4.0-4+b2 armhf -libshine3 3.1.1-2 armhf +libshine3 3.1.1-2+b1 armhf -libsigc++-2.0-0v5 2.10.0-2 armhf +libsigc++-2.0-0v5 2.10.0-2.1 armhf -libsoup-gnome2.4-1 2.62.2-2 armhf -libsoup2.4-1 2.62.2-2 armhf +libsoup-gnome2.4-1 2.64.1-3 armhf +libsoup2.4-1 2.64.1-3 armhf -libsqlite3-0 3.24.0-1 armhf +libsqlite3-0 3.25.2-1 armhf -libstdc++-8-dev 8.2.0-4+rpi1 armhf -libstdc++6 8.2.0-4+rpi1 armhf +libstdc++-8-dev 8.2.0-7+rpi1 armhf +libstdc++6 8.2.0-7+rpi1 armhf -libswresample3 7:4.0.2-1+b2 armhf +libswresample3 7:4.0.2-2+b2 armhf -libsystemd0 239-7 armhf +libsystemd0 239-10+rpi1 armhf -libtdb1 1.3.15-4 armhf -libtevent0 0.9.36-2 armhf +libtdb1 1.3.16-1 armhf +libtevent0 0.9.37-1 armhf -libtirpc1 0.2.5-1.2 armhf +libtirpc1 0.2.5-1.3 armhf -libubsan1 8.2.0-4+rpi1 armhf +libubsan1 8.2.0-7+rpi1 armhf -libudev1 239-7 armhf +libudev1 239-10+rpi1 armhf -libuv1 1.22.0-3 armhf +libuv1 1.23.1-1 armhf -libva-drm2 2.2.0-1 armhf -libva-x11-2 2.2.0-1 armhf -libva2 2.2.0-1 armhf +libva-drm2 2.3.0-2 armhf +libva-x11-2 2.3.0-2 armhf +libva2 2.3.0-2 armhf -libwayland-client0 1.15.0-2 armhf -libwayland-cursor0 1.15.0-2 armhf -libwayland-egl1 1.15.0-2 armhf +libwayland-client0 1.16.0-1 armhf +libwayland-cursor0 1.16.0-1 armhf +libwayland-egl1 1.16.0-1 armhf -libwww-perl 6.35-2 all +libwww-perl 6.36-1 all -libx11-6 2:1.6.6-1 armhf -libx11-data 2:1.6.6-1 all +libx11-6 2:1.6.7-1 armhf +libx11-data 2:1.6.7-1 all -libx11-xcb1 2:1.6.6-1 armhf +libx11-xcb1 2:1.6.7-1 armhf +libx264-155 2:0.155.2917+git0a84d98-2+rpi1 armhf -libxapian30 1.4.7-2 armhf +libx265-165 2.9-3 armhf +libxapian30 1.4.7-4 armhf -libxcb-dri2-0 1.13-3 armhf -libxcb-dri3-0 1.13-3 armhf -libxcb-glx0 1.13-3 armhf +libxcb-dri2-0 1.13.1-1 armhf +libxcb-dri3-0 1.13.1-1 armhf +libxcb-glx0 1.13.1-1 armhf -libxcb-present0 1.13-3 armhf -libxcb-render0 1.13-3 armhf -libxcb-shape0 1.13-3 armhf -libxcb-shm0 1.13-3 armhf -libxcb-sync1 1.13-3 armhf +libxcb-present0 1.13.1-1 armhf +libxcb-render0 1.13.1-1 armhf +libxcb-shape0 1.13.1-1 armhf +libxcb-shm0 1.13.1-1 armhf +libxcb-sync1 1.13.1-1 armhf -libxcb-xfixes0 1.13-3 armhf -libxcb1 1.13-3 armhf +libxcb-xfixes0 1.13.1-1 armhf +libxcb1 1.13.1-1 armhf -libxss1 1:1.2.2-1 armhf +libxss1 1:1.2.3-1 armhf -libyajl2 2.1.0-2 armhf +libyajl2 2.1.0-3 armhf -libzvbi-common 0.2.35-13 all -libzvbi0 0.2.35-13 armhf +libzvbi-common 0.2.35-14 all +libzvbi0 0.2.35-14 armhf -locales 2.27-5+rpi1 all +locales 2.27-6+rpi1 all -man-db 2.8.4-2 armhf +man-db 2.8.4-2+b1 armhf -multiarch-support 2.27-5+rpi1 armhf +multiarch-support 2.27-6+rpi1 armhf -nano 2.9.8-1 armhf +nano 3.1-1 armhf -net-tools 1.60+git20161116.90da8a0-3 armhf +net-tools 1.60+git20180626.aebd88e-1 armhf -nginx-full 1.14.0-1 armhf +nginx-full 1.14.0-1+b1 armhf -parted 3.2-21 armhf +parted 3.2-22 armhf -perl 5.26.2-7 armhf -perl-base 5.26.2-7 armhf +perl 5.26.2-7+b1 armhf +perl-base 5.26.2-7+b1 armhf -psmisc 23.1-1 armhf +psmisc 23.2-1 armhf -python-apt-common 1.6.2 all +python-apt-common 1.7.0 all -python-cffi-backend 1.11.5-1 armhf +python-cairo 1.16.2-1 armhf +python-cffi-backend 1.11.5-3 armhf -python-gi 3.28.3-1 armhf +python-gi 3.30.1-1 armhf -python-keyring 13.1.0-1 all -python-keyrings.alt 3.0-1 all -python-lxml 4.2.4-1 armhf +python-keyring 15.1.0-1 all +python-keyrings.alt 3.1-1 all +python-lxml 4.2.5-1 armhf -python-newt 0.52.20-6 armhf +python-newt 0.52.20-8 armhf -python-pyicu 2.0.3-1+b1 armhf +python-pyicu 2.1-1 armhf -python3 3.6.5-3 armhf -python3-acme 0.26.0-1 all -python3-apt 1.6.2 armhf +python3 3.6.6-1 armhf +python3-acme 0.27.0-1 all +python3-apt 1.7.0 armhf -python3-certbot 0.26.1-1 all +python3-cairo 1.16.2-1 armhf +python3-certbot 0.27.0-1 all -python3-cffi-backend 1.11.5-1 armhf +python3-cffi-backend 1.11.5-3 armhf -python3-dev 3.6.5-3 armhf +python3-dev 3.6.6-1 armhf -python3-eyed3 0.8.5-1 all +python3-eyed3 0.8.7-1 all -python3-gi 3.28.3-1 armhf +python3-gi 3.30.1-1 armhf -python3-keyring 13.1.0-1 all -python3-keyrings.alt 3.0-1 all +python3-keyring 15.1.0-1 all +python3-keyrings.alt 3.1-1 all -python3-minimal 3.6.5-3 armhf -python3-mock 2.0.0-3 all +python3-minimal 3.6.6-1 armhf +python3-mock 2.0.0-4 all -raspberrypi-bootloader 1.20180817-1 armhf -raspberrypi-kernel 1.20180817-1 armhf +raspberrypi-bootloader 1.20180924-1 armhf +raspberrypi-kernel 1.20180924-1 armhf -rsyslog 8.37.0-2 armhf -ruby 1:2.5.1 armhf +rsyslog 8.38.0-1+b1 armhf +ruby 1:2.5.1+b1 armhf -ruby2.5 2.5.1-5 armhf +ruby2.5 2.5.1-5+b1 armhf -sed 4.5-1 armhf +sed 4.5-2 armhf -shared-mime-info 1.9-2 armhf +shared-mime-info 1.10-1 armhf -systemd 239-7 armhf -systemd-sysv 239-7 armhf -sysvinit-utils 2.88dsf-59.10 armhf +systemd 239-10+rpi1 armhf +systemd-sysv 239-10+rpi1 armhf +sysvinit-utils 2.88dsf-59.11 armhf -tasksel 3.45 all -tasksel-data 3.45 all +tasksel 3.46 all +tasksel-data 3.46 all -udev 239-7 armhf +udev 239-10+rpi1 armhf -va-driver-all 2.2.0-1 armhf +va-driver-all 2.3.0-2 armhf -vnstat 1.18-1 armhf +vnstat 1.18-2 armhf -whiptail 0.52.20-6 armhf +whiptail 0.52.20-8 armhf -wireless-tools 30~pre9-12 armhf +wireless-tools 30~pre9-13 armhf -zsh 5.6-1 armhf -zsh-common 5.6-1 all +zsh 5.6.2-3 armhf +zsh-common 5.6.2-3 all
6 years ago
# cubic - extrapolates samples using a Catmull-Rom spline
# bsinc12 - extrapolates samples using a band-limited Sinc filter (varying
# between 12 and 24 points, with anti-aliasing)
# bsinc24 - extrapolates samples using a band-limited Sinc filter (varying
# between 24 and 48 points, with anti-aliasing)
committing changes in /etc after apt run Package changes: +freepats 20060219-1 all +libadplug-2.2.1-0v5 2.2.1+dfsg3-0.4 armhf +libao-common 1.2.2+20180113-1 all +libao4 1.2.2+20180113-1 armhf +libaudiofile1 0.3.6-4 armhf +libavcodec58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-1+b2 armhf +libbinio1v5 1.4+dfsg1-6 armhf +libcdio-cdda2 10.2+0.94+2-4 armhf +libcdio-paranoia2 10.2+0.94+2-4 armhf +libcdio18 2.0.0-2 armhf +libcodec2-0.8.1 0.8.1-1 armhf +libfaad2 2.8.8-1 armhf +libfluidsynth1 1.1.11-1 armhf +libid3tag0 0.15.1b-13 armhf +libiso9660-11 2.0.0-2 armhf +libjack-jackd2-0 1.9.12~dfsg-2 armhf +libjansson4 2.11-1 armhf +libldb1 2:1.4.0+really1.3.6-1 armhf +libmad0 0.15.1b-9 armhf +libmikmod3 3.3.11.1-4 armhf +libmms0 0.6.4-3 armhf +libmodplug1 1:0.8.9.0-2 armhf +libmpcdec6 2:0.1~r495-1+b1 armhf +libmpdclient2 2.13-1 armhf +libnfs11 2.0.0-1~exp1 armhf +libopenal-data 1:1.18.2-3 all +libopenal1 1:1.18.2-3+b1 armhf +libroar2 1.0~beta11-10 armhf +libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libshout3 2.4.1-2 armhf +libsidplayfp4 1.8.8-1 armhf +libsmbclient 2:4.8.5+dfsg-1 armhf +libsndio7.0 1.5.0-2 armhf +libspeexdsp1 1.2~rc1.2-1 armhf -libssh-gcrypt-4 0.8.0~20170825.94fa1e38-1 armhf +libssh-gcrypt-4 0.8.1-1 armhf +libswresample3 7:4.0.2-1+b2 armhf +libtdb1 1.3.15-4 armhf +libtevent0 0.9.36-2 armhf +libupnp6 1:1.6.24-4 armhf -libwbclient0 2:4.8.2+dfsg-2 armhf +libwayland-client0 1.15.0-2 armhf +libwayland-cursor0 1.15.0-2 armhf +libwayland-egl1 1.15.0-2 armhf +libwbclient0 2:4.8.5+dfsg-1 armhf +libwildmidi-config 0.4.2-1 all +libwildmidi2 0.4.2-1 armhf +libxkbcommon0 0.8.2-1 armhf +libyajl2 2.1.0-2 armhf +libzzip-0-13 0.13.62-3.1 armhf +mpc 0.30-1 armhf +mpd 0.20.21-1 armhf +python-talloc 2.1.14-1 armhf +samba-libs 2:4.8.5+dfsg-1 armhf
6 years ago
#resampler = linear
## rt-prio: (global)
# Sets real-time priority for the mixing thread. Not all drivers may use this
# (eg. PortAudio) as they already control the priority of the mixing thread.
# 0 and negative values will disable it. Note that this may constitute a
# security risk since a real-time priority thread can indefinitely block
# normal-priority threads if it fails to wait. As such, the default is
# disabled.
#rt-prio = 0
## sources:
# Sets the maximum number of allocatable sources. Lower values may help for
# systems with apps that try to play more sounds than the CPU can handle.
#sources = 256
## slots:
# Sets the maximum number of Auxiliary Effect Slots an app can create. A slot
# can use a non-negligible amount of CPU time if an effect is set on it even
# if no sources are feeding it, so this may help when apps use more than the
# system can handle.
#slots = 64
## sends:
# Limits the number of auxiliary sends allowed per source. Setting this higher
# than the default has no effect.
#sends = 16
committing changes in /etc after apt run Package changes: -adduser 3.117 all -adwaita-icon-theme 3.28.0-1 all +adduser 3.118 all +adwaita-icon-theme 3.30.0-1 all -apt 1.6.4+b2 armhf +apt 1.7.0 armhf -apt-utils 1.6.4+b2 armhf -aptitude 0.8.10-9 armhf -aptitude-common 0.8.10-9 all -at-spi2-core 2.28.0-3 armhf -avahi-daemon 0.7-4 armhf +apt-utils 1.7.0 armhf +aptitude 0.8.11-3 armhf +aptitude-common 0.8.11-3 all +at-spi2-core 2.30.0-2 armhf +avahi-daemon 0.7-4+b1 armhf -bind9 1:9.11.4+dfsg-4 armhf -bind9-host 1:9.11.4+dfsg-4 armhf -bind9utils 1:9.11.4+dfsg-4 armhf -binutils 2.31.1-5+rpi1 armhf -binutils-arm-linux-gnueabihf 2.31.1-5+rpi1 armhf -binutils-common 2.31.1-5+rpi1 armhf +bind9 1:9.11.4.P2+dfsg-3 armhf +bind9-host 1:9.11.4.P2+dfsg-3 armhf +bind9utils 1:9.11.4.P2+dfsg-3 armhf +binutils 2.31.1-6+rpi1 armhf +binutils-arm-linux-gnueabihf 2.31.1-6+rpi1 armhf +binutils-common 2.31.1-6+rpi1 armhf -bluez 5.50-1 armhf +bluez 5.50-1+b2 armhf -certbot 0.26.1-1 all +certbot 0.27.0-1 all -cmake 3.12.1-1 armhf -cmake-data 3.12.1-1 all +cmake 3.12.3-2 armhf +cmake-data 3.12.3-2 all -console-setup 1.185 all -console-setup-linux 1.185 all -coreutils 8.28-1 armhf +console-setup 1.186 all +console-setup-linux 1.186 all +coreutils 8.30-1 armhf -cpp-6 6.4.0-20+rpi1 armhf +cpp-6 6.4.0-22+rpi1 armhf -cpp-8 8.2.0-4+rpi1 armhf +cpp-8 8.2.0-7+rpi1 armhf -dash 0.5.8-2.10 armhf +dash 0.5.10.2-1 armhf -dconf-gsettings-backend 0.28.0-2 armhf -dconf-service 0.28.0-2 armhf +dconf-gsettings-backend 0.30.0-1 armhf +dconf-service 0.30.0-1 armhf -device-tree-compiler 1.4.6-1 armhf -dh-python 3.20180723 all +device-tree-compiler 1.4.7-3 armhf +dh-python 3.20180927 all -dirmngr 2.2.10-1+rpi1 armhf +dirmngr 2.2.10-3+rpi1 armhf -dmidecode 3.1-2 armhf +dmidecode 3.2-1 armhf -dnsutils 1:9.11.4+dfsg-4 armhf +dnsutils 1:9.11.4.P2+dfsg-3 armhf -dpkg 1.19.0.5 armhf -dpkg-dev 1.19.0.5 all +dpkg 1.19.2 armhf +dpkg-dev 1.19.2 all -exim4-base 4.91-7 armhf -exim4-config 4.91-7 all -exim4-daemon-light 4.91-7 armhf -eyed3 0.8.5-1 all -fail2ban 0.10.2-2 all +exim4-base 4.91-8 armhf +exim4-config 4.91-8 all +exim4-daemon-light 4.91-8 armhf +eyed3 0.8.7-1 all +fail2ban 0.10.2-2.1 all -fontconfig 2.13.0-5 armhf -fontconfig-config 2.13.0-5 all +fontconfig 2.13.1-1 armhf +fontconfig-config 2.13.1-1 all -g++-8 8.2.0-4+rpi1 armhf -gawk 1:4.1.4+dfsg-1+b1 armhf +g++-8 8.2.0-7+rpi1 armhf +gawk 1:4.2.1+dfsg-1 armhf -gcc-6 6.4.0-20+rpi1 armhf -gcc-6-base 6.4.0-20+rpi1 armhf +gcc-6 6.4.0-22+rpi1 armhf +gcc-6-base 6.4.0-22+rpi1 armhf -gcc-8 8.2.0-4+rpi1 armhf -gcc-8-base 8.2.0-4+rpi1 armhf +gcc-8 8.2.0-7+rpi1 armhf +gcc-8-base 8.2.0-7+rpi1 armhf -gettext-base 0.19.8.1-7 armhf -gir1.2-glib-2.0 1.56.1-1 armhf -git 1:2.18.0-1 armhf -git-man 1:2.18.0-1 all -glib-networking 2.57.92-1 armhf -glib-networking-common 2.57.92-1 all -glib-networking-services 2.57.92-1 armhf +gettext-base 0.19.8.1-8 armhf +gir1.2-glib-2.0 1.58.0-1 armhf +git 1:2.19.1-1 armhf +git-man 1:2.19.1-1 all +glib-networking 2.58.0-1 armhf +glib-networking-common 2.58.0-1 all +glib-networking-services 2.58.0-1 armhf -gnupg 2.2.10-1+rpi1 all -gnupg-agent 2.2.10-1+rpi1 all -gnupg-l10n 2.2.10-1+rpi1 all -gnupg-utils 2.2.10-1+rpi1 armhf -gpg 2.2.10-1+rpi1 armhf -gpg-agent 2.2.10-1+rpi1 armhf -gpg-wks-client 2.2.10-1+rpi1 armhf -gpg-wks-server 2.2.10-1+rpi1 armhf -gpgconf 2.2.10-1+rpi1 armhf -gpgsm 2.2.10-1+rpi1 armhf -gpgv 2.2.10-1+rpi1 armhf +gnupg 2.2.10-3+rpi1 all +gnupg-agent 2.2.10-3+rpi1 all +gnupg-l10n 2.2.10-3+rpi1 all +gnupg-utils 2.2.10-3+rpi1 armhf +gpg 2.2.10-3+rpi1 armhf +gpg-agent 2.2.10-3+rpi1 armhf +gpg-wks-client 2.2.10-3+rpi1 armhf +gpg-wks-server 2.2.10-3+rpi1 armhf +gpgconf 2.2.10-3+rpi1 armhf +gpgsm 2.2.10-3+rpi1 armhf +gpgv 2.2.10-3+rpi1 armhf -gsettings-desktop-schemas 3.28.0-1 all -gtk-update-icon-cache 3.22.30-2+rpi1 armhf -gzip 1.9-2 armhf +gsettings-desktop-schemas 3.28.1-1 all +gtk-update-icon-cache 3.24.1-2+rvt armhf +gzip 1.9-2.1 armhf -hostname 3.20 armhf +hostname 3.21 armhf -i2c-tools 4.0-2+b1 armhf +i2c-tools 4.0-2+b2 armhf -iso-codes 3.79-1 all +iso-codes 4.1-1 all -keyboard-configuration 1.185 all +keyboard-configuration 1.186 all +libaom0 1.0.0-3 armhf -libapt-inst2.0 1.6.4+b2 armhf -libapt-pkg5.0 1.6.4+b2 armhf +libapt-inst2.0 1.7.0 armhf +libapt-pkg5.0 1.7.0 armhf -libasan3 6.4.0-20+rpi1 armhf +libasan3 6.4.0-22+rpi1 armhf -libasan5 8.2.0-4+rpi1 armhf +libasan5 8.2.0-7+rpi1 armhf -libatk-bridge2.0-0 2.26.2-1 armhf -libatk1.0-0 2.28.1-1 armhf -libatk1.0-data 2.28.1-1 all -libatomic1 8.2.0-4+rpi1 armhf -libatspi2.0-0 2.28.0-3 armhf +libatk-bridge2.0-0 2.30.0-2 armhf +libatk1.0-0 2.30.0-1 armhf +libatk1.0-data 2.30.0-1 all +libatomic1 8.2.0-7+rpi1 armhf +libatspi2.0-0 2.30.0-2 armhf -libavahi-client3 0.7-4 armhf -libavahi-common-data 0.7-4 armhf -libavahi-common3 0.7-4 armhf -libavahi-core7 0.7-4 armhf +libavahi-client3 0.7-4+b1 armhf +libavahi-common-data 0.7-4+b1 armhf +libavahi-common3 0.7-4+b1 armhf +libavahi-core7 0.7-4+b1 armhf -libavcodec58 7:4.0.2-1+b2 armhf +libavcodec58 7:4.0.2-2+b2 armhf -libavformat58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-2+b2 armhf -libavutil56 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-2+b2 armhf -libbind9-160 1:9.11.4+dfsg-4 armhf +libbind9-160 1:9.11.4.P2+dfsg-3 armhf -libbinutils 2.31.1-5+rpi1 armhf -libblas3 3.8.0-1 armhf +libbinutils 2.31.1-6+rpi1 armhf +libblas3 3.8.0-1+b1 armhf -libbluetooth3 5.50-1 armhf +libbluetooth3 5.50-1+b2 armhf -libboost-filesystem1.62.0 1.62.0+dfsg-8 armhf +libboost-filesystem1.62.0 1.62.0+dfsg-10 armhf -libboost-iostreams1.62.0 1.62.0+dfsg-8 armhf -libboost-system1.62.0 1.62.0+dfsg-8 armhf +libboost-iostreams1.62.0 1.62.0+dfsg-10 armhf +libboost-system1.62.0 1.62.0+dfsg-10 armhf -libc-bin 2.27-5+rpi1 armhf -libc-dev-bin 2.27-5+rpi1 armhf -libc-l10n 2.27-5+rpi1 all -libc6 2.27-5+rpi1 armhf -libc6-dbg 2.27-5+rpi1 armhf -libc6-dev 2.27-5+rpi1 armhf +libc-bin 2.27-6+rpi1 armhf +libc-dev-bin 2.27-6+rpi1 armhf +libc-l10n 2.27-6+rpi1 all +libc6 2.27-6+rpi1 armhf +libc6-dbg 2.27-6+rpi1 armhf +libc6-dev 2.27-6+rpi1 armhf -libcc1-0 8.2.0-4+rpi1 armhf +libcc1-0 8.2.0-7+rpi1 armhf -libcups2 2.2.8-5 armhf +libcups2 2.2.8-5+b1 armhf -libdb5.3 5.3.28+dfsg1-0.1 armhf +libdb5.3 5.3.28+dfsg1-0.2 armhf -libdconf1 0.28.0-2 armhf -libdebconfclient0 0.244 armhf +libdconf1 0.30.0-1 armhf +libdebconfclient0 0.245 armhf -libdns-export1102 1:9.11.4+dfsg-4 armhf +libdns-export1102 1:9.11.4.P2+dfsg-3 armhf -libdns1102 1:9.11.4+dfsg-4 armhf -libdpkg-perl 1.19.0.5 all -libdrm-amdgpu1 2.4.93-1+rpi1 armhf -libdrm-common 2.4.93-1+rpi1 all -libdrm-etnaviv1 2.4.93-1+rpi1 armhf -libdrm-freedreno1 2.4.93-1+rpi1 armhf -libdrm-nouveau2 2.4.93-1+rpi1 armhf -libdrm-radeon1 2.4.93-1+rpi1 armhf -libdrm2 2.4.93-1+rpi1 armhf +libdns1102 1:9.11.4.P2+dfsg-3 armhf +libdpkg-perl 1.19.2 all +libdrm-amdgpu1 2.4.95-1+rpi1 armhf +libdrm-common 2.4.95-1+rpi1 all +libdrm-etnaviv1 2.4.95-1+rpi1 armhf +libdrm-freedreno1 2.4.95-1+rpi1 armhf +libdrm-nouveau2 2.4.95-1+rpi1 armhf +libdrm-radeon1 2.4.95-1+rpi1 armhf +libdrm2 2.4.95-1+rpi1 armhf -libepoxy0 1.4.3-1 armhf +libepoxy0 1.5.3-0.1 armhf -libfftw3-single3 3.3.8-1 armhf +libfftw3-single3 3.3.8-2 armhf -libfontconfig1 2.13.0-5 armhf +libfontconfig1 2.13.1-1 armhf -libgcc-6-dev 6.4.0-20+rpi1 armhf +libgcc-6-dev 6.4.0-22+rpi1 armhf -libgcc-8-dev 8.2.0-4+rpi1 armhf -libgcc1 1:8.2.0-4+rpi1 armhf +libgcc-8-dev 8.2.0-7+rpi1 armhf +libgcc1 1:8.2.0-7+rpi1 armhf -libgd3 2.2.5-4 armhf -libgdbm-compat4 1.14.1-6 armhf +libgd3 2.2.5-4.1 armhf +libgdbm-compat4 1.18-2 armhf -libgdk-pixbuf2.0-0 2.36.12-2 armhf -libgdk-pixbuf2.0-bin 2.36.12-2 armhf -libgdk-pixbuf2.0-common 2.36.12-2 all +libgdbm6 1.18-2 armhf +libgdk-pixbuf2.0-0 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-bin 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-common 2.38.0+dfsg-6+rpi1 all -libgirepository-1.0-1 1.56.1-1 armhf +libgfortran5 8.2.0-7+rpi1 armhf +libgirepository-1.0-1 1.58.0-1 armhf -libglib2.0-0 2.56.1-2 armhf -libglib2.0-data 2.56.1-2 all +libglib2.0-0 2.58.1-2 armhf +libglib2.0-data 2.58.1-2 all -libgomp1 8.2.0-4+rpi1 armhf -libgpg-error0 1.32-1 armhf +libgomp1 8.2.0-7+rpi1 armhf +libgpg-error-l10n 1.32-2 all +libgpg-error0 1.32-2 armhf -libgssapi-krb5-2 1.16-2 armhf -libgtk-3-0 3.22.30-2+rpi1 armhf -libgtk-3-bin 3.22.30-2+rpi1 armhf -libgtk-3-common 3.22.30-2+rpi1 all +libgssapi-krb5-2 1.16.1-1 armhf +libgtk-3-0 3.24.1-2+rvt armhf +libgtk-3-bin 3.24.1-2+rvt armhf +libgtk-3-common 3.24.1-2+rvt all -libharfbuzz0b 1.8.8-2+rpi1 armhf +libharfbuzz0b 1.9.0-1+rpi1 armhf -libi2c0 4.0-2+b1 armhf +libi2c0 4.0-2+b2 armhf -libirs-export160 1:9.11.4+dfsg-4 armhf -libirs160 1:9.11.4+dfsg-4 armhf +libirs-export160 1:9.11.4.P2+dfsg-3 armhf +libirs160 1:9.11.4.P2+dfsg-3 armhf -libisc-export169 1:9.11.4+dfsg-4 armhf -libisc169 1:9.11.4+dfsg-4 armhf -libisccc160 1:9.11.4+dfsg-4 armhf -libisccfg-export160 1:9.11.4+dfsg-4 armhf -libisccfg160 1:9.11.4+dfsg-4 armhf +libisc-export169 1:9.11.4.P2+dfsg-3 armhf +libisc169 1:9.11.4.P2+dfsg-3 armhf +libisccc160 1:9.11.4.P2+dfsg-3 armhf +libisccfg-export160 1:9.11.4.P2+dfsg-3 armhf +libisccfg160 1:9.11.4.P2+dfsg-3 armhf -libiw30 30~pre9-12 armhf +libiw30 30~pre9-13 armhf -libjs-sphinxdoc 1.7.8-1 all +libjs-sphinxdoc 1.7.9-1 all -libjson-glib-1.0-0 1.4.2-4 armhf -libjson-glib-1.0-common 1.4.2-4 all +libjson-glib-1.0-0 1.4.4-1 armhf +libjson-glib-1.0-common 1.4.4-1 all -libk5crypto3 1.16-2 armhf +libk5crypto3 1.16.1-1 armhf -libkrb5-3 1.16-2 armhf -libkrb5support0 1.16-2 armhf +libkrb5-3 1.16.1-1 armhf +libkrb5support0 1.16.1-1 armhf -liblcms2-2 2.9-2 armhf +liblcms2-2 2.9-3 armhf -libllvm6.0 1:6.0.1-6+rpi1 armhf +libllvm6.0 1:6.0.1-9+rpi1 armhf -liblwres160 1:9.11.4+dfsg-4 armhf +liblwres160 1:9.11.4.P2+dfsg-3 armhf -libnewt0.52 0.52.20-6 armhf +libnewt0.52 0.52.20-8 armhf -libnginx-mod-http-auth-pam 1.14.0-1 armhf -libnginx-mod-http-dav-ext 1.14.0-1 armhf -libnginx-mod-http-echo 1.14.0-1 armhf -libnginx-mod-http-geoip 1.14.0-1 armhf -libnginx-mod-http-headers-more-filter 1.14.0-1 armhf -libnginx-mod-http-image-filter 1.14.0-1 armhf -libnginx-mod-http-subs-filter 1.14.0-1 armhf -libnginx-mod-http-upstream-fair 1.14.0-1 armhf -libnginx-mod-http-xslt-filter 1.14.0-1 armhf -libnginx-mod-mail 1.14.0-1 armhf -libnginx-mod-stream 1.14.0-1 armhf +libnginx-mod-http-auth-pam 1.14.0-1+b1 armhf +libnginx-mod-http-dav-ext 1.14.0-1+b1 armhf +libnginx-mod-http-echo 1.14.0-1+b1 armhf +libnginx-mod-http-geoip 1.14.0-1+b1 armhf +libnginx-mod-http-headers-more-filter 1.14.0-1+b1 armhf +libnginx-mod-http-image-filter 1.14.0-1+b1 armhf +libnginx-mod-http-subs-filter 1.14.0-1+b1 armhf +libnginx-mod-http-upstream-fair 1.14.0-1+b1 armhf +libnginx-mod-http-xslt-filter 1.14.0-1+b1 armhf +libnginx-mod-mail 1.14.0-1+b1 armhf +libnginx-mod-stream 1.14.0-1+b1 armhf -libnspr4 2:4.19-3+rpi1 armhf +libnspr4 2:4.20-1 armhf -libnss-systemd 239-7 armhf -libnss3 2:3.38-1 armhf +libnss-systemd 239-10+rpi1 armhf +libnss3 2:3.39-1 armhf -libopenal-data 1:1.18.2-3 all -libopenal1 1:1.18.2-3+b1 armhf +libopenal-data 1:1.19.1-1 all +libopenal1 1:1.19.1-1 armhf -libopenmpt0 0.3.11-1 armhf +libopenmpt0 0.3.12-1 armhf -libpam-systemd 239-7 armhf +libpam-systemd 239-10+rpi1 armhf -libpango-1.0-0 1.42.4-1 armhf -libpangocairo-1.0-0 1.42.4-1 armhf -libpangoft2-1.0-0 1.42.4-1 armhf -libparted2 3.2-21 armhf +libpango-1.0-0 1.42.4-3 armhf +libpangocairo-1.0-0 1.42.4-3 armhf +libpangoft2-1.0-0 1.42.4-3 armhf +libparted2 3.2-22 armhf -libpcsclite1 1.8.23-3 armhf -libperl5.26 5.26.2-7 armhf +libpcsclite1 1.8.24-1 armhf +libperl5.26 5.26.2-7+b1 armhf -libproxy1v5 0.4.15-1 armhf -libpsl5 0.20.2-1 armhf -libpulse0 12.0-1+rpi1 armhf +libproxy1v5 0.4.15-3 armhf +libpsl5 0.20.2-2 armhf +libpulse0 12.2-2+b2 armhf -libpython3-dev 3.6.5-3 armhf -libpython3-stdlib 3.6.5-3 armhf +libpython3-dev 3.6.6-1 armhf +libpython3-stdlib 3.6.6-1 armhf -libraspberrypi-bin 1.20180817-1 armhf -libraspberrypi-dev 1.20180817-1 armhf -libraspberrypi-doc 1.20180817-1 armhf -libraspberrypi0 1.20180817-1 armhf +libraspberrypi-bin 1.20180924-1 armhf +libraspberrypi-dev 1.20180924-1 armhf +libraspberrypi-doc 1.20180924-1 armhf +libraspberrypi0 1.20180924-1 armhf -libroar2 1.0~beta11-10 armhf +libroar2 1.0~beta11-11 armhf -libruby2.5 2.5.1-5 armhf +libruby2.5 2.5.1-5+b1 armhf -libsasl2-2 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules-db 2.1.27~101-g0780600+dfsg-3.1 armhf +libsasl2-2 2.1.27~rc8-1 armhf +libsasl2-modules 2.1.27~rc8-1 armhf +libsasl2-modules-db 2.1.27~rc8-1 armhf -libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libsdl2-2.0-0 2.0.8+dfsg1-4 armhf -libsensors4 1:3.4.0-4+b1 armhf +libsensors4 1:3.4.0-4+b2 armhf -libshine3 3.1.1-2 armhf +libshine3 3.1.1-2+b1 armhf -libsigc++-2.0-0v5 2.10.0-2 armhf +libsigc++-2.0-0v5 2.10.0-2.1 armhf -libsoup-gnome2.4-1 2.62.2-2 armhf -libsoup2.4-1 2.62.2-2 armhf +libsoup-gnome2.4-1 2.64.1-3 armhf +libsoup2.4-1 2.64.1-3 armhf -libsqlite3-0 3.24.0-1 armhf +libsqlite3-0 3.25.2-1 armhf -libstdc++-8-dev 8.2.0-4+rpi1 armhf -libstdc++6 8.2.0-4+rpi1 armhf +libstdc++-8-dev 8.2.0-7+rpi1 armhf +libstdc++6 8.2.0-7+rpi1 armhf -libswresample3 7:4.0.2-1+b2 armhf +libswresample3 7:4.0.2-2+b2 armhf -libsystemd0 239-7 armhf +libsystemd0 239-10+rpi1 armhf -libtdb1 1.3.15-4 armhf -libtevent0 0.9.36-2 armhf +libtdb1 1.3.16-1 armhf +libtevent0 0.9.37-1 armhf -libtirpc1 0.2.5-1.2 armhf +libtirpc1 0.2.5-1.3 armhf -libubsan1 8.2.0-4+rpi1 armhf +libubsan1 8.2.0-7+rpi1 armhf -libudev1 239-7 armhf +libudev1 239-10+rpi1 armhf -libuv1 1.22.0-3 armhf +libuv1 1.23.1-1 armhf -libva-drm2 2.2.0-1 armhf -libva-x11-2 2.2.0-1 armhf -libva2 2.2.0-1 armhf +libva-drm2 2.3.0-2 armhf +libva-x11-2 2.3.0-2 armhf +libva2 2.3.0-2 armhf -libwayland-client0 1.15.0-2 armhf -libwayland-cursor0 1.15.0-2 armhf -libwayland-egl1 1.15.0-2 armhf +libwayland-client0 1.16.0-1 armhf +libwayland-cursor0 1.16.0-1 armhf +libwayland-egl1 1.16.0-1 armhf -libwww-perl 6.35-2 all +libwww-perl 6.36-1 all -libx11-6 2:1.6.6-1 armhf -libx11-data 2:1.6.6-1 all +libx11-6 2:1.6.7-1 armhf +libx11-data 2:1.6.7-1 all -libx11-xcb1 2:1.6.6-1 armhf +libx11-xcb1 2:1.6.7-1 armhf +libx264-155 2:0.155.2917+git0a84d98-2+rpi1 armhf -libxapian30 1.4.7-2 armhf +libx265-165 2.9-3 armhf +libxapian30 1.4.7-4 armhf -libxcb-dri2-0 1.13-3 armhf -libxcb-dri3-0 1.13-3 armhf -libxcb-glx0 1.13-3 armhf +libxcb-dri2-0 1.13.1-1 armhf +libxcb-dri3-0 1.13.1-1 armhf +libxcb-glx0 1.13.1-1 armhf -libxcb-present0 1.13-3 armhf -libxcb-render0 1.13-3 armhf -libxcb-shape0 1.13-3 armhf -libxcb-shm0 1.13-3 armhf -libxcb-sync1 1.13-3 armhf +libxcb-present0 1.13.1-1 armhf +libxcb-render0 1.13.1-1 armhf +libxcb-shape0 1.13.1-1 armhf +libxcb-shm0 1.13.1-1 armhf +libxcb-sync1 1.13.1-1 armhf -libxcb-xfixes0 1.13-3 armhf -libxcb1 1.13-3 armhf +libxcb-xfixes0 1.13.1-1 armhf +libxcb1 1.13.1-1 armhf -libxss1 1:1.2.2-1 armhf +libxss1 1:1.2.3-1 armhf -libyajl2 2.1.0-2 armhf +libyajl2 2.1.0-3 armhf -libzvbi-common 0.2.35-13 all -libzvbi0 0.2.35-13 armhf +libzvbi-common 0.2.35-14 all +libzvbi0 0.2.35-14 armhf -locales 2.27-5+rpi1 all +locales 2.27-6+rpi1 all -man-db 2.8.4-2 armhf +man-db 2.8.4-2+b1 armhf -multiarch-support 2.27-5+rpi1 armhf +multiarch-support 2.27-6+rpi1 armhf -nano 2.9.8-1 armhf +nano 3.1-1 armhf -net-tools 1.60+git20161116.90da8a0-3 armhf +net-tools 1.60+git20180626.aebd88e-1 armhf -nginx-full 1.14.0-1 armhf +nginx-full 1.14.0-1+b1 armhf -parted 3.2-21 armhf +parted 3.2-22 armhf -perl 5.26.2-7 armhf -perl-base 5.26.2-7 armhf +perl 5.26.2-7+b1 armhf +perl-base 5.26.2-7+b1 armhf -psmisc 23.1-1 armhf +psmisc 23.2-1 armhf -python-apt-common 1.6.2 all +python-apt-common 1.7.0 all -python-cffi-backend 1.11.5-1 armhf +python-cairo 1.16.2-1 armhf +python-cffi-backend 1.11.5-3 armhf -python-gi 3.28.3-1 armhf +python-gi 3.30.1-1 armhf -python-keyring 13.1.0-1 all -python-keyrings.alt 3.0-1 all -python-lxml 4.2.4-1 armhf +python-keyring 15.1.0-1 all +python-keyrings.alt 3.1-1 all +python-lxml 4.2.5-1 armhf -python-newt 0.52.20-6 armhf +python-newt 0.52.20-8 armhf -python-pyicu 2.0.3-1+b1 armhf +python-pyicu 2.1-1 armhf -python3 3.6.5-3 armhf -python3-acme 0.26.0-1 all -python3-apt 1.6.2 armhf +python3 3.6.6-1 armhf +python3-acme 0.27.0-1 all +python3-apt 1.7.0 armhf -python3-certbot 0.26.1-1 all +python3-cairo 1.16.2-1 armhf +python3-certbot 0.27.0-1 all -python3-cffi-backend 1.11.5-1 armhf +python3-cffi-backend 1.11.5-3 armhf -python3-dev 3.6.5-3 armhf +python3-dev 3.6.6-1 armhf -python3-eyed3 0.8.5-1 all +python3-eyed3 0.8.7-1 all -python3-gi 3.28.3-1 armhf +python3-gi 3.30.1-1 armhf -python3-keyring 13.1.0-1 all -python3-keyrings.alt 3.0-1 all +python3-keyring 15.1.0-1 all +python3-keyrings.alt 3.1-1 all -python3-minimal 3.6.5-3 armhf -python3-mock 2.0.0-3 all +python3-minimal 3.6.6-1 armhf +python3-mock 2.0.0-4 all -raspberrypi-bootloader 1.20180817-1 armhf -raspberrypi-kernel 1.20180817-1 armhf +raspberrypi-bootloader 1.20180924-1 armhf +raspberrypi-kernel 1.20180924-1 armhf -rsyslog 8.37.0-2 armhf -ruby 1:2.5.1 armhf +rsyslog 8.38.0-1+b1 armhf +ruby 1:2.5.1+b1 armhf -ruby2.5 2.5.1-5 armhf +ruby2.5 2.5.1-5+b1 armhf -sed 4.5-1 armhf +sed 4.5-2 armhf -shared-mime-info 1.9-2 armhf +shared-mime-info 1.10-1 armhf -systemd 239-7 armhf -systemd-sysv 239-7 armhf -sysvinit-utils 2.88dsf-59.10 armhf +systemd 239-10+rpi1 armhf +systemd-sysv 239-10+rpi1 armhf +sysvinit-utils 2.88dsf-59.11 armhf -tasksel 3.45 all -tasksel-data 3.45 all +tasksel 3.46 all +tasksel-data 3.46 all -udev 239-7 armhf +udev 239-10+rpi1 armhf -va-driver-all 2.2.0-1 armhf +va-driver-all 2.3.0-2 armhf -vnstat 1.18-1 armhf +vnstat 1.18-2 armhf -whiptail 0.52.20-6 armhf +whiptail 0.52.20-8 armhf -wireless-tools 30~pre9-12 armhf +wireless-tools 30~pre9-13 armhf -zsh 5.6-1 armhf -zsh-common 5.6-1 all +zsh 5.6.2-3 armhf +zsh-common 5.6.2-3 all
6 years ago
## front-stablizer:
# Applies filters to "stablize" front sound imaging. A psychoacoustic method
# is used to generate a front-center channel signal from the front-left and
# front-right channels, improving the front response by reducing the combing
# artifacts and phase errors. Consequently, it will only work with channel
# configurations that include front-left, front-right, and front-center.
#front-stablizer = false
committing changes in /etc after apt run Package changes: +freepats 20060219-1 all +libadplug-2.2.1-0v5 2.2.1+dfsg3-0.4 armhf +libao-common 1.2.2+20180113-1 all +libao4 1.2.2+20180113-1 armhf +libaudiofile1 0.3.6-4 armhf +libavcodec58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-1+b2 armhf +libbinio1v5 1.4+dfsg1-6 armhf +libcdio-cdda2 10.2+0.94+2-4 armhf +libcdio-paranoia2 10.2+0.94+2-4 armhf +libcdio18 2.0.0-2 armhf +libcodec2-0.8.1 0.8.1-1 armhf +libfaad2 2.8.8-1 armhf +libfluidsynth1 1.1.11-1 armhf +libid3tag0 0.15.1b-13 armhf +libiso9660-11 2.0.0-2 armhf +libjack-jackd2-0 1.9.12~dfsg-2 armhf +libjansson4 2.11-1 armhf +libldb1 2:1.4.0+really1.3.6-1 armhf +libmad0 0.15.1b-9 armhf +libmikmod3 3.3.11.1-4 armhf +libmms0 0.6.4-3 armhf +libmodplug1 1:0.8.9.0-2 armhf +libmpcdec6 2:0.1~r495-1+b1 armhf +libmpdclient2 2.13-1 armhf +libnfs11 2.0.0-1~exp1 armhf +libopenal-data 1:1.18.2-3 all +libopenal1 1:1.18.2-3+b1 armhf +libroar2 1.0~beta11-10 armhf +libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libshout3 2.4.1-2 armhf +libsidplayfp4 1.8.8-1 armhf +libsmbclient 2:4.8.5+dfsg-1 armhf +libsndio7.0 1.5.0-2 armhf +libspeexdsp1 1.2~rc1.2-1 armhf -libssh-gcrypt-4 0.8.0~20170825.94fa1e38-1 armhf +libssh-gcrypt-4 0.8.1-1 armhf +libswresample3 7:4.0.2-1+b2 armhf +libtdb1 1.3.15-4 armhf +libtevent0 0.9.36-2 armhf +libupnp6 1:1.6.24-4 armhf -libwbclient0 2:4.8.2+dfsg-2 armhf +libwayland-client0 1.15.0-2 armhf +libwayland-cursor0 1.15.0-2 armhf +libwayland-egl1 1.15.0-2 armhf +libwbclient0 2:4.8.5+dfsg-1 armhf +libwildmidi-config 0.4.2-1 all +libwildmidi2 0.4.2-1 armhf +libxkbcommon0 0.8.2-1 armhf +libyajl2 2.1.0-2 armhf +libzzip-0-13 0.13.62-3.1 armhf +mpc 0.30-1 armhf +mpd 0.20.21-1 armhf +python-talloc 2.1.14-1 armhf +samba-libs 2:4.8.5+dfsg-1 armhf
6 years ago
## output-limiter:
# Applies a gain limiter on the final mixed output. This reduces the volume
# when the output samples would otherwise clamp, avoiding excessive clipping
# noise.
#output-limiter = true
## dither:
# Applies dithering on the final mix, for 8- and 16-bit output by default.
# This replaces the distortion created by nearest-value quantization with low-
# level whitenoise.
#dither = true
## dither-depth:
# Quantization bit-depth for dithered output. A value of 0 (or less) will
# match the output sample depth. For int32, uint32, and float32 output, 0 will
# disable dithering because they're at or beyond the rendered precision. The
# maximum dither depth is 24.
#dither-depth = 0
## volume-adjust:
# A global volume adjustment for source output, expressed in decibels. The
# value is logarithmic, so +6 will be a scale of (approximately) 2x, +12 will
# be a scale of 4x, etc. Similarly, -6 will be x1/2, and -12 is about x1/4. A
# value of 0 means no change.
#volume-adjust = 0
## excludefx: (global)
# Sets which effects to exclude, preventing apps from using them. This can
# help for apps that try to use effects which are too CPU intensive for the
committing changes in /etc after apt run Package changes: -adduser 3.117 all -adwaita-icon-theme 3.28.0-1 all +adduser 3.118 all +adwaita-icon-theme 3.30.0-1 all -apt 1.6.4+b2 armhf +apt 1.7.0 armhf -apt-utils 1.6.4+b2 armhf -aptitude 0.8.10-9 armhf -aptitude-common 0.8.10-9 all -at-spi2-core 2.28.0-3 armhf -avahi-daemon 0.7-4 armhf +apt-utils 1.7.0 armhf +aptitude 0.8.11-3 armhf +aptitude-common 0.8.11-3 all +at-spi2-core 2.30.0-2 armhf +avahi-daemon 0.7-4+b1 armhf -bind9 1:9.11.4+dfsg-4 armhf -bind9-host 1:9.11.4+dfsg-4 armhf -bind9utils 1:9.11.4+dfsg-4 armhf -binutils 2.31.1-5+rpi1 armhf -binutils-arm-linux-gnueabihf 2.31.1-5+rpi1 armhf -binutils-common 2.31.1-5+rpi1 armhf +bind9 1:9.11.4.P2+dfsg-3 armhf +bind9-host 1:9.11.4.P2+dfsg-3 armhf +bind9utils 1:9.11.4.P2+dfsg-3 armhf +binutils 2.31.1-6+rpi1 armhf +binutils-arm-linux-gnueabihf 2.31.1-6+rpi1 armhf +binutils-common 2.31.1-6+rpi1 armhf -bluez 5.50-1 armhf +bluez 5.50-1+b2 armhf -certbot 0.26.1-1 all +certbot 0.27.0-1 all -cmake 3.12.1-1 armhf -cmake-data 3.12.1-1 all +cmake 3.12.3-2 armhf +cmake-data 3.12.3-2 all -console-setup 1.185 all -console-setup-linux 1.185 all -coreutils 8.28-1 armhf +console-setup 1.186 all +console-setup-linux 1.186 all +coreutils 8.30-1 armhf -cpp-6 6.4.0-20+rpi1 armhf +cpp-6 6.4.0-22+rpi1 armhf -cpp-8 8.2.0-4+rpi1 armhf +cpp-8 8.2.0-7+rpi1 armhf -dash 0.5.8-2.10 armhf +dash 0.5.10.2-1 armhf -dconf-gsettings-backend 0.28.0-2 armhf -dconf-service 0.28.0-2 armhf +dconf-gsettings-backend 0.30.0-1 armhf +dconf-service 0.30.0-1 armhf -device-tree-compiler 1.4.6-1 armhf -dh-python 3.20180723 all +device-tree-compiler 1.4.7-3 armhf +dh-python 3.20180927 all -dirmngr 2.2.10-1+rpi1 armhf +dirmngr 2.2.10-3+rpi1 armhf -dmidecode 3.1-2 armhf +dmidecode 3.2-1 armhf -dnsutils 1:9.11.4+dfsg-4 armhf +dnsutils 1:9.11.4.P2+dfsg-3 armhf -dpkg 1.19.0.5 armhf -dpkg-dev 1.19.0.5 all +dpkg 1.19.2 armhf +dpkg-dev 1.19.2 all -exim4-base 4.91-7 armhf -exim4-config 4.91-7 all -exim4-daemon-light 4.91-7 armhf -eyed3 0.8.5-1 all -fail2ban 0.10.2-2 all +exim4-base 4.91-8 armhf +exim4-config 4.91-8 all +exim4-daemon-light 4.91-8 armhf +eyed3 0.8.7-1 all +fail2ban 0.10.2-2.1 all -fontconfig 2.13.0-5 armhf -fontconfig-config 2.13.0-5 all +fontconfig 2.13.1-1 armhf +fontconfig-config 2.13.1-1 all -g++-8 8.2.0-4+rpi1 armhf -gawk 1:4.1.4+dfsg-1+b1 armhf +g++-8 8.2.0-7+rpi1 armhf +gawk 1:4.2.1+dfsg-1 armhf -gcc-6 6.4.0-20+rpi1 armhf -gcc-6-base 6.4.0-20+rpi1 armhf +gcc-6 6.4.0-22+rpi1 armhf +gcc-6-base 6.4.0-22+rpi1 armhf -gcc-8 8.2.0-4+rpi1 armhf -gcc-8-base 8.2.0-4+rpi1 armhf +gcc-8 8.2.0-7+rpi1 armhf +gcc-8-base 8.2.0-7+rpi1 armhf -gettext-base 0.19.8.1-7 armhf -gir1.2-glib-2.0 1.56.1-1 armhf -git 1:2.18.0-1 armhf -git-man 1:2.18.0-1 all -glib-networking 2.57.92-1 armhf -glib-networking-common 2.57.92-1 all -glib-networking-services 2.57.92-1 armhf +gettext-base 0.19.8.1-8 armhf +gir1.2-glib-2.0 1.58.0-1 armhf +git 1:2.19.1-1 armhf +git-man 1:2.19.1-1 all +glib-networking 2.58.0-1 armhf +glib-networking-common 2.58.0-1 all +glib-networking-services 2.58.0-1 armhf -gnupg 2.2.10-1+rpi1 all -gnupg-agent 2.2.10-1+rpi1 all -gnupg-l10n 2.2.10-1+rpi1 all -gnupg-utils 2.2.10-1+rpi1 armhf -gpg 2.2.10-1+rpi1 armhf -gpg-agent 2.2.10-1+rpi1 armhf -gpg-wks-client 2.2.10-1+rpi1 armhf -gpg-wks-server 2.2.10-1+rpi1 armhf -gpgconf 2.2.10-1+rpi1 armhf -gpgsm 2.2.10-1+rpi1 armhf -gpgv 2.2.10-1+rpi1 armhf +gnupg 2.2.10-3+rpi1 all +gnupg-agent 2.2.10-3+rpi1 all +gnupg-l10n 2.2.10-3+rpi1 all +gnupg-utils 2.2.10-3+rpi1 armhf +gpg 2.2.10-3+rpi1 armhf +gpg-agent 2.2.10-3+rpi1 armhf +gpg-wks-client 2.2.10-3+rpi1 armhf +gpg-wks-server 2.2.10-3+rpi1 armhf +gpgconf 2.2.10-3+rpi1 armhf +gpgsm 2.2.10-3+rpi1 armhf +gpgv 2.2.10-3+rpi1 armhf -gsettings-desktop-schemas 3.28.0-1 all -gtk-update-icon-cache 3.22.30-2+rpi1 armhf -gzip 1.9-2 armhf +gsettings-desktop-schemas 3.28.1-1 all +gtk-update-icon-cache 3.24.1-2+rvt armhf +gzip 1.9-2.1 armhf -hostname 3.20 armhf +hostname 3.21 armhf -i2c-tools 4.0-2+b1 armhf +i2c-tools 4.0-2+b2 armhf -iso-codes 3.79-1 all +iso-codes 4.1-1 all -keyboard-configuration 1.185 all +keyboard-configuration 1.186 all +libaom0 1.0.0-3 armhf -libapt-inst2.0 1.6.4+b2 armhf -libapt-pkg5.0 1.6.4+b2 armhf +libapt-inst2.0 1.7.0 armhf +libapt-pkg5.0 1.7.0 armhf -libasan3 6.4.0-20+rpi1 armhf +libasan3 6.4.0-22+rpi1 armhf -libasan5 8.2.0-4+rpi1 armhf +libasan5 8.2.0-7+rpi1 armhf -libatk-bridge2.0-0 2.26.2-1 armhf -libatk1.0-0 2.28.1-1 armhf -libatk1.0-data 2.28.1-1 all -libatomic1 8.2.0-4+rpi1 armhf -libatspi2.0-0 2.28.0-3 armhf +libatk-bridge2.0-0 2.30.0-2 armhf +libatk1.0-0 2.30.0-1 armhf +libatk1.0-data 2.30.0-1 all +libatomic1 8.2.0-7+rpi1 armhf +libatspi2.0-0 2.30.0-2 armhf -libavahi-client3 0.7-4 armhf -libavahi-common-data 0.7-4 armhf -libavahi-common3 0.7-4 armhf -libavahi-core7 0.7-4 armhf +libavahi-client3 0.7-4+b1 armhf +libavahi-common-data 0.7-4+b1 armhf +libavahi-common3 0.7-4+b1 armhf +libavahi-core7 0.7-4+b1 armhf -libavcodec58 7:4.0.2-1+b2 armhf +libavcodec58 7:4.0.2-2+b2 armhf -libavformat58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-2+b2 armhf -libavutil56 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-2+b2 armhf -libbind9-160 1:9.11.4+dfsg-4 armhf +libbind9-160 1:9.11.4.P2+dfsg-3 armhf -libbinutils 2.31.1-5+rpi1 armhf -libblas3 3.8.0-1 armhf +libbinutils 2.31.1-6+rpi1 armhf +libblas3 3.8.0-1+b1 armhf -libbluetooth3 5.50-1 armhf +libbluetooth3 5.50-1+b2 armhf -libboost-filesystem1.62.0 1.62.0+dfsg-8 armhf +libboost-filesystem1.62.0 1.62.0+dfsg-10 armhf -libboost-iostreams1.62.0 1.62.0+dfsg-8 armhf -libboost-system1.62.0 1.62.0+dfsg-8 armhf +libboost-iostreams1.62.0 1.62.0+dfsg-10 armhf +libboost-system1.62.0 1.62.0+dfsg-10 armhf -libc-bin 2.27-5+rpi1 armhf -libc-dev-bin 2.27-5+rpi1 armhf -libc-l10n 2.27-5+rpi1 all -libc6 2.27-5+rpi1 armhf -libc6-dbg 2.27-5+rpi1 armhf -libc6-dev 2.27-5+rpi1 armhf +libc-bin 2.27-6+rpi1 armhf +libc-dev-bin 2.27-6+rpi1 armhf +libc-l10n 2.27-6+rpi1 all +libc6 2.27-6+rpi1 armhf +libc6-dbg 2.27-6+rpi1 armhf +libc6-dev 2.27-6+rpi1 armhf -libcc1-0 8.2.0-4+rpi1 armhf +libcc1-0 8.2.0-7+rpi1 armhf -libcups2 2.2.8-5 armhf +libcups2 2.2.8-5+b1 armhf -libdb5.3 5.3.28+dfsg1-0.1 armhf +libdb5.3 5.3.28+dfsg1-0.2 armhf -libdconf1 0.28.0-2 armhf -libdebconfclient0 0.244 armhf +libdconf1 0.30.0-1 armhf +libdebconfclient0 0.245 armhf -libdns-export1102 1:9.11.4+dfsg-4 armhf +libdns-export1102 1:9.11.4.P2+dfsg-3 armhf -libdns1102 1:9.11.4+dfsg-4 armhf -libdpkg-perl 1.19.0.5 all -libdrm-amdgpu1 2.4.93-1+rpi1 armhf -libdrm-common 2.4.93-1+rpi1 all -libdrm-etnaviv1 2.4.93-1+rpi1 armhf -libdrm-freedreno1 2.4.93-1+rpi1 armhf -libdrm-nouveau2 2.4.93-1+rpi1 armhf -libdrm-radeon1 2.4.93-1+rpi1 armhf -libdrm2 2.4.93-1+rpi1 armhf +libdns1102 1:9.11.4.P2+dfsg-3 armhf +libdpkg-perl 1.19.2 all +libdrm-amdgpu1 2.4.95-1+rpi1 armhf +libdrm-common 2.4.95-1+rpi1 all +libdrm-etnaviv1 2.4.95-1+rpi1 armhf +libdrm-freedreno1 2.4.95-1+rpi1 armhf +libdrm-nouveau2 2.4.95-1+rpi1 armhf +libdrm-radeon1 2.4.95-1+rpi1 armhf +libdrm2 2.4.95-1+rpi1 armhf -libepoxy0 1.4.3-1 armhf +libepoxy0 1.5.3-0.1 armhf -libfftw3-single3 3.3.8-1 armhf +libfftw3-single3 3.3.8-2 armhf -libfontconfig1 2.13.0-5 armhf +libfontconfig1 2.13.1-1 armhf -libgcc-6-dev 6.4.0-20+rpi1 armhf +libgcc-6-dev 6.4.0-22+rpi1 armhf -libgcc-8-dev 8.2.0-4+rpi1 armhf -libgcc1 1:8.2.0-4+rpi1 armhf +libgcc-8-dev 8.2.0-7+rpi1 armhf +libgcc1 1:8.2.0-7+rpi1 armhf -libgd3 2.2.5-4 armhf -libgdbm-compat4 1.14.1-6 armhf +libgd3 2.2.5-4.1 armhf +libgdbm-compat4 1.18-2 armhf -libgdk-pixbuf2.0-0 2.36.12-2 armhf -libgdk-pixbuf2.0-bin 2.36.12-2 armhf -libgdk-pixbuf2.0-common 2.36.12-2 all +libgdbm6 1.18-2 armhf +libgdk-pixbuf2.0-0 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-bin 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-common 2.38.0+dfsg-6+rpi1 all -libgirepository-1.0-1 1.56.1-1 armhf +libgfortran5 8.2.0-7+rpi1 armhf +libgirepository-1.0-1 1.58.0-1 armhf -libglib2.0-0 2.56.1-2 armhf -libglib2.0-data 2.56.1-2 all +libglib2.0-0 2.58.1-2 armhf +libglib2.0-data 2.58.1-2 all -libgomp1 8.2.0-4+rpi1 armhf -libgpg-error0 1.32-1 armhf +libgomp1 8.2.0-7+rpi1 armhf +libgpg-error-l10n 1.32-2 all +libgpg-error0 1.32-2 armhf -libgssapi-krb5-2 1.16-2 armhf -libgtk-3-0 3.22.30-2+rpi1 armhf -libgtk-3-bin 3.22.30-2+rpi1 armhf -libgtk-3-common 3.22.30-2+rpi1 all +libgssapi-krb5-2 1.16.1-1 armhf +libgtk-3-0 3.24.1-2+rvt armhf +libgtk-3-bin 3.24.1-2+rvt armhf +libgtk-3-common 3.24.1-2+rvt all -libharfbuzz0b 1.8.8-2+rpi1 armhf +libharfbuzz0b 1.9.0-1+rpi1 armhf -libi2c0 4.0-2+b1 armhf +libi2c0 4.0-2+b2 armhf -libirs-export160 1:9.11.4+dfsg-4 armhf -libirs160 1:9.11.4+dfsg-4 armhf +libirs-export160 1:9.11.4.P2+dfsg-3 armhf +libirs160 1:9.11.4.P2+dfsg-3 armhf -libisc-export169 1:9.11.4+dfsg-4 armhf -libisc169 1:9.11.4+dfsg-4 armhf -libisccc160 1:9.11.4+dfsg-4 armhf -libisccfg-export160 1:9.11.4+dfsg-4 armhf -libisccfg160 1:9.11.4+dfsg-4 armhf +libisc-export169 1:9.11.4.P2+dfsg-3 armhf +libisc169 1:9.11.4.P2+dfsg-3 armhf +libisccc160 1:9.11.4.P2+dfsg-3 armhf +libisccfg-export160 1:9.11.4.P2+dfsg-3 armhf +libisccfg160 1:9.11.4.P2+dfsg-3 armhf -libiw30 30~pre9-12 armhf +libiw30 30~pre9-13 armhf -libjs-sphinxdoc 1.7.8-1 all +libjs-sphinxdoc 1.7.9-1 all -libjson-glib-1.0-0 1.4.2-4 armhf -libjson-glib-1.0-common 1.4.2-4 all +libjson-glib-1.0-0 1.4.4-1 armhf +libjson-glib-1.0-common 1.4.4-1 all -libk5crypto3 1.16-2 armhf +libk5crypto3 1.16.1-1 armhf -libkrb5-3 1.16-2 armhf -libkrb5support0 1.16-2 armhf +libkrb5-3 1.16.1-1 armhf +libkrb5support0 1.16.1-1 armhf -liblcms2-2 2.9-2 armhf +liblcms2-2 2.9-3 armhf -libllvm6.0 1:6.0.1-6+rpi1 armhf +libllvm6.0 1:6.0.1-9+rpi1 armhf -liblwres160 1:9.11.4+dfsg-4 armhf +liblwres160 1:9.11.4.P2+dfsg-3 armhf -libnewt0.52 0.52.20-6 armhf +libnewt0.52 0.52.20-8 armhf -libnginx-mod-http-auth-pam 1.14.0-1 armhf -libnginx-mod-http-dav-ext 1.14.0-1 armhf -libnginx-mod-http-echo 1.14.0-1 armhf -libnginx-mod-http-geoip 1.14.0-1 armhf -libnginx-mod-http-headers-more-filter 1.14.0-1 armhf -libnginx-mod-http-image-filter 1.14.0-1 armhf -libnginx-mod-http-subs-filter 1.14.0-1 armhf -libnginx-mod-http-upstream-fair 1.14.0-1 armhf -libnginx-mod-http-xslt-filter 1.14.0-1 armhf -libnginx-mod-mail 1.14.0-1 armhf -libnginx-mod-stream 1.14.0-1 armhf +libnginx-mod-http-auth-pam 1.14.0-1+b1 armhf +libnginx-mod-http-dav-ext 1.14.0-1+b1 armhf +libnginx-mod-http-echo 1.14.0-1+b1 armhf +libnginx-mod-http-geoip 1.14.0-1+b1 armhf +libnginx-mod-http-headers-more-filter 1.14.0-1+b1 armhf +libnginx-mod-http-image-filter 1.14.0-1+b1 armhf +libnginx-mod-http-subs-filter 1.14.0-1+b1 armhf +libnginx-mod-http-upstream-fair 1.14.0-1+b1 armhf +libnginx-mod-http-xslt-filter 1.14.0-1+b1 armhf +libnginx-mod-mail 1.14.0-1+b1 armhf +libnginx-mod-stream 1.14.0-1+b1 armhf -libnspr4 2:4.19-3+rpi1 armhf +libnspr4 2:4.20-1 armhf -libnss-systemd 239-7 armhf -libnss3 2:3.38-1 armhf +libnss-systemd 239-10+rpi1 armhf +libnss3 2:3.39-1 armhf -libopenal-data 1:1.18.2-3 all -libopenal1 1:1.18.2-3+b1 armhf +libopenal-data 1:1.19.1-1 all +libopenal1 1:1.19.1-1 armhf -libopenmpt0 0.3.11-1 armhf +libopenmpt0 0.3.12-1 armhf -libpam-systemd 239-7 armhf +libpam-systemd 239-10+rpi1 armhf -libpango-1.0-0 1.42.4-1 armhf -libpangocairo-1.0-0 1.42.4-1 armhf -libpangoft2-1.0-0 1.42.4-1 armhf -libparted2 3.2-21 armhf +libpango-1.0-0 1.42.4-3 armhf +libpangocairo-1.0-0 1.42.4-3 armhf +libpangoft2-1.0-0 1.42.4-3 armhf +libparted2 3.2-22 armhf -libpcsclite1 1.8.23-3 armhf -libperl5.26 5.26.2-7 armhf +libpcsclite1 1.8.24-1 armhf +libperl5.26 5.26.2-7+b1 armhf -libproxy1v5 0.4.15-1 armhf -libpsl5 0.20.2-1 armhf -libpulse0 12.0-1+rpi1 armhf +libproxy1v5 0.4.15-3 armhf +libpsl5 0.20.2-2 armhf +libpulse0 12.2-2+b2 armhf -libpython3-dev 3.6.5-3 armhf -libpython3-stdlib 3.6.5-3 armhf +libpython3-dev 3.6.6-1 armhf +libpython3-stdlib 3.6.6-1 armhf -libraspberrypi-bin 1.20180817-1 armhf -libraspberrypi-dev 1.20180817-1 armhf -libraspberrypi-doc 1.20180817-1 armhf -libraspberrypi0 1.20180817-1 armhf +libraspberrypi-bin 1.20180924-1 armhf +libraspberrypi-dev 1.20180924-1 armhf +libraspberrypi-doc 1.20180924-1 armhf +libraspberrypi0 1.20180924-1 armhf -libroar2 1.0~beta11-10 armhf +libroar2 1.0~beta11-11 armhf -libruby2.5 2.5.1-5 armhf +libruby2.5 2.5.1-5+b1 armhf -libsasl2-2 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules-db 2.1.27~101-g0780600+dfsg-3.1 armhf +libsasl2-2 2.1.27~rc8-1 armhf +libsasl2-modules 2.1.27~rc8-1 armhf +libsasl2-modules-db 2.1.27~rc8-1 armhf -libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libsdl2-2.0-0 2.0.8+dfsg1-4 armhf -libsensors4 1:3.4.0-4+b1 armhf +libsensors4 1:3.4.0-4+b2 armhf -libshine3 3.1.1-2 armhf +libshine3 3.1.1-2+b1 armhf -libsigc++-2.0-0v5 2.10.0-2 armhf +libsigc++-2.0-0v5 2.10.0-2.1 armhf -libsoup-gnome2.4-1 2.62.2-2 armhf -libsoup2.4-1 2.62.2-2 armhf +libsoup-gnome2.4-1 2.64.1-3 armhf +libsoup2.4-1 2.64.1-3 armhf -libsqlite3-0 3.24.0-1 armhf +libsqlite3-0 3.25.2-1 armhf -libstdc++-8-dev 8.2.0-4+rpi1 armhf -libstdc++6 8.2.0-4+rpi1 armhf +libstdc++-8-dev 8.2.0-7+rpi1 armhf +libstdc++6 8.2.0-7+rpi1 armhf -libswresample3 7:4.0.2-1+b2 armhf +libswresample3 7:4.0.2-2+b2 armhf -libsystemd0 239-7 armhf +libsystemd0 239-10+rpi1 armhf -libtdb1 1.3.15-4 armhf -libtevent0 0.9.36-2 armhf +libtdb1 1.3.16-1 armhf +libtevent0 0.9.37-1 armhf -libtirpc1 0.2.5-1.2 armhf +libtirpc1 0.2.5-1.3 armhf -libubsan1 8.2.0-4+rpi1 armhf +libubsan1 8.2.0-7+rpi1 armhf -libudev1 239-7 armhf +libudev1 239-10+rpi1 armhf -libuv1 1.22.0-3 armhf +libuv1 1.23.1-1 armhf -libva-drm2 2.2.0-1 armhf -libva-x11-2 2.2.0-1 armhf -libva2 2.2.0-1 armhf +libva-drm2 2.3.0-2 armhf +libva-x11-2 2.3.0-2 armhf +libva2 2.3.0-2 armhf -libwayland-client0 1.15.0-2 armhf -libwayland-cursor0 1.15.0-2 armhf -libwayland-egl1 1.15.0-2 armhf +libwayland-client0 1.16.0-1 armhf +libwayland-cursor0 1.16.0-1 armhf +libwayland-egl1 1.16.0-1 armhf -libwww-perl 6.35-2 all +libwww-perl 6.36-1 all -libx11-6 2:1.6.6-1 armhf -libx11-data 2:1.6.6-1 all +libx11-6 2:1.6.7-1 armhf +libx11-data 2:1.6.7-1 all -libx11-xcb1 2:1.6.6-1 armhf +libx11-xcb1 2:1.6.7-1 armhf +libx264-155 2:0.155.2917+git0a84d98-2+rpi1 armhf -libxapian30 1.4.7-2 armhf +libx265-165 2.9-3 armhf +libxapian30 1.4.7-4 armhf -libxcb-dri2-0 1.13-3 armhf -libxcb-dri3-0 1.13-3 armhf -libxcb-glx0 1.13-3 armhf +libxcb-dri2-0 1.13.1-1 armhf +libxcb-dri3-0 1.13.1-1 armhf +libxcb-glx0 1.13.1-1 armhf -libxcb-present0 1.13-3 armhf -libxcb-render0 1.13-3 armhf -libxcb-shape0 1.13-3 armhf -libxcb-shm0 1.13-3 armhf -libxcb-sync1 1.13-3 armhf +libxcb-present0 1.13.1-1 armhf +libxcb-render0 1.13.1-1 armhf +libxcb-shape0 1.13.1-1 armhf +libxcb-shm0 1.13.1-1 armhf +libxcb-sync1 1.13.1-1 armhf -libxcb-xfixes0 1.13-3 armhf -libxcb1 1.13-3 armhf +libxcb-xfixes0 1.13.1-1 armhf +libxcb1 1.13.1-1 armhf -libxss1 1:1.2.2-1 armhf +libxss1 1:1.2.3-1 armhf -libyajl2 2.1.0-2 armhf +libyajl2 2.1.0-3 armhf -libzvbi-common 0.2.35-13 all -libzvbi0 0.2.35-13 armhf +libzvbi-common 0.2.35-14 all +libzvbi0 0.2.35-14 armhf -locales 2.27-5+rpi1 all +locales 2.27-6+rpi1 all -man-db 2.8.4-2 armhf +man-db 2.8.4-2+b1 armhf -multiarch-support 2.27-5+rpi1 armhf +multiarch-support 2.27-6+rpi1 armhf -nano 2.9.8-1 armhf +nano 3.1-1 armhf -net-tools 1.60+git20161116.90da8a0-3 armhf +net-tools 1.60+git20180626.aebd88e-1 armhf -nginx-full 1.14.0-1 armhf +nginx-full 1.14.0-1+b1 armhf -parted 3.2-21 armhf +parted 3.2-22 armhf -perl 5.26.2-7 armhf -perl-base 5.26.2-7 armhf +perl 5.26.2-7+b1 armhf +perl-base 5.26.2-7+b1 armhf -psmisc 23.1-1 armhf +psmisc 23.2-1 armhf -python-apt-common 1.6.2 all +python-apt-common 1.7.0 all -python-cffi-backend 1.11.5-1 armhf +python-cairo 1.16.2-1 armhf +python-cffi-backend 1.11.5-3 armhf -python-gi 3.28.3-1 armhf +python-gi 3.30.1-1 armhf -python-keyring 13.1.0-1 all -python-keyrings.alt 3.0-1 all -python-lxml 4.2.4-1 armhf +python-keyring 15.1.0-1 all +python-keyrings.alt 3.1-1 all +python-lxml 4.2.5-1 armhf -python-newt 0.52.20-6 armhf +python-newt 0.52.20-8 armhf -python-pyicu 2.0.3-1+b1 armhf +python-pyicu 2.1-1 armhf -python3 3.6.5-3 armhf -python3-acme 0.26.0-1 all -python3-apt 1.6.2 armhf +python3 3.6.6-1 armhf +python3-acme 0.27.0-1 all +python3-apt 1.7.0 armhf -python3-certbot 0.26.1-1 all +python3-cairo 1.16.2-1 armhf +python3-certbot 0.27.0-1 all -python3-cffi-backend 1.11.5-1 armhf +python3-cffi-backend 1.11.5-3 armhf -python3-dev 3.6.5-3 armhf +python3-dev 3.6.6-1 armhf -python3-eyed3 0.8.5-1 all +python3-eyed3 0.8.7-1 all -python3-gi 3.28.3-1 armhf +python3-gi 3.30.1-1 armhf -python3-keyring 13.1.0-1 all -python3-keyrings.alt 3.0-1 all +python3-keyring 15.1.0-1 all +python3-keyrings.alt 3.1-1 all -python3-minimal 3.6.5-3 armhf -python3-mock 2.0.0-3 all +python3-minimal 3.6.6-1 armhf +python3-mock 2.0.0-4 all -raspberrypi-bootloader 1.20180817-1 armhf -raspberrypi-kernel 1.20180817-1 armhf +raspberrypi-bootloader 1.20180924-1 armhf +raspberrypi-kernel 1.20180924-1 armhf -rsyslog 8.37.0-2 armhf -ruby 1:2.5.1 armhf +rsyslog 8.38.0-1+b1 armhf +ruby 1:2.5.1+b1 armhf -ruby2.5 2.5.1-5 armhf +ruby2.5 2.5.1-5+b1 armhf -sed 4.5-1 armhf +sed 4.5-2 armhf -shared-mime-info 1.9-2 armhf +shared-mime-info 1.10-1 armhf -systemd 239-7 armhf -systemd-sysv 239-7 armhf -sysvinit-utils 2.88dsf-59.10 armhf +systemd 239-10+rpi1 armhf +systemd-sysv 239-10+rpi1 armhf +sysvinit-utils 2.88dsf-59.11 armhf -tasksel 3.45 all -tasksel-data 3.45 all +tasksel 3.46 all +tasksel-data 3.46 all -udev 239-7 armhf +udev 239-10+rpi1 armhf -va-driver-all 2.2.0-1 armhf +va-driver-all 2.3.0-2 armhf -vnstat 1.18-1 armhf +vnstat 1.18-2 armhf -whiptail 0.52.20-6 armhf +whiptail 0.52.20-8 armhf -wireless-tools 30~pre9-12 armhf +wireless-tools 30~pre9-13 armhf -zsh 5.6-1 armhf -zsh-common 5.6-1 all +zsh 5.6.2-3 armhf +zsh-common 5.6.2-3 all
6 years ago
# system to handle. Available effects are: eaxreverb,reverb,autowah,chorus,
# compressor,distortion,echo,equalizer,flanger,modulator,dedicated,pshifter,
# fshifter
committing changes in /etc after apt run Package changes: +freepats 20060219-1 all +libadplug-2.2.1-0v5 2.2.1+dfsg3-0.4 armhf +libao-common 1.2.2+20180113-1 all +libao4 1.2.2+20180113-1 armhf +libaudiofile1 0.3.6-4 armhf +libavcodec58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-1+b2 armhf +libbinio1v5 1.4+dfsg1-6 armhf +libcdio-cdda2 10.2+0.94+2-4 armhf +libcdio-paranoia2 10.2+0.94+2-4 armhf +libcdio18 2.0.0-2 armhf +libcodec2-0.8.1 0.8.1-1 armhf +libfaad2 2.8.8-1 armhf +libfluidsynth1 1.1.11-1 armhf +libid3tag0 0.15.1b-13 armhf +libiso9660-11 2.0.0-2 armhf +libjack-jackd2-0 1.9.12~dfsg-2 armhf +libjansson4 2.11-1 armhf +libldb1 2:1.4.0+really1.3.6-1 armhf +libmad0 0.15.1b-9 armhf +libmikmod3 3.3.11.1-4 armhf +libmms0 0.6.4-3 armhf +libmodplug1 1:0.8.9.0-2 armhf +libmpcdec6 2:0.1~r495-1+b1 armhf +libmpdclient2 2.13-1 armhf +libnfs11 2.0.0-1~exp1 armhf +libopenal-data 1:1.18.2-3 all +libopenal1 1:1.18.2-3+b1 armhf +libroar2 1.0~beta11-10 armhf +libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libshout3 2.4.1-2 armhf +libsidplayfp4 1.8.8-1 armhf +libsmbclient 2:4.8.5+dfsg-1 armhf +libsndio7.0 1.5.0-2 armhf +libspeexdsp1 1.2~rc1.2-1 armhf -libssh-gcrypt-4 0.8.0~20170825.94fa1e38-1 armhf +libssh-gcrypt-4 0.8.1-1 armhf +libswresample3 7:4.0.2-1+b2 armhf +libtdb1 1.3.15-4 armhf +libtevent0 0.9.36-2 armhf +libupnp6 1:1.6.24-4 armhf -libwbclient0 2:4.8.2+dfsg-2 armhf +libwayland-client0 1.15.0-2 armhf +libwayland-cursor0 1.15.0-2 armhf +libwayland-egl1 1.15.0-2 armhf +libwbclient0 2:4.8.5+dfsg-1 armhf +libwildmidi-config 0.4.2-1 all +libwildmidi2 0.4.2-1 armhf +libxkbcommon0 0.8.2-1 armhf +libyajl2 2.1.0-2 armhf +libzzip-0-13 0.13.62-3.1 armhf +mpc 0.30-1 armhf +mpd 0.20.21-1 armhf +python-talloc 2.1.14-1 armhf +samba-libs 2:4.8.5+dfsg-1 armhf
6 years ago
#excludefx =
## default-reverb: (global)
# A reverb preset that applies by default to all sources on send 0
# (applications that set their own slots on send 0 will override this).
# Available presets are: None, Generic, PaddedCell, Room, Bathroom,
# Livingroom, Stoneroom, Auditorium, ConcertHall, Cave, Arena, Hangar,
# CarpetedHallway, Hallway, StoneCorridor, Alley, Forest, City, Moutains,
# Quarry, Plain, ParkingLot, SewerPipe, Underwater, Drugged, Dizzy, Psychotic.
#default-reverb =
## trap-alc-error: (global)
# Generates a SIGTRAP signal when an ALC device error is generated, on systems
# that support it. This helps when debugging, while trying to find the cause
# of a device error. On Windows, a breakpoint exception is generated.
#trap-alc-error = false
## trap-al-error: (global)
# Generates a SIGTRAP signal when an AL context error is generated, on systems
# that support it. This helps when debugging, while trying to find the cause
# of a context error. On Windows, a breakpoint exception is generated.
#trap-al-error = false
##
## Ambisonic decoder stuff
##
[decoder]
## hq-mode:
# Enables a high-quality ambisonic decoder. This mode is capable of frequency-
# dependent processing, creating a better reproduction of 3D sound rendering
# over surround sound speakers. Enabling this also requires specifying decoder
# configuration files for the appropriate speaker configuration you intend to
# use (see the quad, surround51, etc options below). Currently, up to third-
# order decoding is supported.
hq-mode = false
## distance-comp:
# Enables compensation for the speakers' relative distances to the listener.
# This applies the necessary delays and attenuation to make the speakers
# behave as though they are all equidistant, which is important for proper
# playback of 3D sound rendering. Requires the proper distances to be
# specified in the decoder configuration file.
distance-comp = true
## nfc:
# Enables near-field control filters. This simulates and compensates for low-
# frequency effects caused by the curvature of nearby sound-waves, which
# creates a more realistic perception of sound distance. Note that the effect
# may be stronger or weaker than intended if the application doesn't use or
# specify an appropriate unit scale, or if incorrect speaker distances are set
# in the decoder configuration file. Requires hq-mode to be enabled.
nfc = true
## nfc-ref-delay
# Specifies the reference delay value for ambisonic output. When channels is
# set to one of the ambi* formats, this option enables NFC-HOA output with the
# specified Reference Delay parameter. The specified value can then be shared
# with an appropriate NFC-HOA decoder to reproduce correct near-field effects.
# Keep in mind that despite being designed for higher-order ambisonics, this
# applies to first-order output all the same. When left unset, normal output
# is created with no near-field simulation.
nfc-ref-delay =
## quad:
committing changes in /etc after apt run Package changes: -adduser 3.117 all -adwaita-icon-theme 3.28.0-1 all +adduser 3.118 all +adwaita-icon-theme 3.30.0-1 all -apt 1.6.4+b2 armhf +apt 1.7.0 armhf -apt-utils 1.6.4+b2 armhf -aptitude 0.8.10-9 armhf -aptitude-common 0.8.10-9 all -at-spi2-core 2.28.0-3 armhf -avahi-daemon 0.7-4 armhf +apt-utils 1.7.0 armhf +aptitude 0.8.11-3 armhf +aptitude-common 0.8.11-3 all +at-spi2-core 2.30.0-2 armhf +avahi-daemon 0.7-4+b1 armhf -bind9 1:9.11.4+dfsg-4 armhf -bind9-host 1:9.11.4+dfsg-4 armhf -bind9utils 1:9.11.4+dfsg-4 armhf -binutils 2.31.1-5+rpi1 armhf -binutils-arm-linux-gnueabihf 2.31.1-5+rpi1 armhf -binutils-common 2.31.1-5+rpi1 armhf +bind9 1:9.11.4.P2+dfsg-3 armhf +bind9-host 1:9.11.4.P2+dfsg-3 armhf +bind9utils 1:9.11.4.P2+dfsg-3 armhf +binutils 2.31.1-6+rpi1 armhf +binutils-arm-linux-gnueabihf 2.31.1-6+rpi1 armhf +binutils-common 2.31.1-6+rpi1 armhf -bluez 5.50-1 armhf +bluez 5.50-1+b2 armhf -certbot 0.26.1-1 all +certbot 0.27.0-1 all -cmake 3.12.1-1 armhf -cmake-data 3.12.1-1 all +cmake 3.12.3-2 armhf +cmake-data 3.12.3-2 all -console-setup 1.185 all -console-setup-linux 1.185 all -coreutils 8.28-1 armhf +console-setup 1.186 all +console-setup-linux 1.186 all +coreutils 8.30-1 armhf -cpp-6 6.4.0-20+rpi1 armhf +cpp-6 6.4.0-22+rpi1 armhf -cpp-8 8.2.0-4+rpi1 armhf +cpp-8 8.2.0-7+rpi1 armhf -dash 0.5.8-2.10 armhf +dash 0.5.10.2-1 armhf -dconf-gsettings-backend 0.28.0-2 armhf -dconf-service 0.28.0-2 armhf +dconf-gsettings-backend 0.30.0-1 armhf +dconf-service 0.30.0-1 armhf -device-tree-compiler 1.4.6-1 armhf -dh-python 3.20180723 all +device-tree-compiler 1.4.7-3 armhf +dh-python 3.20180927 all -dirmngr 2.2.10-1+rpi1 armhf +dirmngr 2.2.10-3+rpi1 armhf -dmidecode 3.1-2 armhf +dmidecode 3.2-1 armhf -dnsutils 1:9.11.4+dfsg-4 armhf +dnsutils 1:9.11.4.P2+dfsg-3 armhf -dpkg 1.19.0.5 armhf -dpkg-dev 1.19.0.5 all +dpkg 1.19.2 armhf +dpkg-dev 1.19.2 all -exim4-base 4.91-7 armhf -exim4-config 4.91-7 all -exim4-daemon-light 4.91-7 armhf -eyed3 0.8.5-1 all -fail2ban 0.10.2-2 all +exim4-base 4.91-8 armhf +exim4-config 4.91-8 all +exim4-daemon-light 4.91-8 armhf +eyed3 0.8.7-1 all +fail2ban 0.10.2-2.1 all -fontconfig 2.13.0-5 armhf -fontconfig-config 2.13.0-5 all +fontconfig 2.13.1-1 armhf +fontconfig-config 2.13.1-1 all -g++-8 8.2.0-4+rpi1 armhf -gawk 1:4.1.4+dfsg-1+b1 armhf +g++-8 8.2.0-7+rpi1 armhf +gawk 1:4.2.1+dfsg-1 armhf -gcc-6 6.4.0-20+rpi1 armhf -gcc-6-base 6.4.0-20+rpi1 armhf +gcc-6 6.4.0-22+rpi1 armhf +gcc-6-base 6.4.0-22+rpi1 armhf -gcc-8 8.2.0-4+rpi1 armhf -gcc-8-base 8.2.0-4+rpi1 armhf +gcc-8 8.2.0-7+rpi1 armhf +gcc-8-base 8.2.0-7+rpi1 armhf -gettext-base 0.19.8.1-7 armhf -gir1.2-glib-2.0 1.56.1-1 armhf -git 1:2.18.0-1 armhf -git-man 1:2.18.0-1 all -glib-networking 2.57.92-1 armhf -glib-networking-common 2.57.92-1 all -glib-networking-services 2.57.92-1 armhf +gettext-base 0.19.8.1-8 armhf +gir1.2-glib-2.0 1.58.0-1 armhf +git 1:2.19.1-1 armhf +git-man 1:2.19.1-1 all +glib-networking 2.58.0-1 armhf +glib-networking-common 2.58.0-1 all +glib-networking-services 2.58.0-1 armhf -gnupg 2.2.10-1+rpi1 all -gnupg-agent 2.2.10-1+rpi1 all -gnupg-l10n 2.2.10-1+rpi1 all -gnupg-utils 2.2.10-1+rpi1 armhf -gpg 2.2.10-1+rpi1 armhf -gpg-agent 2.2.10-1+rpi1 armhf -gpg-wks-client 2.2.10-1+rpi1 armhf -gpg-wks-server 2.2.10-1+rpi1 armhf -gpgconf 2.2.10-1+rpi1 armhf -gpgsm 2.2.10-1+rpi1 armhf -gpgv 2.2.10-1+rpi1 armhf +gnupg 2.2.10-3+rpi1 all +gnupg-agent 2.2.10-3+rpi1 all +gnupg-l10n 2.2.10-3+rpi1 all +gnupg-utils 2.2.10-3+rpi1 armhf +gpg 2.2.10-3+rpi1 armhf +gpg-agent 2.2.10-3+rpi1 armhf +gpg-wks-client 2.2.10-3+rpi1 armhf +gpg-wks-server 2.2.10-3+rpi1 armhf +gpgconf 2.2.10-3+rpi1 armhf +gpgsm 2.2.10-3+rpi1 armhf +gpgv 2.2.10-3+rpi1 armhf -gsettings-desktop-schemas 3.28.0-1 all -gtk-update-icon-cache 3.22.30-2+rpi1 armhf -gzip 1.9-2 armhf +gsettings-desktop-schemas 3.28.1-1 all +gtk-update-icon-cache 3.24.1-2+rvt armhf +gzip 1.9-2.1 armhf -hostname 3.20 armhf +hostname 3.21 armhf -i2c-tools 4.0-2+b1 armhf +i2c-tools 4.0-2+b2 armhf -iso-codes 3.79-1 all +iso-codes 4.1-1 all -keyboard-configuration 1.185 all +keyboard-configuration 1.186 all +libaom0 1.0.0-3 armhf -libapt-inst2.0 1.6.4+b2 armhf -libapt-pkg5.0 1.6.4+b2 armhf +libapt-inst2.0 1.7.0 armhf +libapt-pkg5.0 1.7.0 armhf -libasan3 6.4.0-20+rpi1 armhf +libasan3 6.4.0-22+rpi1 armhf -libasan5 8.2.0-4+rpi1 armhf +libasan5 8.2.0-7+rpi1 armhf -libatk-bridge2.0-0 2.26.2-1 armhf -libatk1.0-0 2.28.1-1 armhf -libatk1.0-data 2.28.1-1 all -libatomic1 8.2.0-4+rpi1 armhf -libatspi2.0-0 2.28.0-3 armhf +libatk-bridge2.0-0 2.30.0-2 armhf +libatk1.0-0 2.30.0-1 armhf +libatk1.0-data 2.30.0-1 all +libatomic1 8.2.0-7+rpi1 armhf +libatspi2.0-0 2.30.0-2 armhf -libavahi-client3 0.7-4 armhf -libavahi-common-data 0.7-4 armhf -libavahi-common3 0.7-4 armhf -libavahi-core7 0.7-4 armhf +libavahi-client3 0.7-4+b1 armhf +libavahi-common-data 0.7-4+b1 armhf +libavahi-common3 0.7-4+b1 armhf +libavahi-core7 0.7-4+b1 armhf -libavcodec58 7:4.0.2-1+b2 armhf +libavcodec58 7:4.0.2-2+b2 armhf -libavformat58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-2+b2 armhf -libavutil56 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-2+b2 armhf -libbind9-160 1:9.11.4+dfsg-4 armhf +libbind9-160 1:9.11.4.P2+dfsg-3 armhf -libbinutils 2.31.1-5+rpi1 armhf -libblas3 3.8.0-1 armhf +libbinutils 2.31.1-6+rpi1 armhf +libblas3 3.8.0-1+b1 armhf -libbluetooth3 5.50-1 armhf +libbluetooth3 5.50-1+b2 armhf -libboost-filesystem1.62.0 1.62.0+dfsg-8 armhf +libboost-filesystem1.62.0 1.62.0+dfsg-10 armhf -libboost-iostreams1.62.0 1.62.0+dfsg-8 armhf -libboost-system1.62.0 1.62.0+dfsg-8 armhf +libboost-iostreams1.62.0 1.62.0+dfsg-10 armhf +libboost-system1.62.0 1.62.0+dfsg-10 armhf -libc-bin 2.27-5+rpi1 armhf -libc-dev-bin 2.27-5+rpi1 armhf -libc-l10n 2.27-5+rpi1 all -libc6 2.27-5+rpi1 armhf -libc6-dbg 2.27-5+rpi1 armhf -libc6-dev 2.27-5+rpi1 armhf +libc-bin 2.27-6+rpi1 armhf +libc-dev-bin 2.27-6+rpi1 armhf +libc-l10n 2.27-6+rpi1 all +libc6 2.27-6+rpi1 armhf +libc6-dbg 2.27-6+rpi1 armhf +libc6-dev 2.27-6+rpi1 armhf -libcc1-0 8.2.0-4+rpi1 armhf +libcc1-0 8.2.0-7+rpi1 armhf -libcups2 2.2.8-5 armhf +libcups2 2.2.8-5+b1 armhf -libdb5.3 5.3.28+dfsg1-0.1 armhf +libdb5.3 5.3.28+dfsg1-0.2 armhf -libdconf1 0.28.0-2 armhf -libdebconfclient0 0.244 armhf +libdconf1 0.30.0-1 armhf +libdebconfclient0 0.245 armhf -libdns-export1102 1:9.11.4+dfsg-4 armhf +libdns-export1102 1:9.11.4.P2+dfsg-3 armhf -libdns1102 1:9.11.4+dfsg-4 armhf -libdpkg-perl 1.19.0.5 all -libdrm-amdgpu1 2.4.93-1+rpi1 armhf -libdrm-common 2.4.93-1+rpi1 all -libdrm-etnaviv1 2.4.93-1+rpi1 armhf -libdrm-freedreno1 2.4.93-1+rpi1 armhf -libdrm-nouveau2 2.4.93-1+rpi1 armhf -libdrm-radeon1 2.4.93-1+rpi1 armhf -libdrm2 2.4.93-1+rpi1 armhf +libdns1102 1:9.11.4.P2+dfsg-3 armhf +libdpkg-perl 1.19.2 all +libdrm-amdgpu1 2.4.95-1+rpi1 armhf +libdrm-common 2.4.95-1+rpi1 all +libdrm-etnaviv1 2.4.95-1+rpi1 armhf +libdrm-freedreno1 2.4.95-1+rpi1 armhf +libdrm-nouveau2 2.4.95-1+rpi1 armhf +libdrm-radeon1 2.4.95-1+rpi1 armhf +libdrm2 2.4.95-1+rpi1 armhf -libepoxy0 1.4.3-1 armhf +libepoxy0 1.5.3-0.1 armhf -libfftw3-single3 3.3.8-1 armhf +libfftw3-single3 3.3.8-2 armhf -libfontconfig1 2.13.0-5 armhf +libfontconfig1 2.13.1-1 armhf -libgcc-6-dev 6.4.0-20+rpi1 armhf +libgcc-6-dev 6.4.0-22+rpi1 armhf -libgcc-8-dev 8.2.0-4+rpi1 armhf -libgcc1 1:8.2.0-4+rpi1 armhf +libgcc-8-dev 8.2.0-7+rpi1 armhf +libgcc1 1:8.2.0-7+rpi1 armhf -libgd3 2.2.5-4 armhf -libgdbm-compat4 1.14.1-6 armhf +libgd3 2.2.5-4.1 armhf +libgdbm-compat4 1.18-2 armhf -libgdk-pixbuf2.0-0 2.36.12-2 armhf -libgdk-pixbuf2.0-bin 2.36.12-2 armhf -libgdk-pixbuf2.0-common 2.36.12-2 all +libgdbm6 1.18-2 armhf +libgdk-pixbuf2.0-0 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-bin 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-common 2.38.0+dfsg-6+rpi1 all -libgirepository-1.0-1 1.56.1-1 armhf +libgfortran5 8.2.0-7+rpi1 armhf +libgirepository-1.0-1 1.58.0-1 armhf -libglib2.0-0 2.56.1-2 armhf -libglib2.0-data 2.56.1-2 all +libglib2.0-0 2.58.1-2 armhf +libglib2.0-data 2.58.1-2 all -libgomp1 8.2.0-4+rpi1 armhf -libgpg-error0 1.32-1 armhf +libgomp1 8.2.0-7+rpi1 armhf +libgpg-error-l10n 1.32-2 all +libgpg-error0 1.32-2 armhf -libgssapi-krb5-2 1.16-2 armhf -libgtk-3-0 3.22.30-2+rpi1 armhf -libgtk-3-bin 3.22.30-2+rpi1 armhf -libgtk-3-common 3.22.30-2+rpi1 all +libgssapi-krb5-2 1.16.1-1 armhf +libgtk-3-0 3.24.1-2+rvt armhf +libgtk-3-bin 3.24.1-2+rvt armhf +libgtk-3-common 3.24.1-2+rvt all -libharfbuzz0b 1.8.8-2+rpi1 armhf +libharfbuzz0b 1.9.0-1+rpi1 armhf -libi2c0 4.0-2+b1 armhf +libi2c0 4.0-2+b2 armhf -libirs-export160 1:9.11.4+dfsg-4 armhf -libirs160 1:9.11.4+dfsg-4 armhf +libirs-export160 1:9.11.4.P2+dfsg-3 armhf +libirs160 1:9.11.4.P2+dfsg-3 armhf -libisc-export169 1:9.11.4+dfsg-4 armhf -libisc169 1:9.11.4+dfsg-4 armhf -libisccc160 1:9.11.4+dfsg-4 armhf -libisccfg-export160 1:9.11.4+dfsg-4 armhf -libisccfg160 1:9.11.4+dfsg-4 armhf +libisc-export169 1:9.11.4.P2+dfsg-3 armhf +libisc169 1:9.11.4.P2+dfsg-3 armhf +libisccc160 1:9.11.4.P2+dfsg-3 armhf +libisccfg-export160 1:9.11.4.P2+dfsg-3 armhf +libisccfg160 1:9.11.4.P2+dfsg-3 armhf -libiw30 30~pre9-12 armhf +libiw30 30~pre9-13 armhf -libjs-sphinxdoc 1.7.8-1 all +libjs-sphinxdoc 1.7.9-1 all -libjson-glib-1.0-0 1.4.2-4 armhf -libjson-glib-1.0-common 1.4.2-4 all +libjson-glib-1.0-0 1.4.4-1 armhf +libjson-glib-1.0-common 1.4.4-1 all -libk5crypto3 1.16-2 armhf +libk5crypto3 1.16.1-1 armhf -libkrb5-3 1.16-2 armhf -libkrb5support0 1.16-2 armhf +libkrb5-3 1.16.1-1 armhf +libkrb5support0 1.16.1-1 armhf -liblcms2-2 2.9-2 armhf +liblcms2-2 2.9-3 armhf -libllvm6.0 1:6.0.1-6+rpi1 armhf +libllvm6.0 1:6.0.1-9+rpi1 armhf -liblwres160 1:9.11.4+dfsg-4 armhf +liblwres160 1:9.11.4.P2+dfsg-3 armhf -libnewt0.52 0.52.20-6 armhf +libnewt0.52 0.52.20-8 armhf -libnginx-mod-http-auth-pam 1.14.0-1 armhf -libnginx-mod-http-dav-ext 1.14.0-1 armhf -libnginx-mod-http-echo 1.14.0-1 armhf -libnginx-mod-http-geoip 1.14.0-1 armhf -libnginx-mod-http-headers-more-filter 1.14.0-1 armhf -libnginx-mod-http-image-filter 1.14.0-1 armhf -libnginx-mod-http-subs-filter 1.14.0-1 armhf -libnginx-mod-http-upstream-fair 1.14.0-1 armhf -libnginx-mod-http-xslt-filter 1.14.0-1 armhf -libnginx-mod-mail 1.14.0-1 armhf -libnginx-mod-stream 1.14.0-1 armhf +libnginx-mod-http-auth-pam 1.14.0-1+b1 armhf +libnginx-mod-http-dav-ext 1.14.0-1+b1 armhf +libnginx-mod-http-echo 1.14.0-1+b1 armhf +libnginx-mod-http-geoip 1.14.0-1+b1 armhf +libnginx-mod-http-headers-more-filter 1.14.0-1+b1 armhf +libnginx-mod-http-image-filter 1.14.0-1+b1 armhf +libnginx-mod-http-subs-filter 1.14.0-1+b1 armhf +libnginx-mod-http-upstream-fair 1.14.0-1+b1 armhf +libnginx-mod-http-xslt-filter 1.14.0-1+b1 armhf +libnginx-mod-mail 1.14.0-1+b1 armhf +libnginx-mod-stream 1.14.0-1+b1 armhf -libnspr4 2:4.19-3+rpi1 armhf +libnspr4 2:4.20-1 armhf -libnss-systemd 239-7 armhf -libnss3 2:3.38-1 armhf +libnss-systemd 239-10+rpi1 armhf +libnss3 2:3.39-1 armhf -libopenal-data 1:1.18.2-3 all -libopenal1 1:1.18.2-3+b1 armhf +libopenal-data 1:1.19.1-1 all +libopenal1 1:1.19.1-1 armhf -libopenmpt0 0.3.11-1 armhf +libopenmpt0 0.3.12-1 armhf -libpam-systemd 239-7 armhf +libpam-systemd 239-10+rpi1 armhf -libpango-1.0-0 1.42.4-1 armhf -libpangocairo-1.0-0 1.42.4-1 armhf -libpangoft2-1.0-0 1.42.4-1 armhf -libparted2 3.2-21 armhf +libpango-1.0-0 1.42.4-3 armhf +libpangocairo-1.0-0 1.42.4-3 armhf +libpangoft2-1.0-0 1.42.4-3 armhf +libparted2 3.2-22 armhf -libpcsclite1 1.8.23-3 armhf -libperl5.26 5.26.2-7 armhf +libpcsclite1 1.8.24-1 armhf +libperl5.26 5.26.2-7+b1 armhf -libproxy1v5 0.4.15-1 armhf -libpsl5 0.20.2-1 armhf -libpulse0 12.0-1+rpi1 armhf +libproxy1v5 0.4.15-3 armhf +libpsl5 0.20.2-2 armhf +libpulse0 12.2-2+b2 armhf -libpython3-dev 3.6.5-3 armhf -libpython3-stdlib 3.6.5-3 armhf +libpython3-dev 3.6.6-1 armhf +libpython3-stdlib 3.6.6-1 armhf -libraspberrypi-bin 1.20180817-1 armhf -libraspberrypi-dev 1.20180817-1 armhf -libraspberrypi-doc 1.20180817-1 armhf -libraspberrypi0 1.20180817-1 armhf +libraspberrypi-bin 1.20180924-1 armhf +libraspberrypi-dev 1.20180924-1 armhf +libraspberrypi-doc 1.20180924-1 armhf +libraspberrypi0 1.20180924-1 armhf -libroar2 1.0~beta11-10 armhf +libroar2 1.0~beta11-11 armhf -libruby2.5 2.5.1-5 armhf +libruby2.5 2.5.1-5+b1 armhf -libsasl2-2 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules-db 2.1.27~101-g0780600+dfsg-3.1 armhf +libsasl2-2 2.1.27~rc8-1 armhf +libsasl2-modules 2.1.27~rc8-1 armhf +libsasl2-modules-db 2.1.27~rc8-1 armhf -libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libsdl2-2.0-0 2.0.8+dfsg1-4 armhf -libsensors4 1:3.4.0-4+b1 armhf +libsensors4 1:3.4.0-4+b2 armhf -libshine3 3.1.1-2 armhf +libshine3 3.1.1-2+b1 armhf -libsigc++-2.0-0v5 2.10.0-2 armhf +libsigc++-2.0-0v5 2.10.0-2.1 armhf -libsoup-gnome2.4-1 2.62.2-2 armhf -libsoup2.4-1 2.62.2-2 armhf +libsoup-gnome2.4-1 2.64.1-3 armhf +libsoup2.4-1 2.64.1-3 armhf -libsqlite3-0 3.24.0-1 armhf +libsqlite3-0 3.25.2-1 armhf -libstdc++-8-dev 8.2.0-4+rpi1 armhf -libstdc++6 8.2.0-4+rpi1 armhf +libstdc++-8-dev 8.2.0-7+rpi1 armhf +libstdc++6 8.2.0-7+rpi1 armhf -libswresample3 7:4.0.2-1+b2 armhf +libswresample3 7:4.0.2-2+b2 armhf -libsystemd0 239-7 armhf +libsystemd0 239-10+rpi1 armhf -libtdb1 1.3.15-4 armhf -libtevent0 0.9.36-2 armhf +libtdb1 1.3.16-1 armhf +libtevent0 0.9.37-1 armhf -libtirpc1 0.2.5-1.2 armhf +libtirpc1 0.2.5-1.3 armhf -libubsan1 8.2.0-4+rpi1 armhf +libubsan1 8.2.0-7+rpi1 armhf -libudev1 239-7 armhf +libudev1 239-10+rpi1 armhf -libuv1 1.22.0-3 armhf +libuv1 1.23.1-1 armhf -libva-drm2 2.2.0-1 armhf -libva-x11-2 2.2.0-1 armhf -libva2 2.2.0-1 armhf +libva-drm2 2.3.0-2 armhf +libva-x11-2 2.3.0-2 armhf +libva2 2.3.0-2 armhf -libwayland-client0 1.15.0-2 armhf -libwayland-cursor0 1.15.0-2 armhf -libwayland-egl1 1.15.0-2 armhf +libwayland-client0 1.16.0-1 armhf +libwayland-cursor0 1.16.0-1 armhf +libwayland-egl1 1.16.0-1 armhf -libwww-perl 6.35-2 all +libwww-perl 6.36-1 all -libx11-6 2:1.6.6-1 armhf -libx11-data 2:1.6.6-1 all +libx11-6 2:1.6.7-1 armhf +libx11-data 2:1.6.7-1 all -libx11-xcb1 2:1.6.6-1 armhf +libx11-xcb1 2:1.6.7-1 armhf +libx264-155 2:0.155.2917+git0a84d98-2+rpi1 armhf -libxapian30 1.4.7-2 armhf +libx265-165 2.9-3 armhf +libxapian30 1.4.7-4 armhf -libxcb-dri2-0 1.13-3 armhf -libxcb-dri3-0 1.13-3 armhf -libxcb-glx0 1.13-3 armhf +libxcb-dri2-0 1.13.1-1 armhf +libxcb-dri3-0 1.13.1-1 armhf +libxcb-glx0 1.13.1-1 armhf -libxcb-present0 1.13-3 armhf -libxcb-render0 1.13-3 armhf -libxcb-shape0 1.13-3 armhf -libxcb-shm0 1.13-3 armhf -libxcb-sync1 1.13-3 armhf +libxcb-present0 1.13.1-1 armhf +libxcb-render0 1.13.1-1 armhf +libxcb-shape0 1.13.1-1 armhf +libxcb-shm0 1.13.1-1 armhf +libxcb-sync1 1.13.1-1 armhf -libxcb-xfixes0 1.13-3 armhf -libxcb1 1.13-3 armhf +libxcb-xfixes0 1.13.1-1 armhf +libxcb1 1.13.1-1 armhf -libxss1 1:1.2.2-1 armhf +libxss1 1:1.2.3-1 armhf -libyajl2 2.1.0-2 armhf +libyajl2 2.1.0-3 armhf -libzvbi-common 0.2.35-13 all -libzvbi0 0.2.35-13 armhf +libzvbi-common 0.2.35-14 all +libzvbi0 0.2.35-14 armhf -locales 2.27-5+rpi1 all +locales 2.27-6+rpi1 all -man-db 2.8.4-2 armhf +man-db 2.8.4-2+b1 armhf -multiarch-support 2.27-5+rpi1 armhf +multiarch-support 2.27-6+rpi1 armhf -nano 2.9.8-1 armhf +nano 3.1-1 armhf -net-tools 1.60+git20161116.90da8a0-3 armhf +net-tools 1.60+git20180626.aebd88e-1 armhf -nginx-full 1.14.0-1 armhf +nginx-full 1.14.0-1+b1 armhf -parted 3.2-21 armhf +parted 3.2-22 armhf -perl 5.26.2-7 armhf -perl-base 5.26.2-7 armhf +perl 5.26.2-7+b1 armhf +perl-base 5.26.2-7+b1 armhf -psmisc 23.1-1 armhf +psmisc 23.2-1 armhf -python-apt-common 1.6.2 all +python-apt-common 1.7.0 all -python-cffi-backend 1.11.5-1 armhf +python-cairo 1.16.2-1 armhf +python-cffi-backend 1.11.5-3 armhf -python-gi 3.28.3-1 armhf +python-gi 3.30.1-1 armhf -python-keyring 13.1.0-1 all -python-keyrings.alt 3.0-1 all -python-lxml 4.2.4-1 armhf +python-keyring 15.1.0-1 all +python-keyrings.alt 3.1-1 all +python-lxml 4.2.5-1 armhf -python-newt 0.52.20-6 armhf +python-newt 0.52.20-8 armhf -python-pyicu 2.0.3-1+b1 armhf +python-pyicu 2.1-1 armhf -python3 3.6.5-3 armhf -python3-acme 0.26.0-1 all -python3-apt 1.6.2 armhf +python3 3.6.6-1 armhf +python3-acme 0.27.0-1 all +python3-apt 1.7.0 armhf -python3-certbot 0.26.1-1 all +python3-cairo 1.16.2-1 armhf +python3-certbot 0.27.0-1 all -python3-cffi-backend 1.11.5-1 armhf +python3-cffi-backend 1.11.5-3 armhf -python3-dev 3.6.5-3 armhf +python3-dev 3.6.6-1 armhf -python3-eyed3 0.8.5-1 all +python3-eyed3 0.8.7-1 all -python3-gi 3.28.3-1 armhf +python3-gi 3.30.1-1 armhf -python3-keyring 13.1.0-1 all -python3-keyrings.alt 3.0-1 all +python3-keyring 15.1.0-1 all +python3-keyrings.alt 3.1-1 all -python3-minimal 3.6.5-3 armhf -python3-mock 2.0.0-3 all +python3-minimal 3.6.6-1 armhf +python3-mock 2.0.0-4 all -raspberrypi-bootloader 1.20180817-1 armhf -raspberrypi-kernel 1.20180817-1 armhf +raspberrypi-bootloader 1.20180924-1 armhf +raspberrypi-kernel 1.20180924-1 armhf -rsyslog 8.37.0-2 armhf -ruby 1:2.5.1 armhf +rsyslog 8.38.0-1+b1 armhf +ruby 1:2.5.1+b1 armhf -ruby2.5 2.5.1-5 armhf +ruby2.5 2.5.1-5+b1 armhf -sed 4.5-1 armhf +sed 4.5-2 armhf -shared-mime-info 1.9-2 armhf +shared-mime-info 1.10-1 armhf -systemd 239-7 armhf -systemd-sysv 239-7 armhf -sysvinit-utils 2.88dsf-59.10 armhf +systemd 239-10+rpi1 armhf +systemd-sysv 239-10+rpi1 armhf +sysvinit-utils 2.88dsf-59.11 armhf -tasksel 3.45 all -tasksel-data 3.45 all +tasksel 3.46 all +tasksel-data 3.46 all -udev 239-7 armhf +udev 239-10+rpi1 armhf -va-driver-all 2.2.0-1 armhf +va-driver-all 2.3.0-2 armhf -vnstat 1.18-1 armhf +vnstat 1.18-2 armhf -whiptail 0.52.20-6 armhf +whiptail 0.52.20-8 armhf -wireless-tools 30~pre9-12 armhf +wireless-tools 30~pre9-13 armhf -zsh 5.6-1 armhf -zsh-common 5.6-1 all +zsh 5.6.2-3 armhf +zsh-common 5.6.2-3 all
6 years ago
# Decoder configuration file for Quadraphonic channel output. See
committing changes in /etc after apt run Package changes: +freepats 20060219-1 all +libadplug-2.2.1-0v5 2.2.1+dfsg3-0.4 armhf +libao-common 1.2.2+20180113-1 all +libao4 1.2.2+20180113-1 armhf +libaudiofile1 0.3.6-4 armhf +libavcodec58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-1+b2 armhf +libbinio1v5 1.4+dfsg1-6 armhf +libcdio-cdda2 10.2+0.94+2-4 armhf +libcdio-paranoia2 10.2+0.94+2-4 armhf +libcdio18 2.0.0-2 armhf +libcodec2-0.8.1 0.8.1-1 armhf +libfaad2 2.8.8-1 armhf +libfluidsynth1 1.1.11-1 armhf +libid3tag0 0.15.1b-13 armhf +libiso9660-11 2.0.0-2 armhf +libjack-jackd2-0 1.9.12~dfsg-2 armhf +libjansson4 2.11-1 armhf +libldb1 2:1.4.0+really1.3.6-1 armhf +libmad0 0.15.1b-9 armhf +libmikmod3 3.3.11.1-4 armhf +libmms0 0.6.4-3 armhf +libmodplug1 1:0.8.9.0-2 armhf +libmpcdec6 2:0.1~r495-1+b1 armhf +libmpdclient2 2.13-1 armhf +libnfs11 2.0.0-1~exp1 armhf +libopenal-data 1:1.18.2-3 all +libopenal1 1:1.18.2-3+b1 armhf +libroar2 1.0~beta11-10 armhf +libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libshout3 2.4.1-2 armhf +libsidplayfp4 1.8.8-1 armhf +libsmbclient 2:4.8.5+dfsg-1 armhf +libsndio7.0 1.5.0-2 armhf +libspeexdsp1 1.2~rc1.2-1 armhf -libssh-gcrypt-4 0.8.0~20170825.94fa1e38-1 armhf +libssh-gcrypt-4 0.8.1-1 armhf +libswresample3 7:4.0.2-1+b2 armhf +libtdb1 1.3.15-4 armhf +libtevent0 0.9.36-2 armhf +libupnp6 1:1.6.24-4 armhf -libwbclient0 2:4.8.2+dfsg-2 armhf +libwayland-client0 1.15.0-2 armhf +libwayland-cursor0 1.15.0-2 armhf +libwayland-egl1 1.15.0-2 armhf +libwbclient0 2:4.8.5+dfsg-1 armhf +libwildmidi-config 0.4.2-1 all +libwildmidi2 0.4.2-1 armhf +libxkbcommon0 0.8.2-1 armhf +libyajl2 2.1.0-2 armhf +libzzip-0-13 0.13.62-3.1 armhf +mpc 0.30-1 armhf +mpd 0.20.21-1 armhf +python-talloc 2.1.14-1 armhf +samba-libs 2:4.8.5+dfsg-1 armhf
6 years ago
# docs/ambdec.txt for a description of the file format.
quad =
## surround51:
# Decoder configuration file for 5.1 Surround (Side and Rear) channel output.
# See docs/ambdec.txt for a description of the file format.
surround51 =
## surround61:
# Decoder configuration file for 6.1 Surround channel output. See
# docs/ambdec.txt for a description of the file format.
surround61 =
## surround71:
# Decoder configuration file for 7.1 Surround channel output. See
# docs/ambdec.txt for a description of the file format. Note: This can be used
# to enable 3D7.1 with the appropriate configuration and speaker placement,
# see docs/3D7.1.txt.
surround71 =
##
## Reverb effect stuff (includes EAX reverb)
##
[reverb]
## boost: (global)
# A global amplification for reverb output, expressed in decibels. The value
# is logarithmic, so +6 will be a scale of (approximately) 2x, +12 will be a
# scale of 4x, etc. Similarly, -6 will be about half, and -12 about 1/4th. A
# value of 0 means no change.
#boost = 0
##
## PulseAudio backend stuff
##
[pulse]
## spawn-server: (global)
# Attempts to autospawn a PulseAudio server whenever needed (initializing the
# backend, enumerating devices, etc). Setting autospawn to false in Pulse's
# client.conf will still prevent autospawning even if this is set to true.
#spawn-server = true
## allow-moves: (global)
# Allows PulseAudio to move active streams to different devices. Note that the
# device specifier (seen by applications) will not be updated when this
# occurs, and neither will the AL device configuration (sample rate, format,
# etc).
#allow-moves = false
## fix-rate:
# Specifies whether to match the playback stream's sample rate to the device's
# sample rate. Enabling this forces OpenAL Soft to mix sources and effects
# directly to the actual output rate, avoiding a second resample pass by the
# PulseAudio server.
#fix-rate = false
##
## ALSA backend stuff
##
[alsa]
## device: (global)
# Sets the device name for the default playback device.
#device = default
## device-prefix: (global)
# Sets the prefix used by the discovered (non-default) playback devices. This
# will be appended with "CARD=c,DEV=d", where c is the card id and d is the
# device index for the requested device name.
#device-prefix = plughw:
## device-prefix-*: (global)
# Card- and device-specific prefixes may be used to override the device-prefix
# option. The option may specify the card id (eg, device-prefix-NVidia), or
# the card id and device index (eg, device-prefix-NVidia-0). The card id is
# case-sensitive.
#device-prefix- =
## capture: (global)
# Sets the device name for the default capture device.
#capture = default
## capture-prefix: (global)
# Sets the prefix used by the discovered (non-default) capture devices. This
# will be appended with "CARD=c,DEV=d", where c is the card id and d is the
# device number for the requested device name.
#capture-prefix = plughw:
## capture-prefix-*: (global)
# Card- and device-specific prefixes may be used to override the
# capture-prefix option. The option may specify the card id (eg,
# capture-prefix-NVidia), or the card id and device index (eg,
# capture-prefix-NVidia-0). The card id is case-sensitive.
#capture-prefix- =
## mmap:
# Sets whether to try using mmap mode (helps reduce latencies and CPU
# consumption). If mmap isn't available, it will automatically fall back to
# non-mmap mode. True, yes, on, and non-0 values will attempt to use mmap. 0
# and anything else will force mmap off.
#mmap = true
## allow-resampler:
# Specifies whether to allow ALSA's built-in resampler. Enabling this will
# allow the playback device to be set to a different sample rate than the
# actual output, causing ALSA to apply its own resampling pass after OpenAL
# Soft resamples and mixes the sources and effects for output.
#allow-resampler = false
##
## OSS backend stuff
##
[oss]
## device: (global)
# Sets the device name for OSS output.
#device = /dev/dsp
## capture: (global)
# Sets the device name for OSS capture.
#capture = /dev/dsp
##
## Solaris backend stuff
##
[solaris]
## device: (global)
# Sets the device name for Solaris output.
#device = /dev/audio
##
## QSA backend stuff
##
[qsa]
##
## JACK backend stuff
##
[jack]
## spawn-server: (global)
# Attempts to autospawn a JACK server whenever needed (initializing the
# backend, opening devices, etc).
#spawn-server = false
## buffer-size:
# Sets the update buffer size, in samples, that the backend will keep buffered
# to handle the server's real-time processing requests. This value must be a
# power of 2, or else it will be rounded up to the next power of 2. If it is
# less than JACK's buffer update size, it will be clamped. This option may
# be useful in case the server's update size is too small and doesn't give the
# mixer time to keep enough audio available for the processing requests.
#buffer-size = 0
##
committing changes in /etc after apt run Package changes: -adduser 3.117 all -adwaita-icon-theme 3.28.0-1 all +adduser 3.118 all +adwaita-icon-theme 3.30.0-1 all -apt 1.6.4+b2 armhf +apt 1.7.0 armhf -apt-utils 1.6.4+b2 armhf -aptitude 0.8.10-9 armhf -aptitude-common 0.8.10-9 all -at-spi2-core 2.28.0-3 armhf -avahi-daemon 0.7-4 armhf +apt-utils 1.7.0 armhf +aptitude 0.8.11-3 armhf +aptitude-common 0.8.11-3 all +at-spi2-core 2.30.0-2 armhf +avahi-daemon 0.7-4+b1 armhf -bind9 1:9.11.4+dfsg-4 armhf -bind9-host 1:9.11.4+dfsg-4 armhf -bind9utils 1:9.11.4+dfsg-4 armhf -binutils 2.31.1-5+rpi1 armhf -binutils-arm-linux-gnueabihf 2.31.1-5+rpi1 armhf -binutils-common 2.31.1-5+rpi1 armhf +bind9 1:9.11.4.P2+dfsg-3 armhf +bind9-host 1:9.11.4.P2+dfsg-3 armhf +bind9utils 1:9.11.4.P2+dfsg-3 armhf +binutils 2.31.1-6+rpi1 armhf +binutils-arm-linux-gnueabihf 2.31.1-6+rpi1 armhf +binutils-common 2.31.1-6+rpi1 armhf -bluez 5.50-1 armhf +bluez 5.50-1+b2 armhf -certbot 0.26.1-1 all +certbot 0.27.0-1 all -cmake 3.12.1-1 armhf -cmake-data 3.12.1-1 all +cmake 3.12.3-2 armhf +cmake-data 3.12.3-2 all -console-setup 1.185 all -console-setup-linux 1.185 all -coreutils 8.28-1 armhf +console-setup 1.186 all +console-setup-linux 1.186 all +coreutils 8.30-1 armhf -cpp-6 6.4.0-20+rpi1 armhf +cpp-6 6.4.0-22+rpi1 armhf -cpp-8 8.2.0-4+rpi1 armhf +cpp-8 8.2.0-7+rpi1 armhf -dash 0.5.8-2.10 armhf +dash 0.5.10.2-1 armhf -dconf-gsettings-backend 0.28.0-2 armhf -dconf-service 0.28.0-2 armhf +dconf-gsettings-backend 0.30.0-1 armhf +dconf-service 0.30.0-1 armhf -device-tree-compiler 1.4.6-1 armhf -dh-python 3.20180723 all +device-tree-compiler 1.4.7-3 armhf +dh-python 3.20180927 all -dirmngr 2.2.10-1+rpi1 armhf +dirmngr 2.2.10-3+rpi1 armhf -dmidecode 3.1-2 armhf +dmidecode 3.2-1 armhf -dnsutils 1:9.11.4+dfsg-4 armhf +dnsutils 1:9.11.4.P2+dfsg-3 armhf -dpkg 1.19.0.5 armhf -dpkg-dev 1.19.0.5 all +dpkg 1.19.2 armhf +dpkg-dev 1.19.2 all -exim4-base 4.91-7 armhf -exim4-config 4.91-7 all -exim4-daemon-light 4.91-7 armhf -eyed3 0.8.5-1 all -fail2ban 0.10.2-2 all +exim4-base 4.91-8 armhf +exim4-config 4.91-8 all +exim4-daemon-light 4.91-8 armhf +eyed3 0.8.7-1 all +fail2ban 0.10.2-2.1 all -fontconfig 2.13.0-5 armhf -fontconfig-config 2.13.0-5 all +fontconfig 2.13.1-1 armhf +fontconfig-config 2.13.1-1 all -g++-8 8.2.0-4+rpi1 armhf -gawk 1:4.1.4+dfsg-1+b1 armhf +g++-8 8.2.0-7+rpi1 armhf +gawk 1:4.2.1+dfsg-1 armhf -gcc-6 6.4.0-20+rpi1 armhf -gcc-6-base 6.4.0-20+rpi1 armhf +gcc-6 6.4.0-22+rpi1 armhf +gcc-6-base 6.4.0-22+rpi1 armhf -gcc-8 8.2.0-4+rpi1 armhf -gcc-8-base 8.2.0-4+rpi1 armhf +gcc-8 8.2.0-7+rpi1 armhf +gcc-8-base 8.2.0-7+rpi1 armhf -gettext-base 0.19.8.1-7 armhf -gir1.2-glib-2.0 1.56.1-1 armhf -git 1:2.18.0-1 armhf -git-man 1:2.18.0-1 all -glib-networking 2.57.92-1 armhf -glib-networking-common 2.57.92-1 all -glib-networking-services 2.57.92-1 armhf +gettext-base 0.19.8.1-8 armhf +gir1.2-glib-2.0 1.58.0-1 armhf +git 1:2.19.1-1 armhf +git-man 1:2.19.1-1 all +glib-networking 2.58.0-1 armhf +glib-networking-common 2.58.0-1 all +glib-networking-services 2.58.0-1 armhf -gnupg 2.2.10-1+rpi1 all -gnupg-agent 2.2.10-1+rpi1 all -gnupg-l10n 2.2.10-1+rpi1 all -gnupg-utils 2.2.10-1+rpi1 armhf -gpg 2.2.10-1+rpi1 armhf -gpg-agent 2.2.10-1+rpi1 armhf -gpg-wks-client 2.2.10-1+rpi1 armhf -gpg-wks-server 2.2.10-1+rpi1 armhf -gpgconf 2.2.10-1+rpi1 armhf -gpgsm 2.2.10-1+rpi1 armhf -gpgv 2.2.10-1+rpi1 armhf +gnupg 2.2.10-3+rpi1 all +gnupg-agent 2.2.10-3+rpi1 all +gnupg-l10n 2.2.10-3+rpi1 all +gnupg-utils 2.2.10-3+rpi1 armhf +gpg 2.2.10-3+rpi1 armhf +gpg-agent 2.2.10-3+rpi1 armhf +gpg-wks-client 2.2.10-3+rpi1 armhf +gpg-wks-server 2.2.10-3+rpi1 armhf +gpgconf 2.2.10-3+rpi1 armhf +gpgsm 2.2.10-3+rpi1 armhf +gpgv 2.2.10-3+rpi1 armhf -gsettings-desktop-schemas 3.28.0-1 all -gtk-update-icon-cache 3.22.30-2+rpi1 armhf -gzip 1.9-2 armhf +gsettings-desktop-schemas 3.28.1-1 all +gtk-update-icon-cache 3.24.1-2+rvt armhf +gzip 1.9-2.1 armhf -hostname 3.20 armhf +hostname 3.21 armhf -i2c-tools 4.0-2+b1 armhf +i2c-tools 4.0-2+b2 armhf -iso-codes 3.79-1 all +iso-codes 4.1-1 all -keyboard-configuration 1.185 all +keyboard-configuration 1.186 all +libaom0 1.0.0-3 armhf -libapt-inst2.0 1.6.4+b2 armhf -libapt-pkg5.0 1.6.4+b2 armhf +libapt-inst2.0 1.7.0 armhf +libapt-pkg5.0 1.7.0 armhf -libasan3 6.4.0-20+rpi1 armhf +libasan3 6.4.0-22+rpi1 armhf -libasan5 8.2.0-4+rpi1 armhf +libasan5 8.2.0-7+rpi1 armhf -libatk-bridge2.0-0 2.26.2-1 armhf -libatk1.0-0 2.28.1-1 armhf -libatk1.0-data 2.28.1-1 all -libatomic1 8.2.0-4+rpi1 armhf -libatspi2.0-0 2.28.0-3 armhf +libatk-bridge2.0-0 2.30.0-2 armhf +libatk1.0-0 2.30.0-1 armhf +libatk1.0-data 2.30.0-1 all +libatomic1 8.2.0-7+rpi1 armhf +libatspi2.0-0 2.30.0-2 armhf -libavahi-client3 0.7-4 armhf -libavahi-common-data 0.7-4 armhf -libavahi-common3 0.7-4 armhf -libavahi-core7 0.7-4 armhf +libavahi-client3 0.7-4+b1 armhf +libavahi-common-data 0.7-4+b1 armhf +libavahi-common3 0.7-4+b1 armhf +libavahi-core7 0.7-4+b1 armhf -libavcodec58 7:4.0.2-1+b2 armhf +libavcodec58 7:4.0.2-2+b2 armhf -libavformat58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-2+b2 armhf -libavutil56 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-2+b2 armhf -libbind9-160 1:9.11.4+dfsg-4 armhf +libbind9-160 1:9.11.4.P2+dfsg-3 armhf -libbinutils 2.31.1-5+rpi1 armhf -libblas3 3.8.0-1 armhf +libbinutils 2.31.1-6+rpi1 armhf +libblas3 3.8.0-1+b1 armhf -libbluetooth3 5.50-1 armhf +libbluetooth3 5.50-1+b2 armhf -libboost-filesystem1.62.0 1.62.0+dfsg-8 armhf +libboost-filesystem1.62.0 1.62.0+dfsg-10 armhf -libboost-iostreams1.62.0 1.62.0+dfsg-8 armhf -libboost-system1.62.0 1.62.0+dfsg-8 armhf +libboost-iostreams1.62.0 1.62.0+dfsg-10 armhf +libboost-system1.62.0 1.62.0+dfsg-10 armhf -libc-bin 2.27-5+rpi1 armhf -libc-dev-bin 2.27-5+rpi1 armhf -libc-l10n 2.27-5+rpi1 all -libc6 2.27-5+rpi1 armhf -libc6-dbg 2.27-5+rpi1 armhf -libc6-dev 2.27-5+rpi1 armhf +libc-bin 2.27-6+rpi1 armhf +libc-dev-bin 2.27-6+rpi1 armhf +libc-l10n 2.27-6+rpi1 all +libc6 2.27-6+rpi1 armhf +libc6-dbg 2.27-6+rpi1 armhf +libc6-dev 2.27-6+rpi1 armhf -libcc1-0 8.2.0-4+rpi1 armhf +libcc1-0 8.2.0-7+rpi1 armhf -libcups2 2.2.8-5 armhf +libcups2 2.2.8-5+b1 armhf -libdb5.3 5.3.28+dfsg1-0.1 armhf +libdb5.3 5.3.28+dfsg1-0.2 armhf -libdconf1 0.28.0-2 armhf -libdebconfclient0 0.244 armhf +libdconf1 0.30.0-1 armhf +libdebconfclient0 0.245 armhf -libdns-export1102 1:9.11.4+dfsg-4 armhf +libdns-export1102 1:9.11.4.P2+dfsg-3 armhf -libdns1102 1:9.11.4+dfsg-4 armhf -libdpkg-perl 1.19.0.5 all -libdrm-amdgpu1 2.4.93-1+rpi1 armhf -libdrm-common 2.4.93-1+rpi1 all -libdrm-etnaviv1 2.4.93-1+rpi1 armhf -libdrm-freedreno1 2.4.93-1+rpi1 armhf -libdrm-nouveau2 2.4.93-1+rpi1 armhf -libdrm-radeon1 2.4.93-1+rpi1 armhf -libdrm2 2.4.93-1+rpi1 armhf +libdns1102 1:9.11.4.P2+dfsg-3 armhf +libdpkg-perl 1.19.2 all +libdrm-amdgpu1 2.4.95-1+rpi1 armhf +libdrm-common 2.4.95-1+rpi1 all +libdrm-etnaviv1 2.4.95-1+rpi1 armhf +libdrm-freedreno1 2.4.95-1+rpi1 armhf +libdrm-nouveau2 2.4.95-1+rpi1 armhf +libdrm-radeon1 2.4.95-1+rpi1 armhf +libdrm2 2.4.95-1+rpi1 armhf -libepoxy0 1.4.3-1 armhf +libepoxy0 1.5.3-0.1 armhf -libfftw3-single3 3.3.8-1 armhf +libfftw3-single3 3.3.8-2 armhf -libfontconfig1 2.13.0-5 armhf +libfontconfig1 2.13.1-1 armhf -libgcc-6-dev 6.4.0-20+rpi1 armhf +libgcc-6-dev 6.4.0-22+rpi1 armhf -libgcc-8-dev 8.2.0-4+rpi1 armhf -libgcc1 1:8.2.0-4+rpi1 armhf +libgcc-8-dev 8.2.0-7+rpi1 armhf +libgcc1 1:8.2.0-7+rpi1 armhf -libgd3 2.2.5-4 armhf -libgdbm-compat4 1.14.1-6 armhf +libgd3 2.2.5-4.1 armhf +libgdbm-compat4 1.18-2 armhf -libgdk-pixbuf2.0-0 2.36.12-2 armhf -libgdk-pixbuf2.0-bin 2.36.12-2 armhf -libgdk-pixbuf2.0-common 2.36.12-2 all +libgdbm6 1.18-2 armhf +libgdk-pixbuf2.0-0 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-bin 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-common 2.38.0+dfsg-6+rpi1 all -libgirepository-1.0-1 1.56.1-1 armhf +libgfortran5 8.2.0-7+rpi1 armhf +libgirepository-1.0-1 1.58.0-1 armhf -libglib2.0-0 2.56.1-2 armhf -libglib2.0-data 2.56.1-2 all +libglib2.0-0 2.58.1-2 armhf +libglib2.0-data 2.58.1-2 all -libgomp1 8.2.0-4+rpi1 armhf -libgpg-error0 1.32-1 armhf +libgomp1 8.2.0-7+rpi1 armhf +libgpg-error-l10n 1.32-2 all +libgpg-error0 1.32-2 armhf -libgssapi-krb5-2 1.16-2 armhf -libgtk-3-0 3.22.30-2+rpi1 armhf -libgtk-3-bin 3.22.30-2+rpi1 armhf -libgtk-3-common 3.22.30-2+rpi1 all +libgssapi-krb5-2 1.16.1-1 armhf +libgtk-3-0 3.24.1-2+rvt armhf +libgtk-3-bin 3.24.1-2+rvt armhf +libgtk-3-common 3.24.1-2+rvt all -libharfbuzz0b 1.8.8-2+rpi1 armhf +libharfbuzz0b 1.9.0-1+rpi1 armhf -libi2c0 4.0-2+b1 armhf +libi2c0 4.0-2+b2 armhf -libirs-export160 1:9.11.4+dfsg-4 armhf -libirs160 1:9.11.4+dfsg-4 armhf +libirs-export160 1:9.11.4.P2+dfsg-3 armhf +libirs160 1:9.11.4.P2+dfsg-3 armhf -libisc-export169 1:9.11.4+dfsg-4 armhf -libisc169 1:9.11.4+dfsg-4 armhf -libisccc160 1:9.11.4+dfsg-4 armhf -libisccfg-export160 1:9.11.4+dfsg-4 armhf -libisccfg160 1:9.11.4+dfsg-4 armhf +libisc-export169 1:9.11.4.P2+dfsg-3 armhf +libisc169 1:9.11.4.P2+dfsg-3 armhf +libisccc160 1:9.11.4.P2+dfsg-3 armhf +libisccfg-export160 1:9.11.4.P2+dfsg-3 armhf +libisccfg160 1:9.11.4.P2+dfsg-3 armhf -libiw30 30~pre9-12 armhf +libiw30 30~pre9-13 armhf -libjs-sphinxdoc 1.7.8-1 all +libjs-sphinxdoc 1.7.9-1 all -libjson-glib-1.0-0 1.4.2-4 armhf -libjson-glib-1.0-common 1.4.2-4 all +libjson-glib-1.0-0 1.4.4-1 armhf +libjson-glib-1.0-common 1.4.4-1 all -libk5crypto3 1.16-2 armhf +libk5crypto3 1.16.1-1 armhf -libkrb5-3 1.16-2 armhf -libkrb5support0 1.16-2 armhf +libkrb5-3 1.16.1-1 armhf +libkrb5support0 1.16.1-1 armhf -liblcms2-2 2.9-2 armhf +liblcms2-2 2.9-3 armhf -libllvm6.0 1:6.0.1-6+rpi1 armhf +libllvm6.0 1:6.0.1-9+rpi1 armhf -liblwres160 1:9.11.4+dfsg-4 armhf +liblwres160 1:9.11.4.P2+dfsg-3 armhf -libnewt0.52 0.52.20-6 armhf +libnewt0.52 0.52.20-8 armhf -libnginx-mod-http-auth-pam 1.14.0-1 armhf -libnginx-mod-http-dav-ext 1.14.0-1 armhf -libnginx-mod-http-echo 1.14.0-1 armhf -libnginx-mod-http-geoip 1.14.0-1 armhf -libnginx-mod-http-headers-more-filter 1.14.0-1 armhf -libnginx-mod-http-image-filter 1.14.0-1 armhf -libnginx-mod-http-subs-filter 1.14.0-1 armhf -libnginx-mod-http-upstream-fair 1.14.0-1 armhf -libnginx-mod-http-xslt-filter 1.14.0-1 armhf -libnginx-mod-mail 1.14.0-1 armhf -libnginx-mod-stream 1.14.0-1 armhf +libnginx-mod-http-auth-pam 1.14.0-1+b1 armhf +libnginx-mod-http-dav-ext 1.14.0-1+b1 armhf +libnginx-mod-http-echo 1.14.0-1+b1 armhf +libnginx-mod-http-geoip 1.14.0-1+b1 armhf +libnginx-mod-http-headers-more-filter 1.14.0-1+b1 armhf +libnginx-mod-http-image-filter 1.14.0-1+b1 armhf +libnginx-mod-http-subs-filter 1.14.0-1+b1 armhf +libnginx-mod-http-upstream-fair 1.14.0-1+b1 armhf +libnginx-mod-http-xslt-filter 1.14.0-1+b1 armhf +libnginx-mod-mail 1.14.0-1+b1 armhf +libnginx-mod-stream 1.14.0-1+b1 armhf -libnspr4 2:4.19-3+rpi1 armhf +libnspr4 2:4.20-1 armhf -libnss-systemd 239-7 armhf -libnss3 2:3.38-1 armhf +libnss-systemd 239-10+rpi1 armhf +libnss3 2:3.39-1 armhf -libopenal-data 1:1.18.2-3 all -libopenal1 1:1.18.2-3+b1 armhf +libopenal-data 1:1.19.1-1 all +libopenal1 1:1.19.1-1 armhf -libopenmpt0 0.3.11-1 armhf +libopenmpt0 0.3.12-1 armhf -libpam-systemd 239-7 armhf +libpam-systemd 239-10+rpi1 armhf -libpango-1.0-0 1.42.4-1 armhf -libpangocairo-1.0-0 1.42.4-1 armhf -libpangoft2-1.0-0 1.42.4-1 armhf -libparted2 3.2-21 armhf +libpango-1.0-0 1.42.4-3 armhf +libpangocairo-1.0-0 1.42.4-3 armhf +libpangoft2-1.0-0 1.42.4-3 armhf +libparted2 3.2-22 armhf -libpcsclite1 1.8.23-3 armhf -libperl5.26 5.26.2-7 armhf +libpcsclite1 1.8.24-1 armhf +libperl5.26 5.26.2-7+b1 armhf -libproxy1v5 0.4.15-1 armhf -libpsl5 0.20.2-1 armhf -libpulse0 12.0-1+rpi1 armhf +libproxy1v5 0.4.15-3 armhf +libpsl5 0.20.2-2 armhf +libpulse0 12.2-2+b2 armhf -libpython3-dev 3.6.5-3 armhf -libpython3-stdlib 3.6.5-3 armhf +libpython3-dev 3.6.6-1 armhf +libpython3-stdlib 3.6.6-1 armhf -libraspberrypi-bin 1.20180817-1 armhf -libraspberrypi-dev 1.20180817-1 armhf -libraspberrypi-doc 1.20180817-1 armhf -libraspberrypi0 1.20180817-1 armhf +libraspberrypi-bin 1.20180924-1 armhf +libraspberrypi-dev 1.20180924-1 armhf +libraspberrypi-doc 1.20180924-1 armhf +libraspberrypi0 1.20180924-1 armhf -libroar2 1.0~beta11-10 armhf +libroar2 1.0~beta11-11 armhf -libruby2.5 2.5.1-5 armhf +libruby2.5 2.5.1-5+b1 armhf -libsasl2-2 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules-db 2.1.27~101-g0780600+dfsg-3.1 armhf +libsasl2-2 2.1.27~rc8-1 armhf +libsasl2-modules 2.1.27~rc8-1 armhf +libsasl2-modules-db 2.1.27~rc8-1 armhf -libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libsdl2-2.0-0 2.0.8+dfsg1-4 armhf -libsensors4 1:3.4.0-4+b1 armhf +libsensors4 1:3.4.0-4+b2 armhf -libshine3 3.1.1-2 armhf +libshine3 3.1.1-2+b1 armhf -libsigc++-2.0-0v5 2.10.0-2 armhf +libsigc++-2.0-0v5 2.10.0-2.1 armhf -libsoup-gnome2.4-1 2.62.2-2 armhf -libsoup2.4-1 2.62.2-2 armhf +libsoup-gnome2.4-1 2.64.1-3 armhf +libsoup2.4-1 2.64.1-3 armhf -libsqlite3-0 3.24.0-1 armhf +libsqlite3-0 3.25.2-1 armhf -libstdc++-8-dev 8.2.0-4+rpi1 armhf -libstdc++6 8.2.0-4+rpi1 armhf +libstdc++-8-dev 8.2.0-7+rpi1 armhf +libstdc++6 8.2.0-7+rpi1 armhf -libswresample3 7:4.0.2-1+b2 armhf +libswresample3 7:4.0.2-2+b2 armhf -libsystemd0 239-7 armhf +libsystemd0 239-10+rpi1 armhf -libtdb1 1.3.15-4 armhf -libtevent0 0.9.36-2 armhf +libtdb1 1.3.16-1 armhf +libtevent0 0.9.37-1 armhf -libtirpc1 0.2.5-1.2 armhf +libtirpc1 0.2.5-1.3 armhf -libubsan1 8.2.0-4+rpi1 armhf +libubsan1 8.2.0-7+rpi1 armhf -libudev1 239-7 armhf +libudev1 239-10+rpi1 armhf -libuv1 1.22.0-3 armhf +libuv1 1.23.1-1 armhf -libva-drm2 2.2.0-1 armhf -libva-x11-2 2.2.0-1 armhf -libva2 2.2.0-1 armhf +libva-drm2 2.3.0-2 armhf +libva-x11-2 2.3.0-2 armhf +libva2 2.3.0-2 armhf -libwayland-client0 1.15.0-2 armhf -libwayland-cursor0 1.15.0-2 armhf -libwayland-egl1 1.15.0-2 armhf +libwayland-client0 1.16.0-1 armhf +libwayland-cursor0 1.16.0-1 armhf +libwayland-egl1 1.16.0-1 armhf -libwww-perl 6.35-2 all +libwww-perl 6.36-1 all -libx11-6 2:1.6.6-1 armhf -libx11-data 2:1.6.6-1 all +libx11-6 2:1.6.7-1 armhf +libx11-data 2:1.6.7-1 all -libx11-xcb1 2:1.6.6-1 armhf +libx11-xcb1 2:1.6.7-1 armhf +libx264-155 2:0.155.2917+git0a84d98-2+rpi1 armhf -libxapian30 1.4.7-2 armhf +libx265-165 2.9-3 armhf +libxapian30 1.4.7-4 armhf -libxcb-dri2-0 1.13-3 armhf -libxcb-dri3-0 1.13-3 armhf -libxcb-glx0 1.13-3 armhf +libxcb-dri2-0 1.13.1-1 armhf +libxcb-dri3-0 1.13.1-1 armhf +libxcb-glx0 1.13.1-1 armhf -libxcb-present0 1.13-3 armhf -libxcb-render0 1.13-3 armhf -libxcb-shape0 1.13-3 armhf -libxcb-shm0 1.13-3 armhf -libxcb-sync1 1.13-3 armhf +libxcb-present0 1.13.1-1 armhf +libxcb-render0 1.13.1-1 armhf +libxcb-shape0 1.13.1-1 armhf +libxcb-shm0 1.13.1-1 armhf +libxcb-sync1 1.13.1-1 armhf -libxcb-xfixes0 1.13-3 armhf -libxcb1 1.13-3 armhf +libxcb-xfixes0 1.13.1-1 armhf +libxcb1 1.13.1-1 armhf -libxss1 1:1.2.2-1 armhf +libxss1 1:1.2.3-1 armhf -libyajl2 2.1.0-2 armhf +libyajl2 2.1.0-3 armhf -libzvbi-common 0.2.35-13 all -libzvbi0 0.2.35-13 armhf +libzvbi-common 0.2.35-14 all +libzvbi0 0.2.35-14 armhf -locales 2.27-5+rpi1 all +locales 2.27-6+rpi1 all -man-db 2.8.4-2 armhf +man-db 2.8.4-2+b1 armhf -multiarch-support 2.27-5+rpi1 armhf +multiarch-support 2.27-6+rpi1 armhf -nano 2.9.8-1 armhf +nano 3.1-1 armhf -net-tools 1.60+git20161116.90da8a0-3 armhf +net-tools 1.60+git20180626.aebd88e-1 armhf -nginx-full 1.14.0-1 armhf +nginx-full 1.14.0-1+b1 armhf -parted 3.2-21 armhf +parted 3.2-22 armhf -perl 5.26.2-7 armhf -perl-base 5.26.2-7 armhf +perl 5.26.2-7+b1 armhf +perl-base 5.26.2-7+b1 armhf -psmisc 23.1-1 armhf +psmisc 23.2-1 armhf -python-apt-common 1.6.2 all +python-apt-common 1.7.0 all -python-cffi-backend 1.11.5-1 armhf +python-cairo 1.16.2-1 armhf +python-cffi-backend 1.11.5-3 armhf -python-gi 3.28.3-1 armhf +python-gi 3.30.1-1 armhf -python-keyring 13.1.0-1 all -python-keyrings.alt 3.0-1 all -python-lxml 4.2.4-1 armhf +python-keyring 15.1.0-1 all +python-keyrings.alt 3.1-1 all +python-lxml 4.2.5-1 armhf -python-newt 0.52.20-6 armhf +python-newt 0.52.20-8 armhf -python-pyicu 2.0.3-1+b1 armhf +python-pyicu 2.1-1 armhf -python3 3.6.5-3 armhf -python3-acme 0.26.0-1 all -python3-apt 1.6.2 armhf +python3 3.6.6-1 armhf +python3-acme 0.27.0-1 all +python3-apt 1.7.0 armhf -python3-certbot 0.26.1-1 all +python3-cairo 1.16.2-1 armhf +python3-certbot 0.27.0-1 all -python3-cffi-backend 1.11.5-1 armhf +python3-cffi-backend 1.11.5-3 armhf -python3-dev 3.6.5-3 armhf +python3-dev 3.6.6-1 armhf -python3-eyed3 0.8.5-1 all +python3-eyed3 0.8.7-1 all -python3-gi 3.28.3-1 armhf +python3-gi 3.30.1-1 armhf -python3-keyring 13.1.0-1 all -python3-keyrings.alt 3.0-1 all +python3-keyring 15.1.0-1 all +python3-keyrings.alt 3.1-1 all -python3-minimal 3.6.5-3 armhf -python3-mock 2.0.0-3 all +python3-minimal 3.6.6-1 armhf +python3-mock 2.0.0-4 all -raspberrypi-bootloader 1.20180817-1 armhf -raspberrypi-kernel 1.20180817-1 armhf +raspberrypi-bootloader 1.20180924-1 armhf +raspberrypi-kernel 1.20180924-1 armhf -rsyslog 8.37.0-2 armhf -ruby 1:2.5.1 armhf +rsyslog 8.38.0-1+b1 armhf +ruby 1:2.5.1+b1 armhf -ruby2.5 2.5.1-5 armhf +ruby2.5 2.5.1-5+b1 armhf -sed 4.5-1 armhf +sed 4.5-2 armhf -shared-mime-info 1.9-2 armhf +shared-mime-info 1.10-1 armhf -systemd 239-7 armhf -systemd-sysv 239-7 armhf -sysvinit-utils 2.88dsf-59.10 armhf +systemd 239-10+rpi1 armhf +systemd-sysv 239-10+rpi1 armhf +sysvinit-utils 2.88dsf-59.11 armhf -tasksel 3.45 all -tasksel-data 3.45 all +tasksel 3.46 all +tasksel-data 3.46 all -udev 239-7 armhf +udev 239-10+rpi1 armhf -va-driver-all 2.2.0-1 armhf +va-driver-all 2.3.0-2 armhf -vnstat 1.18-1 armhf +vnstat 1.18-2 armhf -whiptail 0.52.20-6 armhf +whiptail 0.52.20-8 armhf -wireless-tools 30~pre9-12 armhf +wireless-tools 30~pre9-13 armhf -zsh 5.6-1 armhf -zsh-common 5.6-1 all +zsh 5.6.2-3 armhf +zsh-common 5.6.2-3 all
6 years ago
## WASAPI backend stuff
committing changes in /etc after apt run Package changes: +freepats 20060219-1 all +libadplug-2.2.1-0v5 2.2.1+dfsg3-0.4 armhf +libao-common 1.2.2+20180113-1 all +libao4 1.2.2+20180113-1 armhf +libaudiofile1 0.3.6-4 armhf +libavcodec58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-1+b2 armhf +libbinio1v5 1.4+dfsg1-6 armhf +libcdio-cdda2 10.2+0.94+2-4 armhf +libcdio-paranoia2 10.2+0.94+2-4 armhf +libcdio18 2.0.0-2 armhf +libcodec2-0.8.1 0.8.1-1 armhf +libfaad2 2.8.8-1 armhf +libfluidsynth1 1.1.11-1 armhf +libid3tag0 0.15.1b-13 armhf +libiso9660-11 2.0.0-2 armhf +libjack-jackd2-0 1.9.12~dfsg-2 armhf +libjansson4 2.11-1 armhf +libldb1 2:1.4.0+really1.3.6-1 armhf +libmad0 0.15.1b-9 armhf +libmikmod3 3.3.11.1-4 armhf +libmms0 0.6.4-3 armhf +libmodplug1 1:0.8.9.0-2 armhf +libmpcdec6 2:0.1~r495-1+b1 armhf +libmpdclient2 2.13-1 armhf +libnfs11 2.0.0-1~exp1 armhf +libopenal-data 1:1.18.2-3 all +libopenal1 1:1.18.2-3+b1 armhf +libroar2 1.0~beta11-10 armhf +libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libshout3 2.4.1-2 armhf +libsidplayfp4 1.8.8-1 armhf +libsmbclient 2:4.8.5+dfsg-1 armhf +libsndio7.0 1.5.0-2 armhf +libspeexdsp1 1.2~rc1.2-1 armhf -libssh-gcrypt-4 0.8.0~20170825.94fa1e38-1 armhf +libssh-gcrypt-4 0.8.1-1 armhf +libswresample3 7:4.0.2-1+b2 armhf +libtdb1 1.3.15-4 armhf +libtevent0 0.9.36-2 armhf +libupnp6 1:1.6.24-4 armhf -libwbclient0 2:4.8.2+dfsg-2 armhf +libwayland-client0 1.15.0-2 armhf +libwayland-cursor0 1.15.0-2 armhf +libwayland-egl1 1.15.0-2 armhf +libwbclient0 2:4.8.5+dfsg-1 armhf +libwildmidi-config 0.4.2-1 all +libwildmidi2 0.4.2-1 armhf +libxkbcommon0 0.8.2-1 armhf +libyajl2 2.1.0-2 armhf +libzzip-0-13 0.13.62-3.1 armhf +mpc 0.30-1 armhf +mpd 0.20.21-1 armhf +python-talloc 2.1.14-1 armhf +samba-libs 2:4.8.5+dfsg-1 armhf
6 years ago
##
committing changes in /etc after apt run Package changes: -adduser 3.117 all -adwaita-icon-theme 3.28.0-1 all +adduser 3.118 all +adwaita-icon-theme 3.30.0-1 all -apt 1.6.4+b2 armhf +apt 1.7.0 armhf -apt-utils 1.6.4+b2 armhf -aptitude 0.8.10-9 armhf -aptitude-common 0.8.10-9 all -at-spi2-core 2.28.0-3 armhf -avahi-daemon 0.7-4 armhf +apt-utils 1.7.0 armhf +aptitude 0.8.11-3 armhf +aptitude-common 0.8.11-3 all +at-spi2-core 2.30.0-2 armhf +avahi-daemon 0.7-4+b1 armhf -bind9 1:9.11.4+dfsg-4 armhf -bind9-host 1:9.11.4+dfsg-4 armhf -bind9utils 1:9.11.4+dfsg-4 armhf -binutils 2.31.1-5+rpi1 armhf -binutils-arm-linux-gnueabihf 2.31.1-5+rpi1 armhf -binutils-common 2.31.1-5+rpi1 armhf +bind9 1:9.11.4.P2+dfsg-3 armhf +bind9-host 1:9.11.4.P2+dfsg-3 armhf +bind9utils 1:9.11.4.P2+dfsg-3 armhf +binutils 2.31.1-6+rpi1 armhf +binutils-arm-linux-gnueabihf 2.31.1-6+rpi1 armhf +binutils-common 2.31.1-6+rpi1 armhf -bluez 5.50-1 armhf +bluez 5.50-1+b2 armhf -certbot 0.26.1-1 all +certbot 0.27.0-1 all -cmake 3.12.1-1 armhf -cmake-data 3.12.1-1 all +cmake 3.12.3-2 armhf +cmake-data 3.12.3-2 all -console-setup 1.185 all -console-setup-linux 1.185 all -coreutils 8.28-1 armhf +console-setup 1.186 all +console-setup-linux 1.186 all +coreutils 8.30-1 armhf -cpp-6 6.4.0-20+rpi1 armhf +cpp-6 6.4.0-22+rpi1 armhf -cpp-8 8.2.0-4+rpi1 armhf +cpp-8 8.2.0-7+rpi1 armhf -dash 0.5.8-2.10 armhf +dash 0.5.10.2-1 armhf -dconf-gsettings-backend 0.28.0-2 armhf -dconf-service 0.28.0-2 armhf +dconf-gsettings-backend 0.30.0-1 armhf +dconf-service 0.30.0-1 armhf -device-tree-compiler 1.4.6-1 armhf -dh-python 3.20180723 all +device-tree-compiler 1.4.7-3 armhf +dh-python 3.20180927 all -dirmngr 2.2.10-1+rpi1 armhf +dirmngr 2.2.10-3+rpi1 armhf -dmidecode 3.1-2 armhf +dmidecode 3.2-1 armhf -dnsutils 1:9.11.4+dfsg-4 armhf +dnsutils 1:9.11.4.P2+dfsg-3 armhf -dpkg 1.19.0.5 armhf -dpkg-dev 1.19.0.5 all +dpkg 1.19.2 armhf +dpkg-dev 1.19.2 all -exim4-base 4.91-7 armhf -exim4-config 4.91-7 all -exim4-daemon-light 4.91-7 armhf -eyed3 0.8.5-1 all -fail2ban 0.10.2-2 all +exim4-base 4.91-8 armhf +exim4-config 4.91-8 all +exim4-daemon-light 4.91-8 armhf +eyed3 0.8.7-1 all +fail2ban 0.10.2-2.1 all -fontconfig 2.13.0-5 armhf -fontconfig-config 2.13.0-5 all +fontconfig 2.13.1-1 armhf +fontconfig-config 2.13.1-1 all -g++-8 8.2.0-4+rpi1 armhf -gawk 1:4.1.4+dfsg-1+b1 armhf +g++-8 8.2.0-7+rpi1 armhf +gawk 1:4.2.1+dfsg-1 armhf -gcc-6 6.4.0-20+rpi1 armhf -gcc-6-base 6.4.0-20+rpi1 armhf +gcc-6 6.4.0-22+rpi1 armhf +gcc-6-base 6.4.0-22+rpi1 armhf -gcc-8 8.2.0-4+rpi1 armhf -gcc-8-base 8.2.0-4+rpi1 armhf +gcc-8 8.2.0-7+rpi1 armhf +gcc-8-base 8.2.0-7+rpi1 armhf -gettext-base 0.19.8.1-7 armhf -gir1.2-glib-2.0 1.56.1-1 armhf -git 1:2.18.0-1 armhf -git-man 1:2.18.0-1 all -glib-networking 2.57.92-1 armhf -glib-networking-common 2.57.92-1 all -glib-networking-services 2.57.92-1 armhf +gettext-base 0.19.8.1-8 armhf +gir1.2-glib-2.0 1.58.0-1 armhf +git 1:2.19.1-1 armhf +git-man 1:2.19.1-1 all +glib-networking 2.58.0-1 armhf +glib-networking-common 2.58.0-1 all +glib-networking-services 2.58.0-1 armhf -gnupg 2.2.10-1+rpi1 all -gnupg-agent 2.2.10-1+rpi1 all -gnupg-l10n 2.2.10-1+rpi1 all -gnupg-utils 2.2.10-1+rpi1 armhf -gpg 2.2.10-1+rpi1 armhf -gpg-agent 2.2.10-1+rpi1 armhf -gpg-wks-client 2.2.10-1+rpi1 armhf -gpg-wks-server 2.2.10-1+rpi1 armhf -gpgconf 2.2.10-1+rpi1 armhf -gpgsm 2.2.10-1+rpi1 armhf -gpgv 2.2.10-1+rpi1 armhf +gnupg 2.2.10-3+rpi1 all +gnupg-agent 2.2.10-3+rpi1 all +gnupg-l10n 2.2.10-3+rpi1 all +gnupg-utils 2.2.10-3+rpi1 armhf +gpg 2.2.10-3+rpi1 armhf +gpg-agent 2.2.10-3+rpi1 armhf +gpg-wks-client 2.2.10-3+rpi1 armhf +gpg-wks-server 2.2.10-3+rpi1 armhf +gpgconf 2.2.10-3+rpi1 armhf +gpgsm 2.2.10-3+rpi1 armhf +gpgv 2.2.10-3+rpi1 armhf -gsettings-desktop-schemas 3.28.0-1 all -gtk-update-icon-cache 3.22.30-2+rpi1 armhf -gzip 1.9-2 armhf +gsettings-desktop-schemas 3.28.1-1 all +gtk-update-icon-cache 3.24.1-2+rvt armhf +gzip 1.9-2.1 armhf -hostname 3.20 armhf +hostname 3.21 armhf -i2c-tools 4.0-2+b1 armhf +i2c-tools 4.0-2+b2 armhf -iso-codes 3.79-1 all +iso-codes 4.1-1 all -keyboard-configuration 1.185 all +keyboard-configuration 1.186 all +libaom0 1.0.0-3 armhf -libapt-inst2.0 1.6.4+b2 armhf -libapt-pkg5.0 1.6.4+b2 armhf +libapt-inst2.0 1.7.0 armhf +libapt-pkg5.0 1.7.0 armhf -libasan3 6.4.0-20+rpi1 armhf +libasan3 6.4.0-22+rpi1 armhf -libasan5 8.2.0-4+rpi1 armhf +libasan5 8.2.0-7+rpi1 armhf -libatk-bridge2.0-0 2.26.2-1 armhf -libatk1.0-0 2.28.1-1 armhf -libatk1.0-data 2.28.1-1 all -libatomic1 8.2.0-4+rpi1 armhf -libatspi2.0-0 2.28.0-3 armhf +libatk-bridge2.0-0 2.30.0-2 armhf +libatk1.0-0 2.30.0-1 armhf +libatk1.0-data 2.30.0-1 all +libatomic1 8.2.0-7+rpi1 armhf +libatspi2.0-0 2.30.0-2 armhf -libavahi-client3 0.7-4 armhf -libavahi-common-data 0.7-4 armhf -libavahi-common3 0.7-4 armhf -libavahi-core7 0.7-4 armhf +libavahi-client3 0.7-4+b1 armhf +libavahi-common-data 0.7-4+b1 armhf +libavahi-common3 0.7-4+b1 armhf +libavahi-core7 0.7-4+b1 armhf -libavcodec58 7:4.0.2-1+b2 armhf +libavcodec58 7:4.0.2-2+b2 armhf -libavformat58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-2+b2 armhf -libavutil56 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-2+b2 armhf -libbind9-160 1:9.11.4+dfsg-4 armhf +libbind9-160 1:9.11.4.P2+dfsg-3 armhf -libbinutils 2.31.1-5+rpi1 armhf -libblas3 3.8.0-1 armhf +libbinutils 2.31.1-6+rpi1 armhf +libblas3 3.8.0-1+b1 armhf -libbluetooth3 5.50-1 armhf +libbluetooth3 5.50-1+b2 armhf -libboost-filesystem1.62.0 1.62.0+dfsg-8 armhf +libboost-filesystem1.62.0 1.62.0+dfsg-10 armhf -libboost-iostreams1.62.0 1.62.0+dfsg-8 armhf -libboost-system1.62.0 1.62.0+dfsg-8 armhf +libboost-iostreams1.62.0 1.62.0+dfsg-10 armhf +libboost-system1.62.0 1.62.0+dfsg-10 armhf -libc-bin 2.27-5+rpi1 armhf -libc-dev-bin 2.27-5+rpi1 armhf -libc-l10n 2.27-5+rpi1 all -libc6 2.27-5+rpi1 armhf -libc6-dbg 2.27-5+rpi1 armhf -libc6-dev 2.27-5+rpi1 armhf +libc-bin 2.27-6+rpi1 armhf +libc-dev-bin 2.27-6+rpi1 armhf +libc-l10n 2.27-6+rpi1 all +libc6 2.27-6+rpi1 armhf +libc6-dbg 2.27-6+rpi1 armhf +libc6-dev 2.27-6+rpi1 armhf -libcc1-0 8.2.0-4+rpi1 armhf +libcc1-0 8.2.0-7+rpi1 armhf -libcups2 2.2.8-5 armhf +libcups2 2.2.8-5+b1 armhf -libdb5.3 5.3.28+dfsg1-0.1 armhf +libdb5.3 5.3.28+dfsg1-0.2 armhf -libdconf1 0.28.0-2 armhf -libdebconfclient0 0.244 armhf +libdconf1 0.30.0-1 armhf +libdebconfclient0 0.245 armhf -libdns-export1102 1:9.11.4+dfsg-4 armhf +libdns-export1102 1:9.11.4.P2+dfsg-3 armhf -libdns1102 1:9.11.4+dfsg-4 armhf -libdpkg-perl 1.19.0.5 all -libdrm-amdgpu1 2.4.93-1+rpi1 armhf -libdrm-common 2.4.93-1+rpi1 all -libdrm-etnaviv1 2.4.93-1+rpi1 armhf -libdrm-freedreno1 2.4.93-1+rpi1 armhf -libdrm-nouveau2 2.4.93-1+rpi1 armhf -libdrm-radeon1 2.4.93-1+rpi1 armhf -libdrm2 2.4.93-1+rpi1 armhf +libdns1102 1:9.11.4.P2+dfsg-3 armhf +libdpkg-perl 1.19.2 all +libdrm-amdgpu1 2.4.95-1+rpi1 armhf +libdrm-common 2.4.95-1+rpi1 all +libdrm-etnaviv1 2.4.95-1+rpi1 armhf +libdrm-freedreno1 2.4.95-1+rpi1 armhf +libdrm-nouveau2 2.4.95-1+rpi1 armhf +libdrm-radeon1 2.4.95-1+rpi1 armhf +libdrm2 2.4.95-1+rpi1 armhf -libepoxy0 1.4.3-1 armhf +libepoxy0 1.5.3-0.1 armhf -libfftw3-single3 3.3.8-1 armhf +libfftw3-single3 3.3.8-2 armhf -libfontconfig1 2.13.0-5 armhf +libfontconfig1 2.13.1-1 armhf -libgcc-6-dev 6.4.0-20+rpi1 armhf +libgcc-6-dev 6.4.0-22+rpi1 armhf -libgcc-8-dev 8.2.0-4+rpi1 armhf -libgcc1 1:8.2.0-4+rpi1 armhf +libgcc-8-dev 8.2.0-7+rpi1 armhf +libgcc1 1:8.2.0-7+rpi1 armhf -libgd3 2.2.5-4 armhf -libgdbm-compat4 1.14.1-6 armhf +libgd3 2.2.5-4.1 armhf +libgdbm-compat4 1.18-2 armhf -libgdk-pixbuf2.0-0 2.36.12-2 armhf -libgdk-pixbuf2.0-bin 2.36.12-2 armhf -libgdk-pixbuf2.0-common 2.36.12-2 all +libgdbm6 1.18-2 armhf +libgdk-pixbuf2.0-0 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-bin 2.38.0+dfsg-6+rpi1 armhf +libgdk-pixbuf2.0-common 2.38.0+dfsg-6+rpi1 all -libgirepository-1.0-1 1.56.1-1 armhf +libgfortran5 8.2.0-7+rpi1 armhf +libgirepository-1.0-1 1.58.0-1 armhf -libglib2.0-0 2.56.1-2 armhf -libglib2.0-data 2.56.1-2 all +libglib2.0-0 2.58.1-2 armhf +libglib2.0-data 2.58.1-2 all -libgomp1 8.2.0-4+rpi1 armhf -libgpg-error0 1.32-1 armhf +libgomp1 8.2.0-7+rpi1 armhf +libgpg-error-l10n 1.32-2 all +libgpg-error0 1.32-2 armhf -libgssapi-krb5-2 1.16-2 armhf -libgtk-3-0 3.22.30-2+rpi1 armhf -libgtk-3-bin 3.22.30-2+rpi1 armhf -libgtk-3-common 3.22.30-2+rpi1 all +libgssapi-krb5-2 1.16.1-1 armhf +libgtk-3-0 3.24.1-2+rvt armhf +libgtk-3-bin 3.24.1-2+rvt armhf +libgtk-3-common 3.24.1-2+rvt all -libharfbuzz0b 1.8.8-2+rpi1 armhf +libharfbuzz0b 1.9.0-1+rpi1 armhf -libi2c0 4.0-2+b1 armhf +libi2c0 4.0-2+b2 armhf -libirs-export160 1:9.11.4+dfsg-4 armhf -libirs160 1:9.11.4+dfsg-4 armhf +libirs-export160 1:9.11.4.P2+dfsg-3 armhf +libirs160 1:9.11.4.P2+dfsg-3 armhf -libisc-export169 1:9.11.4+dfsg-4 armhf -libisc169 1:9.11.4+dfsg-4 armhf -libisccc160 1:9.11.4+dfsg-4 armhf -libisccfg-export160 1:9.11.4+dfsg-4 armhf -libisccfg160 1:9.11.4+dfsg-4 armhf +libisc-export169 1:9.11.4.P2+dfsg-3 armhf +libisc169 1:9.11.4.P2+dfsg-3 armhf +libisccc160 1:9.11.4.P2+dfsg-3 armhf +libisccfg-export160 1:9.11.4.P2+dfsg-3 armhf +libisccfg160 1:9.11.4.P2+dfsg-3 armhf -libiw30 30~pre9-12 armhf +libiw30 30~pre9-13 armhf -libjs-sphinxdoc 1.7.8-1 all +libjs-sphinxdoc 1.7.9-1 all -libjson-glib-1.0-0 1.4.2-4 armhf -libjson-glib-1.0-common 1.4.2-4 all +libjson-glib-1.0-0 1.4.4-1 armhf +libjson-glib-1.0-common 1.4.4-1 all -libk5crypto3 1.16-2 armhf +libk5crypto3 1.16.1-1 armhf -libkrb5-3 1.16-2 armhf -libkrb5support0 1.16-2 armhf +libkrb5-3 1.16.1-1 armhf +libkrb5support0 1.16.1-1 armhf -liblcms2-2 2.9-2 armhf +liblcms2-2 2.9-3 armhf -libllvm6.0 1:6.0.1-6+rpi1 armhf +libllvm6.0 1:6.0.1-9+rpi1 armhf -liblwres160 1:9.11.4+dfsg-4 armhf +liblwres160 1:9.11.4.P2+dfsg-3 armhf -libnewt0.52 0.52.20-6 armhf +libnewt0.52 0.52.20-8 armhf -libnginx-mod-http-auth-pam 1.14.0-1 armhf -libnginx-mod-http-dav-ext 1.14.0-1 armhf -libnginx-mod-http-echo 1.14.0-1 armhf -libnginx-mod-http-geoip 1.14.0-1 armhf -libnginx-mod-http-headers-more-filter 1.14.0-1 armhf -libnginx-mod-http-image-filter 1.14.0-1 armhf -libnginx-mod-http-subs-filter 1.14.0-1 armhf -libnginx-mod-http-upstream-fair 1.14.0-1 armhf -libnginx-mod-http-xslt-filter 1.14.0-1 armhf -libnginx-mod-mail 1.14.0-1 armhf -libnginx-mod-stream 1.14.0-1 armhf +libnginx-mod-http-auth-pam 1.14.0-1+b1 armhf +libnginx-mod-http-dav-ext 1.14.0-1+b1 armhf +libnginx-mod-http-echo 1.14.0-1+b1 armhf +libnginx-mod-http-geoip 1.14.0-1+b1 armhf +libnginx-mod-http-headers-more-filter 1.14.0-1+b1 armhf +libnginx-mod-http-image-filter 1.14.0-1+b1 armhf +libnginx-mod-http-subs-filter 1.14.0-1+b1 armhf +libnginx-mod-http-upstream-fair 1.14.0-1+b1 armhf +libnginx-mod-http-xslt-filter 1.14.0-1+b1 armhf +libnginx-mod-mail 1.14.0-1+b1 armhf +libnginx-mod-stream 1.14.0-1+b1 armhf -libnspr4 2:4.19-3+rpi1 armhf +libnspr4 2:4.20-1 armhf -libnss-systemd 239-7 armhf -libnss3 2:3.38-1 armhf +libnss-systemd 239-10+rpi1 armhf +libnss3 2:3.39-1 armhf -libopenal-data 1:1.18.2-3 all -libopenal1 1:1.18.2-3+b1 armhf +libopenal-data 1:1.19.1-1 all +libopenal1 1:1.19.1-1 armhf -libopenmpt0 0.3.11-1 armhf +libopenmpt0 0.3.12-1 armhf -libpam-systemd 239-7 armhf +libpam-systemd 239-10+rpi1 armhf -libpango-1.0-0 1.42.4-1 armhf -libpangocairo-1.0-0 1.42.4-1 armhf -libpangoft2-1.0-0 1.42.4-1 armhf -libparted2 3.2-21 armhf +libpango-1.0-0 1.42.4-3 armhf +libpangocairo-1.0-0 1.42.4-3 armhf +libpangoft2-1.0-0 1.42.4-3 armhf +libparted2 3.2-22 armhf -libpcsclite1 1.8.23-3 armhf -libperl5.26 5.26.2-7 armhf +libpcsclite1 1.8.24-1 armhf +libperl5.26 5.26.2-7+b1 armhf -libproxy1v5 0.4.15-1 armhf -libpsl5 0.20.2-1 armhf -libpulse0 12.0-1+rpi1 armhf +libproxy1v5 0.4.15-3 armhf +libpsl5 0.20.2-2 armhf +libpulse0 12.2-2+b2 armhf -libpython3-dev 3.6.5-3 armhf -libpython3-stdlib 3.6.5-3 armhf +libpython3-dev 3.6.6-1 armhf +libpython3-stdlib 3.6.6-1 armhf -libraspberrypi-bin 1.20180817-1 armhf -libraspberrypi-dev 1.20180817-1 armhf -libraspberrypi-doc 1.20180817-1 armhf -libraspberrypi0 1.20180817-1 armhf +libraspberrypi-bin 1.20180924-1 armhf +libraspberrypi-dev 1.20180924-1 armhf +libraspberrypi-doc 1.20180924-1 armhf +libraspberrypi0 1.20180924-1 armhf -libroar2 1.0~beta11-10 armhf +libroar2 1.0~beta11-11 armhf -libruby2.5 2.5.1-5 armhf +libruby2.5 2.5.1-5+b1 armhf -libsasl2-2 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules 2.1.27~101-g0780600+dfsg-3.1 armhf -libsasl2-modules-db 2.1.27~101-g0780600+dfsg-3.1 armhf +libsasl2-2 2.1.27~rc8-1 armhf +libsasl2-modules 2.1.27~rc8-1 armhf +libsasl2-modules-db 2.1.27~rc8-1 armhf -libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libsdl2-2.0-0 2.0.8+dfsg1-4 armhf -libsensors4 1:3.4.0-4+b1 armhf +libsensors4 1:3.4.0-4+b2 armhf -libshine3 3.1.1-2 armhf +libshine3 3.1.1-2+b1 armhf -libsigc++-2.0-0v5 2.10.0-2 armhf +libsigc++-2.0-0v5 2.10.0-2.1 armhf -libsoup-gnome2.4-1 2.62.2-2 armhf -libsoup2.4-1 2.62.2-2 armhf +libsoup-gnome2.4-1 2.64.1-3 armhf +libsoup2.4-1 2.64.1-3 armhf -libsqlite3-0 3.24.0-1 armhf +libsqlite3-0 3.25.2-1 armhf -libstdc++-8-dev 8.2.0-4+rpi1 armhf -libstdc++6 8.2.0-4+rpi1 armhf +libstdc++-8-dev 8.2.0-7+rpi1 armhf +libstdc++6 8.2.0-7+rpi1 armhf -libswresample3 7:4.0.2-1+b2 armhf +libswresample3 7:4.0.2-2+b2 armhf -libsystemd0 239-7 armhf +libsystemd0 239-10+rpi1 armhf -libtdb1 1.3.15-4 armhf -libtevent0 0.9.36-2 armhf +libtdb1 1.3.16-1 armhf +libtevent0 0.9.37-1 armhf -libtirpc1 0.2.5-1.2 armhf +libtirpc1 0.2.5-1.3 armhf -libubsan1 8.2.0-4+rpi1 armhf +libubsan1 8.2.0-7+rpi1 armhf -libudev1 239-7 armhf +libudev1 239-10+rpi1 armhf -libuv1 1.22.0-3 armhf +libuv1 1.23.1-1 armhf -libva-drm2 2.2.0-1 armhf -libva-x11-2 2.2.0-1 armhf -libva2 2.2.0-1 armhf +libva-drm2 2.3.0-2 armhf +libva-x11-2 2.3.0-2 armhf +libva2 2.3.0-2 armhf -libwayland-client0 1.15.0-2 armhf -libwayland-cursor0 1.15.0-2 armhf -libwayland-egl1 1.15.0-2 armhf +libwayland-client0 1.16.0-1 armhf +libwayland-cursor0 1.16.0-1 armhf +libwayland-egl1 1.16.0-1 armhf -libwww-perl 6.35-2 all +libwww-perl 6.36-1 all -libx11-6 2:1.6.6-1 armhf -libx11-data 2:1.6.6-1 all +libx11-6 2:1.6.7-1 armhf +libx11-data 2:1.6.7-1 all -libx11-xcb1 2:1.6.6-1 armhf +libx11-xcb1 2:1.6.7-1 armhf +libx264-155 2:0.155.2917+git0a84d98-2+rpi1 armhf -libxapian30 1.4.7-2 armhf +libx265-165 2.9-3 armhf +libxapian30 1.4.7-4 armhf -libxcb-dri2-0 1.13-3 armhf -libxcb-dri3-0 1.13-3 armhf -libxcb-glx0 1.13-3 armhf +libxcb-dri2-0 1.13.1-1 armhf +libxcb-dri3-0 1.13.1-1 armhf +libxcb-glx0 1.13.1-1 armhf -libxcb-present0 1.13-3 armhf -libxcb-render0 1.13-3 armhf -libxcb-shape0 1.13-3 armhf -libxcb-shm0 1.13-3 armhf -libxcb-sync1 1.13-3 armhf +libxcb-present0 1.13.1-1 armhf +libxcb-render0 1.13.1-1 armhf +libxcb-shape0 1.13.1-1 armhf +libxcb-shm0 1.13.1-1 armhf +libxcb-sync1 1.13.1-1 armhf -libxcb-xfixes0 1.13-3 armhf -libxcb1 1.13-3 armhf +libxcb-xfixes0 1.13.1-1 armhf +libxcb1 1.13.1-1 armhf -libxss1 1:1.2.2-1 armhf +libxss1 1:1.2.3-1 armhf -libyajl2 2.1.0-2 armhf +libyajl2 2.1.0-3 armhf -libzvbi-common 0.2.35-13 all -libzvbi0 0.2.35-13 armhf +libzvbi-common 0.2.35-14 all +libzvbi0 0.2.35-14 armhf -locales 2.27-5+rpi1 all +locales 2.27-6+rpi1 all -man-db 2.8.4-2 armhf +man-db 2.8.4-2+b1 armhf -multiarch-support 2.27-5+rpi1 armhf +multiarch-support 2.27-6+rpi1 armhf -nano 2.9.8-1 armhf +nano 3.1-1 armhf -net-tools 1.60+git20161116.90da8a0-3 armhf +net-tools 1.60+git20180626.aebd88e-1 armhf -nginx-full 1.14.0-1 armhf +nginx-full 1.14.0-1+b1 armhf -parted 3.2-21 armhf +parted 3.2-22 armhf -perl 5.26.2-7 armhf -perl-base 5.26.2-7 armhf +perl 5.26.2-7+b1 armhf +perl-base 5.26.2-7+b1 armhf -psmisc 23.1-1 armhf +psmisc 23.2-1 armhf -python-apt-common 1.6.2 all +python-apt-common 1.7.0 all -python-cffi-backend 1.11.5-1 armhf +python-cairo 1.16.2-1 armhf +python-cffi-backend 1.11.5-3 armhf -python-gi 3.28.3-1 armhf +python-gi 3.30.1-1 armhf -python-keyring 13.1.0-1 all -python-keyrings.alt 3.0-1 all -python-lxml 4.2.4-1 armhf +python-keyring 15.1.0-1 all +python-keyrings.alt 3.1-1 all +python-lxml 4.2.5-1 armhf -python-newt 0.52.20-6 armhf +python-newt 0.52.20-8 armhf -python-pyicu 2.0.3-1+b1 armhf +python-pyicu 2.1-1 armhf -python3 3.6.5-3 armhf -python3-acme 0.26.0-1 all -python3-apt 1.6.2 armhf +python3 3.6.6-1 armhf +python3-acme 0.27.0-1 all +python3-apt 1.7.0 armhf -python3-certbot 0.26.1-1 all +python3-cairo 1.16.2-1 armhf +python3-certbot 0.27.0-1 all -python3-cffi-backend 1.11.5-1 armhf +python3-cffi-backend 1.11.5-3 armhf -python3-dev 3.6.5-3 armhf +python3-dev 3.6.6-1 armhf -python3-eyed3 0.8.5-1 all +python3-eyed3 0.8.7-1 all -python3-gi 3.28.3-1 armhf +python3-gi 3.30.1-1 armhf -python3-keyring 13.1.0-1 all -python3-keyrings.alt 3.0-1 all +python3-keyring 15.1.0-1 all +python3-keyrings.alt 3.1-1 all -python3-minimal 3.6.5-3 armhf -python3-mock 2.0.0-3 all +python3-minimal 3.6.6-1 armhf +python3-mock 2.0.0-4 all -raspberrypi-bootloader 1.20180817-1 armhf -raspberrypi-kernel 1.20180817-1 armhf +raspberrypi-bootloader 1.20180924-1 armhf +raspberrypi-kernel 1.20180924-1 armhf -rsyslog 8.37.0-2 armhf -ruby 1:2.5.1 armhf +rsyslog 8.38.0-1+b1 armhf +ruby 1:2.5.1+b1 armhf -ruby2.5 2.5.1-5 armhf +ruby2.5 2.5.1-5+b1 armhf -sed 4.5-1 armhf +sed 4.5-2 armhf -shared-mime-info 1.9-2 armhf +shared-mime-info 1.10-1 armhf -systemd 239-7 armhf -systemd-sysv 239-7 armhf -sysvinit-utils 2.88dsf-59.10 armhf +systemd 239-10+rpi1 armhf +systemd-sysv 239-10+rpi1 armhf +sysvinit-utils 2.88dsf-59.11 armhf -tasksel 3.45 all -tasksel-data 3.45 all +tasksel 3.46 all +tasksel-data 3.46 all -udev 239-7 armhf +udev 239-10+rpi1 armhf -va-driver-all 2.2.0-1 armhf +va-driver-all 2.3.0-2 armhf -vnstat 1.18-1 armhf +vnstat 1.18-2 armhf -whiptail 0.52.20-6 armhf +whiptail 0.52.20-8 armhf -wireless-tools 30~pre9-12 armhf +wireless-tools 30~pre9-13 armhf -zsh 5.6-1 armhf -zsh-common 5.6-1 all +zsh 5.6.2-3 armhf +zsh-common 5.6.2-3 all
6 years ago
[wasapi]
committing changes in /etc after apt run Package changes: +freepats 20060219-1 all +libadplug-2.2.1-0v5 2.2.1+dfsg3-0.4 armhf +libao-common 1.2.2+20180113-1 all +libao4 1.2.2+20180113-1 armhf +libaudiofile1 0.3.6-4 armhf +libavcodec58 7:4.0.2-1+b2 armhf +libavformat58 7:4.0.2-1+b2 armhf +libavutil56 7:4.0.2-1+b2 armhf +libbinio1v5 1.4+dfsg1-6 armhf +libcdio-cdda2 10.2+0.94+2-4 armhf +libcdio-paranoia2 10.2+0.94+2-4 armhf +libcdio18 2.0.0-2 armhf +libcodec2-0.8.1 0.8.1-1 armhf +libfaad2 2.8.8-1 armhf +libfluidsynth1 1.1.11-1 armhf +libid3tag0 0.15.1b-13 armhf +libiso9660-11 2.0.0-2 armhf +libjack-jackd2-0 1.9.12~dfsg-2 armhf +libjansson4 2.11-1 armhf +libldb1 2:1.4.0+really1.3.6-1 armhf +libmad0 0.15.1b-9 armhf +libmikmod3 3.3.11.1-4 armhf +libmms0 0.6.4-3 armhf +libmodplug1 1:0.8.9.0-2 armhf +libmpcdec6 2:0.1~r495-1+b1 armhf +libmpdclient2 2.13-1 armhf +libnfs11 2.0.0-1~exp1 armhf +libopenal-data 1:1.18.2-3 all +libopenal1 1:1.18.2-3+b1 armhf +libroar2 1.0~beta11-10 armhf +libsdl2-2.0-0 2.0.8+dfsg1-1+b1 armhf +libshout3 2.4.1-2 armhf +libsidplayfp4 1.8.8-1 armhf +libsmbclient 2:4.8.5+dfsg-1 armhf +libsndio7.0 1.5.0-2 armhf +libspeexdsp1 1.2~rc1.2-1 armhf -libssh-gcrypt-4 0.8.0~20170825.94fa1e38-1 armhf +libssh-gcrypt-4 0.8.1-1 armhf +libswresample3 7:4.0.2-1+b2 armhf +libtdb1 1.3.15-4 armhf +libtevent0 0.9.36-2 armhf +libupnp6 1:1.6.24-4 armhf -libwbclient0 2:4.8.2+dfsg-2 armhf +libwayland-client0 1.15.0-2 armhf +libwayland-cursor0 1.15.0-2 armhf +libwayland-egl1 1.15.0-2 armhf +libwbclient0 2:4.8.5+dfsg-1 armhf +libwildmidi-config 0.4.2-1 all +libwildmidi2 0.4.2-1 armhf +libxkbcommon0 0.8.2-1 armhf +libyajl2 2.1.0-2 armhf +libzzip-0-13 0.13.62-3.1 armhf +mpc 0.30-1 armhf +mpd 0.20.21-1 armhf +python-talloc 2.1.14-1 armhf +samba-libs 2:4.8.5+dfsg-1 armhf
6 years ago
##
## DirectSound backend stuff
##
[dsound]
##
## Windows Multimedia backend stuff
##
[winmm]
##
## PortAudio backend stuff
##
[port]
## device: (global)
# Sets the device index for output. Negative values will use the default as
# given by PortAudio itself.
#device = -1
## capture: (global)
# Sets the device index for capture. Negative values will use the default as
# given by PortAudio itself.
#capture = -1
##
## Wave File Writer stuff
##
[wave]
## file: (global)
# Sets the filename of the wave file to write to. An empty name prevents the
# backend from opening, even when explicitly requested.
# THIS WILL OVERWRITE EXISTING FILES WITHOUT QUESTION!
#file =
## bformat: (global)
# Creates AMB format files using first-order ambisonics instead of a standard
# single- or multi-channel .wav file.
#bformat = false