From e985047a5495f8b047c911904782237530e19e23 Mon Sep 17 00:00:00 2001 From: Frank Skare Date: Wed, 22 Apr 2020 19:33:58 +0200 Subject: [PATCH] manual --- Changelog.md | 3 ++- Manual.md | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 1eb8c6a..cf745e3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,7 +2,8 @@ 5.4.4.5 Beta (not yet released) ============ -- +- all content of the wiki was moved to the [Manual](Manual.md) + 5.4.4.4 Beta ============ diff --git a/Manual.md b/Manual.md index e145ab4..29950d7 100644 --- a/Manual.md +++ b/Manual.md @@ -20,7 +20,7 @@ Table of contents * [Scripting](#scripting) * [Extensions](#extensions) * [Color Theme](#color-theme) -* [Hidden and secret features](#hidden-and-secret-features) +* [Advanced Features](#advanced-features) * [Differences](#differences) * [Context Menu](#context-menu) + [Open > Open Files](#open--open-files) @@ -316,13 +316,13 @@ File Type: `cs` Location: `\scripts-cs` -C# scripting in mpv.net is implemented with a C# [extension](Extensions) and [CS-Script](https://www.cs-script.net/). +C# scripting in mpv.net is implemented with a C# [extension](#extensions) and [CS-Script](https://www.cs-script.net/). mpv.net does not define scripting interfaces but instead exposed its complete internals, there are no compatibility guaranties. -Script code can be written within a C# [extension](Extensions), that way full code completion and debugger support is available. Once the code was developed and debugged, the code can be moved from the extension to a lightweight standalone script. +Script code can be written within a C# [extension](#extensions), that way full code completion and debugger support is available. Once the code was developed and debugged, the code can be moved from the extension to a lightweight standalone script. -The C# scripting host is like [extensions](Extensions) not initialized before media files are loaded. +The C# scripting host is like [extensions](#extensions) not initialized before media files are loaded. [Example Scripts](scripts/examples)