-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: first draft implementation of the VBAN protocol
- Loading branch information
1 parent
bae7786
commit 6bd3321
Showing
16 changed files
with
8,159 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"presets": [ | ||
["env", { | ||
"targets": { | ||
"electron": "2.0.12", | ||
"chrome": "61" | ||
} | ||
}] | ||
], | ||
"plugins": ["transform-react-jsx", "transform-object-rest-spread"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
/dist/ | ||
/lib/ | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
# vban-universal | ||
An Electron application for receiving and broadcasting audio using the VBAN protocol | ||
An [Electron.js](https://electronjs.org/) application for receiving and broadcasting audio using the VBAN protocol | ||
|
||
Start by installing dependencies with `npm i`. | ||
|
||
To develop locally, use `npm run dev`. | ||
|
||
To create distributable binaries, use `npm run dist`. | ||
|
||
To create a locally runable binary for your machine, use `npm run pack`. | ||
|
||
To run locally, without extra development tools, use `npm start`. |
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import 'jquery'; | ||
import Popper from 'popper.js'; | ||
import * as Feather from 'feather-icons'; | ||
import { Chart as ChartConstructor } from 'chart.js'; | ||
import electron from 'electron'; | ||
|
||
declare global { | ||
interface Window { | ||
$: JQueryStatic; | ||
jQuery: JQueryStatic; | ||
Popper: typeof Popper; | ||
feather: typeof Feather; | ||
Chart: typeof Chart; | ||
} | ||
|
||
interface Event { | ||
message?: any; | ||
} | ||
|
||
const feather: typeof Feather; | ||
const Chart: typeof ChartConstructor; | ||
|
||
interface NodeModule { | ||
hot: any; | ||
} | ||
} | ||
|
||
declare module 'react-router-redux' { | ||
function syncHistoryWithStore(history, store): any; | ||
} |
Oops, something went wrong.