Skip to content

Commit

Permalink
feat: first draft implementation of the VBAN protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
SystemDisc committed Oct 23, 2018
1 parent bae7786 commit 6bd3321
Show file tree
Hide file tree
Showing 16 changed files with 8,159 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .babelrc
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"]
}
7 changes: 7 additions & 0 deletions .editorconfig
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/dist/
/lib/

# Logs
logs
*.log
Expand Down
12 changes: 11 additions & 1 deletion README.md
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 added assets/.empty
Empty file.
Binary file added assets/icons/24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions global.d.ts
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;
}
Loading

0 comments on commit 6bd3321

Please sign in to comment.