This commit is contained in:
Frank Skare
2020-04-22 19:33:58 +02:00
parent bafc09a948
commit e985047a54
2 changed files with 6 additions and 5 deletions

View File

@@ -2,7 +2,8 @@
5.4.4.5 Beta (not yet released) 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 5.4.4.4 Beta
============ ============

View File

@@ -20,7 +20,7 @@ Table of contents
* [Scripting](#scripting) * [Scripting](#scripting)
* [Extensions](#extensions) * [Extensions](#extensions)
* [Color Theme](#color-theme) * [Color Theme](#color-theme)
* [Hidden and secret features](#hidden-and-secret-features) * [Advanced Features](#advanced-features)
* [Differences](#differences) * [Differences](#differences)
* [Context Menu](#context-menu) * [Context Menu](#context-menu)
+ [Open > Open Files](#open--open-files) + [Open > Open Files](#open--open-files)
@@ -316,13 +316,13 @@ File Type: `cs`
Location: `<config folder>\scripts-cs` Location: `<config folder>\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. 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) [Example Scripts](scripts/examples)