Skip to content

Releases: Electrostat-Lab/Jector

1.0.0-pre-alpha version

30 Jul 22:48
Compare
Choose a tag to compare
Pre-release

What's Changed

  • jector-api: javadoc and code enhancements by @Scrappers-glitch in #1
  • jector-publish: GitHub CI/CD publish-scripts by @Scrappers-glitch in #2
  • jector-monkey: base API by @Scrappers-glitch in #4

Full Changelog: https://github.com/Software-Hardware-Codesign/Jector/commits/1.0.0-pre-alpha

In order to utilize the Jector Framework in your project, add the API to your dependencies and make sure mavenCentral() is defined:

repositories {
    mavenCentral()
}
dependencies {
    implementation "io.github.software-hardware-codesign:jector:1.0.0-pre-alpha"
}

In order to utilize the Jector-Monkey API in your project, make sure Jme dependencies and Jector-Monkey are defined:

repositories {
    mavenCentral()
}
dependencies {
    implementation "io.github.software-hardware-codesign:jector:1.0.0-pre-alpha"
    implementation "io.github.software-hardware-codesign:jector-monkey:1.0.0-pre-alpha"
    /* JME-3 desktop dependencies (replace with android and android-native) */
    implementation "org.jmonkeyengine:jme3-core:3.6.1-stable"
    implementation "org.jmonkeyengine:jme3-desktop:3.6.1-stable"
    implementation "org.jmonkeyengine:jme3-lwjgl3:3.6.1-stable"
}

incubator-version-2

29 Jul 10:09
Compare
Choose a tag to compare
incubator-version-2 Pre-release
Pre-release

Description

This is the second incubator version featuring a jMonkeyEngine specialized API, the jector-monkey.

What's Changed

  • jector-api: javadoc and code enhancements by @Scrappers-glitch in #1
  • jector-publish: GitHub CI/CD publish-scripts by @Scrappers-glitch in #2

Full Changelog: https://github.com/Software-Hardware-Codesign/Jector/commits/incubator-2

In order to utilize in your project, add the API to your dependencies and make sure mavenCentral() is defined:

repositories {
    mavenCentral()
}
dependencies {
    implementation "io.github.software-hardware-codesign:jector:incubator-2"
    implementation "io.github.software-hardware-codesign:jector-monkey:incubator-2"
}

incubator-version

26 Jul 22:49
Compare
Choose a tag to compare
incubator-version Pre-release
Pre-release

What's Changed

Warning: This is an incubator version, not meant for production use, please report any bugs.

  • jector-api: javadoc and code enhancements by @Scrappers-glitch in #1

Full Changelog: https://github.com/Software-Hardware-Codesign/Jector/commits/incubator

In order to utilize in your project, add the API to your dependencies and make sure mavenCentral() is defined:

repositories {
    mavenCentral()
}
dependencies {
    implementation "io.github.software-hardware-codesign:jector:incubator"
}