Git Product home page Git Product logo

vban-api's Introduction

VBAN-API Build Status Javadocs Maven Central Release Development Release

API for the known VB-Audio VBAN Network interface

Usage

Gradle

For importing this project using Gradle, you need to add the following to your build.gradle:

repositories {
    jcenter()
}

dependencies {
    implementation 'de.comroid:vban-api:1.0.1'
}

vban-api's People

Contributors

burdoto avatar dependabot-preview[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

vban-api's Issues

openCommandOutputStream not working, bugfix included

Dont works the method:
VBAN.openCommandOutputStream(address,port).sendData(text)

Bug caused by missing initialization in VBANPacket one parameter constructor.

bugfix: just add one line to the end of constructor

private VBANPacket(VBANPacketHead<T> head) {
    this.head = head;
    this.unfinishedByteArray = new UnfinishedByteArray(MAX_SIZE, true);

unfinishedByteArray.append(head.getBytes());  // appended line
}

Should the library be published in a second Java 8 version for execution speed reasons?

I'm wondering whether I should re-publish a modified version of this library to be fully Java 8 compatible.
This could happen under one of the following circumstances:

  • A second branch with the changes made and a second artifact at de.kaleidox:vban-api-jdk8:#
  • A complete update of the library; this would come with the future incompatibility for Android usage of the VBAN Wrapper, which was the original motivation for using Java 7
  • A second GitHub repository, which seems kinda overkill

Feel free to comment with your thoughts to this!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.