@@ -12,7 +12,7 @@ engine. To begin, follow these steps:
12121 . Create a new file in the ` export-template ` directory with the ** .jinja** extension (e.g., ` MyTemplate.jinja ` ). The
1313 location of the ` export-template ` directory varies depending on your operating system:
1414 * On Windows: ` appdata/export-templates `
15- * On Linux (Flatpak) : ` ~/.var/app/com .github.mpvqc.mpvQC/config/mpvQC/export-templates `
15+ * On Linux: ` ~/.var/app/io .github.mpvqc.mpvQC/config/mpvQC/export-templates `
16161 . Edit the template
17171 . Restart mpvQC
1818
@@ -24,26 +24,26 @@ Alongside default Jinja expressions, mpvQC introduces the following **Properties
2424
2525## Properties
2626
27- | Name | Type | Description |
28- | --------------------| ----------------| ------------------------------------------------------------------------------------------------------------------------------- |
29- | | |   ; |
30- | ` write_date ` | ` bool ` | Indicates whether the current date and time should be included in reports. |
31- | ` date ` | ` str ` | Date and time formatted according to the user's selected language (QLocale.FormatType.LongFormat). |
32- | | |   ; |
33- | ` write_generator ` | ` bool ` | Indicates whether the report should include the generator name and version (e.g., "mpvQC 0.9.0"). |
34- | ` generator ` | ` str ` | The name and version of mpvQC being used. |
35- | | |   ; |
36- | ` write_video_path ` | ` bool ` | Indicates whether the path of the video should be included in reports. |
37- | ` video_path ` | ` str ` | The absolute path of the video file, or an empty string if no video is present. |
38- | ` video_name ` | ` str ` | The name and extension of the video file, or an empty string if no video is present. |
39- | | |   ; |
40- | ` write_nickname ` | ` bool ` | Indicates whether the user's nickname should be included in reports. |
41- | ` nickname ` | ` str ` | The nickname of the person creating the report. |
42- | | |   ; |
43- | ` comments ` | ` list[object] ` | A list of comment objects, each with the following properties: |
44- | | | ` time ` & nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ; ` int ` & nbsp ; Time in seconds. |
45- | | | ` commentType ` & nbsp ; ` str ` & nbsp ; Type of comment. |
46- | | | ` comment ` & nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ; ` str ` & nbsp ; The actual comment. |
27+ | Name | Type | Description |
28+ | --------------------| ----------------| ----------------------------------------------------------------------------------------------------|
29+ | | |   ; |
30+ | ` write_date ` | ` bool ` | Indicates whether the current date and time should be included in reports. |
31+ | ` date ` | ` str ` | Date and time formatted according to the user's selected language (QLocale.FormatType.LongFormat). |
32+ | | |   ; |
33+ | ` write_generator ` | ` bool ` | Indicates whether the report should include the generator name and version (e.g., "mpvQC 0.9.0"). |
34+ | ` generator ` | ` str ` | The name and version of mpvQC being used. |
35+ | | |   ; |
36+ | ` write_video_path ` | ` bool ` | Indicates whether the path of the video should be included in reports. |
37+ | ` video_path ` | ` str ` | The absolute path of the video file, or an empty string if no video is present. |
38+ | ` video_name ` | ` str ` | The name and extension of the video file, or an empty string if no video is present. |
39+ | | |   ; |
40+ | ` write_nickname ` | ` bool ` | Indicates whether the user's nickname should be included in reports. |
41+ | ` nickname ` | ` str ` | The nickname of the person creating the report. |
42+ | | |   ; |
43+ | ` comments ` | ` list[object] ` | A list of comment objects, each with the following properties: |
44+ | | | ` time: int ` : Time in seconds. |
45+ | | | ` commentType: str ` Type of comment. |
46+ | | | ` comment: str ` The actual comment. |
4747
4848## Filters
4949
@@ -59,7 +59,7 @@ Alongside default Jinja expressions, mpvQC introduces the following **Properties
5959
6060Internally, mpvQC utilizes the following template to save Quality Control (QC) documents:
6161
62- ``` jinja
62+ ```
6363[FILE]
6464{{ 'date : ' + date + '\n' if write_date else '' -}}
6565{{ 'generator : ' + generator + '\n' if write_generator else '' -}}
0 commit comments