jmuxer 2.1.1 → 2.1.2
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/.idea/codeStyles/Project.xml +13 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/copilot.data.migration.agent.xml +6 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/jmuxer.iml +9 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/README.md +1 -4
- package/package.json +2 -2
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<component name="ProjectCodeStyleConfiguration">
|
|
2
|
+
<code_scheme name="Project" version="173">
|
|
3
|
+
<JSCodeStyleSettings version="0">
|
|
4
|
+
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
|
5
|
+
<option name="USE_DOUBLE_QUOTES" value="false" />
|
|
6
|
+
<option name="FORCE_QUOTE_STYlE" value="true" />
|
|
7
|
+
</JSCodeStyleSettings>
|
|
8
|
+
<codeStyleSettings language="JavaScript">
|
|
9
|
+
<option name="ALIGN_MULTILINE_PARAMETERS" value="false" />
|
|
10
|
+
<option name="ALIGN_MULTILINE_FOR" value="false" />
|
|
11
|
+
</codeStyleSettings>
|
|
12
|
+
</code_scheme>
|
|
13
|
+
</component>
|
package/.idea/jmuxer.iml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="JAVA_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
4
|
+
<exclude-output />
|
|
5
|
+
<content url="file://$MODULE_DIR$" />
|
|
6
|
+
<orderEntry type="inheritedJdk" />
|
|
7
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
8
|
+
</component>
|
|
9
|
+
</module>
|
package/.idea/misc.xml
ADDED
package/.idea/vcs.xml
ADDED
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[](https://github.com/samirkumardas/jmuxer/actions/workflows/pages/pages-build-deployment)
|
|
2
|
-

|
|
3
3
|

|
|
4
4
|
|
|
5
5
|
jMuxer
|
|
@@ -215,9 +215,6 @@ A distribution version is available inside *dist* directory. However, if you nee
|
|
|
215
215
|
3. npm install
|
|
216
216
|
4. npm run build OR npm run pro
|
|
217
217
|
|
|
218
|
-
Support
|
|
219
|
-
-----------
|
|
220
|
-
If the project helps you, [buy me a cup of coffee!](https://www.paypal.com/cgi-bin/webscr?cmd=_donations¤cy_code=USD&business=samir@ascendtechnologies.net&item_name=donation%20for%20jMuxer)
|
|
221
218
|
|
|
222
219
|
Credits
|
|
223
220
|
-----------
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jmuxer",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "jMuxer - a simple javascript mp4 muxer for non-standard streaming communications protocol",
|
|
5
5
|
"main": "dist/jmuxer.min.js",
|
|
6
6
|
"scripts": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
],
|
|
28
28
|
"repository": {
|
|
29
29
|
"type": "git",
|
|
30
|
-
"url": "
|
|
30
|
+
"url": "git@github.com:webstream-labs/jmuxer.git"
|
|
31
31
|
},
|
|
32
32
|
"author": "Samir Das",
|
|
33
33
|
"devDependencies": {
|