@@ -12,7 +12,7 @@ engine. To begin, follow these steps:
12
12
1 . Create a new file in the ` export-template ` directory with the ** .jinja** extension (e.g., ` MyTemplate.jinja ` ). The
13
13
location of the ` export-template ` directory varies depending on your operating system:
14
14
* 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 `
16
16
1 . Edit the template
17
17
1 . Restart mpvQC
18
18
@@ -24,26 +24,26 @@ Alongside default Jinja expressions, mpvQC introduces the following **Properties
24
24
25
25
## Properties
26
26
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. |
47
47
48
48
## Filters
49
49
@@ -59,7 +59,7 @@ Alongside default Jinja expressions, mpvQC introduces the following **Properties
59
59
60
60
Internally, mpvQC utilizes the following template to save Quality Control (QC) documents:
61
61
62
- ``` jinja
62
+ ```
63
63
[FILE]
64
64
{{ 'date : ' + date + '\n' if write_date else '' -}}
65
65
{{ 'generator : ' + generator + '\n' if write_generator else '' -}}
0 commit comments