From 34a856f4653d893d0806a37fbd35a2053781f03f Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 13 Feb 2015 21:46:38 +0100 Subject: command: mark get_property as deprecated Using it just makes no sense. But we're really being nice about this and don't remove it immediately. (cherry picked from commit fd5403cb404ca8fb30c2c6b1f415201bbce40d77) --- DOCS/man/input.rst | 5 ++--- player/command.c | 4 ++++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/DOCS/man/input.rst b/DOCS/man/input.rst index 954520147a..77b13ed518 100644 --- a/DOCS/man/input.rst +++ b/DOCS/man/input.rst @@ -618,9 +618,8 @@ Input Commands that are Possibly Subject to Change unseekable streams that are going out of sync. This command might be changed or removed in the future. -Undocumented commands: ``tv_last_channel`` (TV/DVB only), ``get_property`` (?), -``ao_reload`` (experimental/internal). - +Undocumented commands: ``tv_last_channel`` (TV/DVB only), +``get_property`` (deprecated), ``ao_reload`` (experimental/internal). Hooks ~~~~~ diff --git a/player/command.c b/player/command.c index f20e6050b4..b89f7c0050 100644 --- a/player/command.c +++ b/player/command.c @@ -4329,6 +4329,10 @@ int run_command(MPContext *mpctx, mp_cmd_t *cmd) } MP_INFO(mpctx, "ANS_%s=%s\n", cmd->args[0].v.s, tmp); talloc_free(tmp); + MP_WARN(mpctx, "The get_property command is deprecated and " + "will be removed in the next release.\n" + "Use libmpv or the JSON IPC. " + "(Or print_text, if you must.)"); break; } -- cgit v1.2.3