Skip to content

Commit

Permalink
Release 4.4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Yahweasel committed Aug 22, 2023
1 parent 1fbab5e commit fb48f03
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# not the generated version!

LIBAVJS_VERSION_SUFFIX=
LIBAVJS_VERSION=4.3.6.0$(LIBAVJS_VERSION_SUFFIX)
LIBAVJS_VERSION=4.4.6.0$(LIBAVJS_VERSION_SUFFIX)
EMCC=emcc
MINIFIER=node_modules/.bin/uglifyjs -m
OPTFLAGS=-Oz
Expand Down
2 changes: 1 addition & 1 deletion Makefile.m4
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ changequote(`[[[', `]]]')
# not the generated version!

LIBAVJS_VERSION_SUFFIX=
LIBAVJS_VERSION=4.3.6.0$(LIBAVJS_VERSION_SUFFIX)
LIBAVJS_VERSION=4.4.6.0$(LIBAVJS_VERSION_SUFFIX)
EMCC=emcc
MINIFIER=node_modules/.bin/uglifyjs -m
OPTFLAGS=-Oz
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ of using libav.js from a CDN:
<!doctype html>
<html>
<body>
<script type="text/javascript">LibAV = {base: "https://unpkg.com/libav.js@4.3.6/dist"};</script>
<script type="text/javascript" src="https://unpkg.com/libav.js@4.3.6/dist/libav-4.3.6.0-default.js"></script>
<script type="text/javascript">LibAV = {base: "https://unpkg.com/libav.js@4.4.6/dist"};</script>
<script type="text/javascript" src="https://unpkg.com/libav.js@4.4.6/dist/libav-4.4.6.0-default.js"></script>
<script type="text/javascript">(async function() {
const libav = await LibAV.LibAV({noworker: true});
await libav.writeFile("tmp.opus", new Uint8Array(
Expand All @@ -64,7 +64,7 @@ Here's a better example, using libav.js locally:
<!doctype html>
<html>
<body>
<script type="text/javascript" src="libav-4.3.6.0-default.js"></script>
<script type="text/javascript" src="libav-4.4.6.0-default.js"></script>
<script type="text/javascript">(async function() {
const libav = await LibAV.LibAV();
await libav.writeFile("tmp.opus", new Uint8Array(
Expand Down
2 changes: 1 addition & 1 deletion demo/demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<body>
<script type="text/javascript">(async function() {
try {
const version = "4.3.6.0";
const version = "4.4.6.0";

const dce = document.createElement.bind(document);
const main = dce("div");
Expand Down
2 changes: 1 addition & 1 deletion old-tests/libav.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const version = "4.3.6.0";
const version = "4.4.6.0";

function load(variant = "default") {
const opts = {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "libav.js",
"version": "4.3.6",
"version": "4.4.6",
"description": "A compilation of the libraries associated with handling audio and video in ffmpeg—libavformat, libavcodec, libavfilter, libavutil and libswresample—for WebAssembly and asm.js, and thus the web.",
"main": "dist/libav-4.3.6.0-default.js",
"main": "dist/libav-4.4.6.0-default.js",
"types": "dist/libav.types.d.ts",
"directories": {
"test": "tests"
Expand Down
2 changes: 1 addition & 1 deletion tests/harness.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ LibAVTestHarness = {
data: {},
utils: {},

libAVVersion: "4.3.6.0",
libAVVersion: "4.4.6.0",
libAVVariant: null,
libAVOpts: null,
libav: null,
Expand Down

0 comments on commit fb48f03

Please sign in to comment.