Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Myaamori committed May 8, 2021
1 parent aade82e commit 149f90c
Show file tree
Hide file tree
Showing 1,006 changed files with 1,288 additions and 1,052 deletions.
1 change: 1 addition & 0 deletions docs/subkt/alltypes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ See https://github.com/Myaamori/SubKt/ for more information.
| [myaa.subkt.tasks.utils.MkvContainerPropertiesProgram](../myaa.subkt.tasks.utils/-mkv-container-properties-program/index.md) | |
| [myaa.subkt.tasks.utils.MkvGlobalTag](../myaa.subkt.tasks.utils/-mkv-global-tag/index.md) | |
| [myaa.subkt.tasks.utils.MkvInfo](../myaa.subkt.tasks.utils/-mkv-info/index.md) | |
| [myaa.subkt.tasks.utils.MkvInfoSerializer](../myaa.subkt.tasks.utils/-mkv-info-serializer/index.md) | |
| [myaa.subkt.tasks.utils.MkvTrack](../myaa.subkt.tasks.utils/-mkv-track/index.md) | |
| [myaa.subkt.tasks.utils.MkvTrackProperties](../myaa.subkt.tasks.utils/-mkv-track-properties/index.md) | |
| [myaa.subkt.tasks.utils.MkvTrackTag](../myaa.subkt.tasks.utils/-mkv-track-tag/index.md) | |
Expand Down
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/events-header.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# eventsHeader

`const val eventsHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L92)
`const val eventsHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L92)
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# events

`val events: `[`EventSection`](../-event-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L128)
`val events: `[`EventSection`](../-event-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L128)

The [EventSection](../-event-section/index.md) of the file.

2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/extra-data-header.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# extraDataHeader

`const val extraDataHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L93)
`const val extraDataHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L93)
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/file.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# file

`val file: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L84)
`val file: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L84)

The file to parse.

2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# ASSFile

`class ASSFile` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L84)
`class ASSFile` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L84)

Represents an ASS file. If provided, will parse the given file.

Expand Down
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/line-pattern.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# linePattern

`val linePattern: `[`Regex`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-regex/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L87)
`val linePattern: `[`Regex`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-regex/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L87)
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/parse.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# parse

`fun parse(file: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L141)
`fun parse(file: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L141)

Parse the given ASS file and add the sections and their containing lines to this instance.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# projectGarbageHeader

`const val projectGarbageHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L90)
`const val projectGarbageHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L90)
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/project-garbage.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# projectGarbage

`val projectGarbage: `[`AegisubProjectGarbageSection`](../-aegisub-project-garbage-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L116)
`val projectGarbage: `[`AegisubProjectGarbageSection`](../-aegisub-project-garbage-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L116)

The [AegisubProjectGarbageSection](../-aegisub-project-garbage-section/index.md) of the file.

Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# scriptInfoHeader

`const val scriptInfoHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L89)
`const val scriptInfoHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L89)
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/script-info.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# scriptInfo

`val scriptInfo: `[`ScriptInfoSection`](../-script-info-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L110)
`val scriptInfo: `[`ScriptInfoSection`](../-script-info-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L110)

The [ScriptInfoSection](../-script-info-section/index.md) of the file.

2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/section-pattern.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# sectionPattern

`val sectionPattern: `[`Regex`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-regex/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L86)
`val sectionPattern: `[`Regex`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-regex/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L86)
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/sections.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# sections

`val sections: `[`MutableMap`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`Section`](../-section/index.md)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L100)
`val sections: `[`MutableMap`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`Section`](../-section/index.md)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L100)

A map containing the sections of this ASS file, with the names of
the sections as they appear in the file as the keys.
Expand Down
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/serialize.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# serialize

`fun serialize(includeScriptInfo: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = true, includeProjectGarbage: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = true, includeStyles: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = true, includeEvents: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = true, includeExtraData: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = true): `[`Sequence`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/-sequence/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L216)
`fun serialize(includeScriptInfo: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = true, includeProjectGarbage: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = true, includeStyles: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = true, includeEvents: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = true, includeExtraData: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = true): `[`Sequence`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/-sequence/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L218)

Returns a sequence of serialized lines, each ending with a newline.
The sequence starts with the UTF-8 BOM, which should always be written first
Expand Down
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/styles-header.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# stylesHeader

`const val stylesHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L91)
`const val stylesHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L91)
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-file/styles.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# styles

`val styles: `[`StyleSection`](../-style-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L122)
`val styles: `[`StyleSection`](../-style-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L122)

The [StyleSection](../-style-section/index.md) of the file.

2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-serializer/deserialize.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# deserialize

`abstract fun deserialize(s: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`T`](index.md#T) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L703)
`abstract fun deserialize(s: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`T`](index.md#T) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L705)
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-serializer/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# ASSSerializer

`interface ASSSerializer<T>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L702)
`interface ASSSerializer<T>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L704)

### Functions

Expand Down
2 changes: 1 addition & 1 deletion docs/subkt/myaa.subkt.ass/-a-s-s-serializer/serialize.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# serialize

`abstract fun serialize(a: `[`T`](index.md#T)`): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L705)
`abstract fun serialize(a: `[`T`](index.md#T)`): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L707)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# activeLine

`val activeLine: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L862)
`val activeLine: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L864)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# audioFile

`var audioFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L846)
`var audioFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L848)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# automationScripts

`var automationScripts: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L838)
`var automationScripts: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L840)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# exportEncoding

`var exportEncoding: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L842)
`var exportEncoding: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L844)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# exportFilters

`var exportFilters: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L840)
`var exportFilters: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L842)
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# AegisubProjectGarbageSection

`class AegisubProjectGarbageSection : `[`KeyValSection`](../-key-val-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L836)
`class AegisubProjectGarbageSection : `[`KeyValSection`](../-key-val-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L838)

Represents an Aegisub project garbage section.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# keyframesFile

`var keyframesFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L852)
`var keyframesFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L854)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# lastStyleStorage

`var lastStyleStorage: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L844)
`var lastStyleStorage: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L846)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# scrollPosition

`var scrollPosition: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L860)
`var scrollPosition: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L862)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# timecodesFile

`var timecodesFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L850)
`var timecodesFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L852)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# videoARMode

`var videoARMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L854)
`var videoARMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L856)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# videoARValue

`var videoARValue: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L856)
`var videoARValue: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L858)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# videoFile

`var videoFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L848)
`var videoFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L850)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# videoPosition

`var videoPosition: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L864)
`var videoPosition: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L866)
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# videoZoomPercent

`var videoZoomPercent: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L858)
`var videoZoomPercent: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L860)
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# deserialize

`fun deserialize(s: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Collisions`](../-collisions/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.13/src/main/kotlin/myaa/subkt/ass/parser.kt#L757)
`fun deserialize(s: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Collisions`](../-collisions/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L759)

Overrides [ASSSerializer.deserialize](../-a-s-s-serializer/deserialize.md)

Loading

0 comments on commit 149f90c

Please sign in to comment.