Skip to content

Commit

Permalink
chore(release): 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnsgn committed Jan 8, 2024
1 parent ae483c1 commit a6c3e44
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

# [5.0.0](https://github.com/dmnsgn/canvas-record/compare/v5.0.0-beta.0...v5.0.0) (2024-01-08)



# [5.0.0-beta.0](https://github.com/dmnsgn/canvas-record/compare/v4.2.0...v5.0.0-beta.0) (2023-11-04)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "canvas-record",
"version": "5.0.0-beta.0",
"version": "5.0.0",
"description": "Record a video in the browser or directly on the File System from a canvas (2D/WebGL/WebGPU) as MP4, WebM, MKV, GIF, PNG/JPG Sequence using WebCodecs and wasm when available.",
"keywords": [
"canvas",
Expand Down
8 changes: 4 additions & 4 deletions src/encoders/mp4.embed.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,10 @@ var YA = (() => {
B <= 127
? I++
: B <= 2047
? (I += 2)
: B >= 55296 && B <= 57343
? ((I += 4), ++g)
: (I += 3);
? (I += 2)
: B >= 55296 && B <= 57343
? ((I += 4), ++g)
: (I += 3);
}
return I;
}
Expand Down

0 comments on commit a6c3e44

Please sign in to comment.