summaryrefslogtreecommitdiffstats
path: root/DOCS/interface-changes.rst
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-05-22 19:00:13 +0200
committerwm4 <wm4@nowhere>2015-05-22 19:16:42 +0200
commit17b3cab983e8d2d802d01e99602dcc741d417f89 (patch)
tree3eac8e26f94f885a354fc8b72f43918eded0083e /DOCS/interface-changes.rst
parenta165a614150bb6482fe3804d845daa571ccba051 (diff)
downloadmpv-17b3cab983e8d2d802d01e99602dcc741d417f89.tar.bz2
mpv-17b3cab983e8d2d802d01e99602dcc741d417f89.tar.xz
DOCS: add a changelog for option/command/property changes
All these make up both user interface and API. It's a good idea to actually keep track of changes to it.
Diffstat (limited to 'DOCS/interface-changes.rst')
-rw-r--r--DOCS/interface-changes.rst37
1 files changed, 37 insertions, 0 deletions
diff --git a/DOCS/interface-changes.rst b/DOCS/interface-changes.rst
new file mode 100644
index 0000000000..b91cfb8f00
--- /dev/null
+++ b/DOCS/interface-changes.rst
@@ -0,0 +1,37 @@
+Introduction
+============
+
+mpv provides access to its internal via the following means:
+
+- options
+- commands
+- properties
+- events
+
+All of these are important for interfacing both with end users and API users
+(which include Lua scripts, libmpv, and the JSON IPC). As such, they constitute
+a large part of the user interface and APIs.
+
+This document lists changes to them. New changes are added to the top.
+
+Interface changes
+=================
+
+::
+
+ --- mpv 0.10.0 will be released ---
+ - change volume property:
+ - the value 100 is now always "unchanged volume" - with softvol, the
+ range is 0 to --softvol-max, without it is 0-100
+ - the minimum value of --softvol-max is raised to 100
+ - remove vo opengl npot suboption
+ - add relative seeking by percentage to "seek" command
+ - add playlist_shuffle command
+ - add --force-window=immediate
+ - add ao coreaudio change-physical-format suboption
+ - remove vo opengl icc-cache suboption, add icc-cache-dir suboption
+ - add --screenshot-directory
+ - add --screenshot-high-bit-depth
+ - add --screenshot-jpeg-source-chroma
+ - default action for "rescan_external_files" command changes
+ --- mpv 0.9.0 is released ---