jassub 1.1.12 → 1.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,7 +1,7 @@
1
1
  MIT License
2
2
 
3
3
  Copyright (c) 2021-2022 JASSUB contributors
4
- Copyright (c) 2017-2021 libass contributors
4
+ Copyright (c) 2017-2021 JavascriptSubtitlesOctopus contributors
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
7
7
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -12,13 +12,13 @@ JASSUB is a JS wrapper for <a href="https://github.com/libass/libass">libass</a>
12
12
 
13
13
  ## Features
14
14
  - Supports most SSA/ASS features (everything libass supports)
15
- - Fully compatible with libass' extensions (beware of compatability with other ASS-renderers)
16
- - Supports all OpenType-, TrueType-fonts and embedded fonts (including woff2 fonts)
15
+ - Supports all OpenType, TrueType and WOFF fonts, as well as embedded fonts
16
+ - Capable of using local fonts [(on browsers which support it)](https://caniuse.com/mdn-api_window_querylocalfonts)
17
17
  - Works fast (all the heavy lifting is done by WebAssembly)
18
18
  - Is fully threaded (on browsers which support it, it's capable of working fully on a separate thread)
19
19
  - Is asynchronous (renders when available, not in order of execution)
20
20
  - Benefits from hardware acceleration (uses hardware accelerated canvas API's)
21
- - Doesn't manipulate the DOM
21
+ - Doesn't manipulate the DOM to render subtitles
22
22
  - Easy to use - just connect it to video element
23
23
 
24
24
  ## Isn't this just the same thing as JavascriptSubtitlesOctopus?