diff --git a/VERSION b/VERSION index 2725e5148..509e47428 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.2-build14 +2.0.2-build15 diff --git a/docs/kometa/install/unraid.md b/docs/kometa/install/unraid.md index a0b4e6887..d03940c8e 100644 --- a/docs/kometa/install/unraid.md +++ b/docs/kometa/install/unraid.md @@ -137,7 +137,7 @@ First, make a copy of the template: Now open the copy in an editor on the machine of your choice: {% - include-markdown "./wt/wt-editor.md" + include-markdown "./wt/wt-editor-unraid.md" %} {% @@ -149,7 +149,7 @@ Now open the copy in an editor on the machine of your choice: Save the file: {% - include-markdown "./wt/wt-save.md" + include-markdown "./wt/wt-save-unraid.md" %} Then run the script again: @@ -183,13 +183,13 @@ So let's run the script and see this happen: ### Setting up a collection file and creating a sample collection. {% - include-markdown "./wt/wt-05-local-file.md" + include-markdown "./wt/wt-05-local-file-unraid.md" %} Save the file: {% - include-markdown "./wt/wt-save.md" + include-markdown "./wt/wt-save-unraid.md" %} Then run the script again: @@ -211,7 +211,7 @@ Then run the script again: Save the file: {% - include-markdown "./wt/wt-save.md" + include-markdown "./wt/wt-save-unraid.md" %} Then run the script again: diff --git a/docs/kometa/install/wt/wt-05-local-file-unraid.md b/docs/kometa/install/wt/wt-05-local-file-unraid.md new file mode 100644 index 000000000..45d6a0ba5 --- /dev/null +++ b/docs/kometa/install/wt/wt-05-local-file-unraid.md @@ -0,0 +1,46 @@ +If the default collection files do not allow you to create the collections you want, you can define your own collections in your own collection files to do whatever you like within the capabilities of Kometa. We will create a simple collection that will contain 20 comedy movies released since 2012. + +First, open the collection file [this will create the file if it doesn't already exist]: + +=== ":fontawesome-brands-linux: unRAID" + + [type this into your Kometa `>_Console`] + + ``` + nano "config/Movies.yml" + ``` + + +In this file, add the following, exactly as it is shown here; remember that spacing is significant in YAML files: + +```yaml +collections: + Recent Comedy: + plex_search: + all: + genre: Comedy + year.gte: 2012 + limit: 20 +``` + +Save the file: + +{% + include-markdown "./wt-save-unraid.md" +%} + +Next, add a reference to this file to your config file. + +Open the config file again and add the last line shown below: + +```yaml +libraries: + All The Movies: + collection_files: + - default: basic + - default: imdb + # see the wiki for how to use local files, folders, URLs, or files from git + - file: config/Movies.yml ## <<< ADD THIS LINE +``` + +That line needs to match the path you used when you created the file a moment ago. If you are copy-pasting these commands, it does. diff --git a/docs/kometa/install/wt/wt-05-local-file.md b/docs/kometa/install/wt/wt-05-local-file.md index b00385cfc..9fb11b114 100644 --- a/docs/kometa/install/wt/wt-05-local-file.md +++ b/docs/kometa/install/wt/wt-05-local-file.md @@ -26,15 +26,6 @@ First, open the collection file [this will create the file if it doesn't already notepad "config\Movies.yml" ``` -=== ":fontawesome-brands-linux: unRAID" - - [type this into your Kometa `>_Console`] - - ``` - nano "config/Movies.yml" - ``` - - In this file, add the following, exactly as it is shown here; remember that spacing is significant in YAML files: ```yaml diff --git a/docs/kometa/install/wt/wt-editor-unraid.md b/docs/kometa/install/wt/wt-editor-unraid.md new file mode 100644 index 000000000..8c9da4eb2 --- /dev/null +++ b/docs/kometa/install/wt/wt-editor-unraid.md @@ -0,0 +1,15 @@ +=== ":fontawesome-brands-linux: unRAID" + + [type this into your Kometa `>_Console`] + + ``` + nano config/config.yml + ``` + + I’m using `nano` here mostly because it’s simpler than any other editor on Linux. + + + You can use any other text editor you wish, provided it saves files as PLAIN TEXT. `vi`, `emacs`, etc. + + +From here on in, when this walkthrough says "open the config file", I mean this `nano` or `notepad` command. **Don't copy the template again**. diff --git a/docs/kometa/install/wt/wt-editor.md b/docs/kometa/install/wt/wt-editor.md index a44feeb9a..d0284c96f 100644 --- a/docs/kometa/install/wt/wt-editor.md +++ b/docs/kometa/install/wt/wt-editor.md @@ -45,18 +45,4 @@ ``` I’m using `notepad` here simply because it’s built into Windows. You can use any other text editor you wish, provided it saves files as PLAIN TEXT. -=== ":fontawesome-brands-linux: unRAID" - - [type this into your Kometa `>_Console`] - - ``` - nano config/config.yml - ``` - - I’m using `nano` here mostly because it’s simpler than any other editor on Linux. - - - You can use any other text editor you wish, provided it saves files as PLAIN TEXT. `vi`, `emacs`, etc. - - From here on in, when this walkthrough says "open the config file", I mean this `nano` or `notepad` command. **Don't copy the template again**. diff --git a/docs/kometa/install/wt/wt-save-unraid.md b/docs/kometa/install/wt/wt-save-unraid.md new file mode 100644 index 000000000..e8f4cf661 --- /dev/null +++ b/docs/kometa/install/wt/wt-save-unraid.md @@ -0,0 +1,5 @@ +=== ":fontawesome-brands-linux: unRAID" + + If you're using `nano`, type control-`x`, then `y`, then the enter key. + + diff --git a/docs/kometa/install/wt/wt-save.md b/docs/kometa/install/wt/wt-save.md index bffb24280..f2756834a 100644 --- a/docs/kometa/install/wt/wt-save.md +++ b/docs/kometa/install/wt/wt-save.md @@ -12,9 +12,3 @@ If you're using `notepad`, type control-`s` or choose `Save` from the `File` menu. - -=== ":fontawesome-brands-linux: unRAID" - - If you're using `nano`, type control-`x`, then `y`, then the enter key. - -