Merge branch 'master' of https://github.com/stax76/mpv.net
This commit is contained in:
@@ -1,4 +1,8 @@
|
|||||||
using System;
|
// This extension writes a rating to the filename of rated videos when mpv.net shuts down.
|
||||||
|
|
||||||
|
// The input.conf defaults contain key bindings for this extension to set ratings.
|
||||||
|
|
||||||
|
using System;
|
||||||
using System.ComponentModel.Composition;
|
using System.ComponentModel.Composition;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
@@ -58,4 +62,4 @@ namespace RatingExtension // the assembly name must end with 'Extension'
|
|||||||
Msg.Show("Rating Extension", "This extension writes a rating to the filename of rated videos when mpv.net shuts down.\n\nThe input.conf defaults contain key bindings for this extension to set ratings.");
|
Msg.Show("Rating Extension", "This extension writes a rating to the filename of rated videos when mpv.net shuts down.\n\nThe input.conf defaults contain key bindings for this extension to set ratings.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
//'This extension implements the C# scripting feature of mpv.net which
|
// This extension implements the C# scripting feature of mpv.net which
|
||||||
// is based on CS-Script (https://www.cs-script.net).
|
// is based on CS-Script (https://www.cs-script.net).
|
||||||
|
|
||||||
// Furthermore the extension is used to code and debug scripts
|
// Furthermore I use this extension to code and debug scripts
|
||||||
// because writing script code without debugger is not an option :-)
|
// because writing script code without debugger is not much fun.
|
||||||
|
|
||||||
|
// Once the code was developed and debugged, I move the code
|
||||||
|
// from the extension to a standalone script.
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.ComponentModel.Composition;
|
using System.ComponentModel.Composition;
|
||||||
@@ -44,4 +47,4 @@ namespace ScriptingExtension // the file name of extensions must end with 'Exten
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user