Skip to content

Commit

Permalink
Bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaker authored Jul 29, 2022
1 parent c367061 commit 0c23977
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 1 deletion.
83 changes: 83 additions & 0 deletions src/filterSpecs.json
Original file line number Diff line number Diff line change
Expand Up @@ -2511,7 +2511,90 @@
}
],
"timelineSupport": true
},




{
"support": "..C",
"category": "Filter Effects",
"name": "feedback",
"filter": "feedback@{fn}",
"kind": "VV->VV",
"desc": "Apply feedback video filter.",
"params": [
{
"n": "x",
"d": 0,
"type": "int",
"range": [
0,
null
],
"inc": 1
},
{
"n": "w",
"d": 0,
"type": "int",
"range": [
0,
null
],
"inc": 1
}
]
},



{
"support": "TSC",
"category": "Filter Effects",
"name": "pixelize",
"filter": "pixelize@{fn}",
"kind": "V->V",
"desc": "Pixelize video.",
"params": [
{
"n": "width",
"d": 16,
"type": "int",
"range": [
1,
1024
],
"inc": 1
},
{
"n": "height",
"d": 16,
"type": "int",
"range": [
1,
1024
],
"inc": 1
},
{
"n": "mode",
"d": "avg",
"type": "cycle",
"inc": 1,
"cycle": [
"avg",
"min",
"max"
]
}
],
"timelineSupport": true
}






]
2 changes: 1 addition & 1 deletion src/webmGeneratorUi.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import numpy as np


RELEASE_NUMVER = 'v3.28.0'
RELEASE_NUMVER = 'v3.29.0'

class WebmGeneratorUi:

Expand Down

0 comments on commit 0c23977

Please sign in to comment.