Skip to content
The Jenkins Controller is preparing for shutdown. No new builds can be started.

Changes

#125 (Aug 12, 2023, 3:11:14 PM)

  1. Adopt to GlueGen commit 952e0c1f83c9e0583a97d39988a6ba1428911c8c — Sven Gothel / gitweb
  2. Fix file mods in make/config — Sven Gothel / gitweb
  3. Use GlueGen's SecurityUtil.doPrivileged(..) instead of AccessController, remove dead code — Sven Gothel / gitweb
  4. ALExtImpl: Remove unused imports — Sven Gothel / gitweb
  5. Sound3d.Context: destroy() shall only 'null' thread-local context if this is current; Expose hasALC_thread_local_context to avoid double checks — Sven Gothel / gitweb
  6. Add OpenAL extension AL_SOFT_events using userParam ALCcontext as key for GlueGen JavaCallback — Sven Gothel / gitweb
  7. ALAudioSink: Utilize AL_SOFT_events if available, i.e. use callback for released buffer count instead of polling — Sven Gothel / gitweb
  8. GlueGen cfg files: Remove now unused import java.security.AccessController — Sven Gothel / gitweb
  9. ALContextKey.equals(): Use cached nativeAddress of other item as well. — Sven Gothel / gitweb
  10. ALAudioSink.destroy(): Shutdown alEventCallbackSOFT properly (only if hasAL_SOFT_events, 1st disable all events); growBuffers(): No pre-condition exception for hasAL_SOFT_events — Sven Gothel / gitweb
  11. AL_SOFT_events: Define 'ALCcontext` as `UserParam` type for more clarity — Sven Gothel / gitweb
  12. AudioSystem3D.checkAL*Error(): Close single quote in error message — Sven Gothel / gitweb
  13. ALAudioSink.dequeueBuffer(..): AL_SOFT_events cumulated released buffers is 'sometimes wrong'. Workaround: Query released buffers after receiving event and use minimum. — Sven Gothel / gitweb

#124 (May 23, 2023, 2:30:10 AM)

  1. ALAudioSink: Enhance description re 'AudioFrame' and 'frameDuration'; Drop unused field 'avgFrameDuration'. — Sven Gothel / gitweb
  2. ALAudioSink: Use float in seconds for duration (AudioFormat and 'avgFrameDuration') to avoid losing precision when dealing with stats, averages etc — Sven Gothel / gitweb
  3. ALException: Suppress serial warning — Sven Gothel / gitweb
  4. Sound3D: Further OO wrapper to be used in ALAudioSink: Context locking, ALCcontext recreation, .. — Sven Gothel / gitweb
  5. ALAudioSink: Use and expose Sound3D object, allow user app to deal w/ JOAL/OpenAL easier and reuse Context context locking — Sven Gothel / gitweb
  6. Promote SimpleSineSynth to API (util) from Synth02AL, allowing user to have a simple sound source to test — Sven Gothel / gitweb

#123 (May 20, 2023, 9:17:33 PM)

  1. ALHelpers.getALFormat(..): Drop alGetEnumValue("type") and use 'type' via ALExtConstants directly: Fixes failing al.alGetEnumValue("AL_FORMAT_STEREO_DOUBLE") — Sven Gothel / gitweb
  2. Fix ALAudioSink.dequeueBuffer(): AL_BUFFERS_PROCESSED result is total not accumulative while waiting (not yet dequeueing), ... — Sven Gothel / gitweb

#121 (May 20, 2023, 8:11:36 AM)

  1. Promote ALAudioSink from JOGL to JOAL (Common av classes reside in GlueGen, see gluegen commit 270172bcbd91f96d4a38a3d73e23d744f57a25b8) — Sven Gothel / gitweb
  2. JoalVersion: Accept null ALC instance — Sven Gothel / gitweb
  3. OpenALTest: Drop nonsense LOOPING test on buffer (only applies to a source) — Sven Gothel / gitweb
  4. Manual Demos: Add two simple sine wave synthesizer, Synth02AL may be enhanced to a general synth solution — Sven Gothel / gitweb
  5. ALAudioSink: Add exclusive locking allowing less context management overhead — Sven Gothel / gitweb
  6. ALAudioSink.dequeueBuffer(): wait == true: Fix sleep cycle and use sleep(1) if slept long enough but giving better threading perf for openal-soft — Sven Gothel / gitweb
  7. ALAudioSink.toString(): Show hasALC_thread_local_context value ('tlc') — Sven Gothel / gitweb
  8. make/scripts/tests.sh: Adjust D_ARGS and add X_ARGS for optional FlightRecorder — Sven Gothel / gitweb
  9. ALAudioSink: Enhance using AL_EXT_MCFORMATS (max channels == 8), AL_EXT_FLOAT32, AL_EXT_DOUBLE — Sven Gothel / gitweb
  10. README/index.html: Update Web resources & URLs, add details about audio-backens per platform and contained openal-soft library — Sven Gothel / gitweb
  11. Synth02AL: Fix API doc re reduces latency — Sven Gothel / gitweb
  12. ALAudioSink: Promote to public, be fully functional regarding AudioFormat and OpenAL paremeter. Can be 'plugged' into existing OpenAL logic. — Sven Gothel / gitweb
  13. Doc, scripsts/tests.sh: Mentione OpenAL-Soft environment variables — Sven Gothel / gitweb
  14. ALAudioSink: Don'e check errors before context; Track method of context-locking and release same way; Destroy shall also release context. — Sven Gothel / gitweb
  15. Sound3D: Make all OO wrapper fully transparent and stand-alone, allow mix-and-match; Align Context makeCurrent/release w/ ALAudioSink ... — Sven Gothel / gitweb
  16. Sound3D/Context: Use same base ctor to initialize `hasALC_thread_local_context`, benefitting from thread-local-context — Sven Gothel / gitweb
  17. ALAudioSink.lockContext(): Only check error state if AL makeContextCurrent()/alcSetThreadContext() fails (returns false) — Sven Gothel / gitweb
  18. JoalVersion: List all devices, output devices w/ latency and source count (mono, stereo) using undocumented queries — Sven Gothel / gitweb
  19. ALAudioSink: Query latency and re-create context @ init w/ latency (refresh-rate) if frameDuration < defaultLatency — Sven Gothel / gitweb
  20. Demos OpenALTest/Synth02AL: Show JoalVersion — Sven Gothel / gitweb
  21. JoalVersion: Cleanup dead branches — Sven Gothel / gitweb
  22. ALAudioSink: Add getSourceCount() and cleanup error handling and initImpl() locking and exit. — Sven Gothel / gitweb
  23. Synth02ALL Use float32 (native openal-soft format) if available — Sven Gothel / gitweb
  24. README.{txt -> md) and update text incl. license — Sven Gothel / gitweb
  25. ALAudioSink.toString(): Allow null==chosenFormat (pre init string representation) — Sven Gothel / gitweb
  26. Synth02AL: Use ALAudioSink's default latency instead of fixed frameDuration, using actual OpenAL frame processing refresh value — Sven Gothel / gitweb
  27. build.xml: Fix 7z archive: README.{txt -> md} — Sven Gothel / gitweb

#116 (May 8, 2023, 4:31:09 PM)

  1. JOAL File Layout: Have *-java-src.zip inside jar folder — Sven Gothel / gitweb

#115 (May 7, 2023, 3:34:21 AM)

  1. Fix Bug 1280: WAVData.loadFromStream(..) *API Change*: Only take expected byteCount (2nd arg) using IOUtil.copyStreamChunk2ByteBuffer(..) — Sven Gothel / gitweb
  2. Windows: Drop using soft_oal.dll blobs, use own bundled openal-soft instead. — Sven Gothel / gitweb
  3. Windows: Add commandline unit test scripts — Sven Gothel / gitweb
  4. Add check-junit.sh test result script — Sven Gothel / gitweb
  5. Eclipse: Fix JRE Container and add src, add jdt settings — Sven Gothel / gitweb
  6. Bump openal-soft to v1.23.1 plus platform patches (building only) — Sven Gothel / gitweb
  7. Bump openal-soft 1.23.1 customconfig -> toolchain cmake usage, add MacOS arm64 openal-soft build! — Sven Gothel / gitweb
  8. Windows build script: Drop c.compiler.debug — Sven Gothel / gitweb
  9. Add ALVersion, i.e. retrieve vendor, renderer, version and vendor-version. Test against OpenAL-Soft data >= 1.23.0 — Sven Gothel / gitweb
  10. README: Linux: Add libsndio-dev for SndIO (linked) — Sven Gothel / gitweb
  11. README.txt: Linux: Add libpipewire-0.3-dev for PipeWire — Sven Gothel / gitweb
  12. Bump openal-soft — Sven Gothel / gitweb

#111 (Jan 23, 2023, 10:50:05 PM)

  1. Replace AccessController.doPrivileged() w/ SecurityUtil.doPrivileged() — Sven Gothel / gitweb
  2. Build scripts: MacOS + Windows: Use JDK-17 to build our Java-1.8 API — Sven Gothel / gitweb
  3. Windows: Use mingw32-make.exe — Sven Gothel / gitweb
  4. Update Windows build scripts — Sven Gothel / gitweb
  5. check-java-major-version.sh: Use unique output to validate one class version used (52 for Java8) — Sven Gothel / gitweb
  6. Remove Windows dll-rename, adopting to cpptasks.jar change — Sven Gothel / gitweb

#105 (Jan 4, 2020, 9:51:46 PM)

  1. scripts: use gluegen's renamed setenv-build-jogl-* -> — Sven Gothel / gitweb

#104 (Jan 4, 2020, 8:30:48 PM)

  1. native.tag.jar: include *.symbols — Sven Gothel / gitweb
  2. native.tag.jar: Revert explicit inclusion of *.symbols file — Sven Gothel / gitweb
  3. fix windows build scripts — Sven Gothel / gitweb

#103 (Jan 2, 2020, 9:17:47 AM)

  1. update make-all script — Sven Gothel / gitweb
  2. Add iOS build scripts — Sven Gothel / gitweb
  3. all build scripts: make.joal.all-host-macos.sh — Sven Gothel / gitweb
  4. javadoc: fix — Sven Gothel / gitweb

#102 (Dec 31, 2019, 11:24:58 PM)

  1. Update CSS; Add responsive viewport design tag — Sven Gothel / gitweb
  2. Bug 1363: Java 11: Validated build on Java11 — Sven Gothel / gitweb
  3. Bug 1363: Java 11: Use new Android SDK 24 for Eclipse Android .classpath — Sven Gothel / gitweb
  4. Scripts: Macos /opt-share -> /usr/local (Catalina Read-Only) — Sven Gothel / gitweb
  5. Merge OpenAL-Soft v1.20.0 — Sven Gothel / gitweb
  6. Bug 1417 - Android: OpenAL-Soft toolchain.android.cmake cleanup and NDK — Sven Gothel / gitweb
  7. Bug 1417 - Android: OpenAL-Soft: ANDROID_API_LEVEL [21..22] only, link — Sven Gothel / gitweb
  8. Bug 1417 - Android: OpenAL-Soft toolchain.android.cmake: Only build — Sven Gothel / gitweb
  9. Bug 1417 - Android: Jar Manifest joalversion-android can no more have — Sven Gothel / gitweb
  10. .gitignore: ignore all build* folder — Sven Gothel / gitweb
  11. .gitignore: ignore all build* folder (fix) — Sven Gothel / gitweb
  12. Bug 1417 - Android: APK Manifest [min=21, target=28]; Adopt to GlueGen's — Sven Gothel / gitweb

#99 (Apr 8, 2019, 6:17:08 AM)

  1. Bug 1376: Fix crosscompiled openal-soft 1.19.1 builds using aarch64 + — Sven Gothel / gitweb

#98 (Apr 6, 2019, 3:11:09 AM)

  1. Ensure that only the size of sample data chunk is loaded, rather than — matthew.john.harris / gitweb
  2. added support for Android x86 platforms — Sven Gothel / gitweb
  3. Bug 1316: MacOSX: Keep *.dylib (Don't move to *.jnilib) — Sven Gothel / gitweb
  4. Bug 1367: Adapt to TempFileCache & TempJarCache Changes — Sven Gothel / gitweb

#97 (Dec 11, 2018, 12:16:40 AM)

  1. Bug 1269 - Bump openal-soft to Release 1.17.0 — Sven Gothel / gitweb
  2. Bug 1270 - Fix OSX El Capitan 10.11 stuttering ; Prefer provided OpenAL — Sven Gothel / gitweb
  3. Bump scripts to jre1.8.0_66 — Sven Gothel / gitweb
  4. Bug 1295: Add linux-aarch64 GNU/Linux AArch64 support — xerxes / gitweb

#94 (Oct 7, 2015, 11:59:01 AM)

  1. Bug 1237: Adopt GlueGen's clarification of IOUtil.getResource(..), — Sven Gothel / gitweb

#92 (Sep 15, 2015, 8:00:04 AM)

  1. Windows Scripts: Bump JVM to 1.8.0_60 — Sven Gothel / gitweb

#87 (Aug 12, 2015, 3:59:22 AM)

  1. Remove possible duplicates of libopenal.1* on OSX due to joker '*' in — Sven Gothel / gitweb

#84 (Jul 19, 2015, 1:25:29 AM)

  1. cmake/clang: Inject additional architectures for fat-binary (macosx) ; — Sven Gothel / gitweb
  2. add osx-java6 script: using separate rootrel.build — Sven Gothel / gitweb
  3. Fix Android ARM64 Support — Sven Gothel / gitweb

#79 (Feb 3, 2015, 3:04:20 PM)

  1. WAVLoader: Adopt to GlueGen's Bitstream commit — Sven Gothel / gitweb
  2. Bug 1124 - Android Build: Use SDK >= 24.0.2 (build-tools >= 21.1.2) and — Sven Gothel / gitweb
  3. Bug 1122: Add AArch64 support (Android, GNU/Linux and in general) — Sven Gothel / gitweb
  4. Adapt APK install scripts for harmonized os.and.arch names, see GlueGen — Sven Gothel / gitweb
  5. Add javadoc arg (property 'javadoc.xarg1') '-Xdoclint:none' if java >= — Sven Gothel / gitweb

#75 (Sep 8, 2014, 6:16:29 AM)

  1. Scripts: Bump to java 1.8.0_20 — Sven Gothel / gitweb

#74 (Aug 31, 2014, 9:00:28 PM)

  1. Scripts: Bump to java 1.7.0_67 and apache-ant 1.9.4 — Sven Gothel / gitweb

#71 (Jul 31, 2014, 2:45:26 AM)

  1. Bug 1023/Bug 1024: Create native jar files for different configurations — Sven Gothel / gitweb
  2. Bug 1024: Add fallback for native-jar-file location via classpath — Sven Gothel / gitweb

#70 (Jul 10, 2014, 5:04:25 PM)

  1. Bug 1023, Bug 1024: Adapt to GlueGen commit — Sven Gothel / gitweb

#68 (Jul 3, 2014, 4:28:01 PM)

  1. Bump openal-soft: CMake: Don't use CMAKE_TOOLCHAIN_FILE for — Sven Gothel / gitweb
  2. ALFactory.PREFER_SYSTEM_OPENAL: Defaults to false for all platforms — Sven Gothel / gitweb
  3. Remove explicit xcode.clang property files; Bump openal-soft — Sven Gothel / gitweb
  4. Adapt to GlueGen commit c3054a01990e55ab35756ea23ab7d7c05f24dd37 — Sven Gothel / gitweb
  5. Adapt to GlueGen commit 2f6586292cd298bbc19d8acda0f7cf303c82078b — Sven Gothel / gitweb
  6. Code Clean-Up based on our Recommended Settings (jogamp-scripting — Sven Gothel / gitweb

#66 (May 12, 2014, 4:13:12 AM)

  1. Add generic manual build script to test against distribution's default — Sven Gothel / gitweb
  2. unit test: preserve hs_err_pid*.log files (move to results folder for — Sven Gothel / gitweb

#64 (Feb 23, 2014, 5:35:15 AM)

  1. README: Add note regarding 'git --recurse-submodules' for openal-soft — Sven Gothel / gitweb
  2. WAVLoader: Use Bitstream and support big-endian RIFX; Fix — Sven Gothel / gitweb
  3. ALExtLoopbackDeviceSOFTTest: Remove — Sven Gothel / gitweb
  4. Tests: Add UITestCase unit test super class (print start/end, singletion — Sven Gothel / gitweb
  5. Fix ALExtLoopbackDeviceSOFTTest — Sven Gothel / gitweb

#63 (Feb 16, 2014, 4:07:20 AM)

  1. Fix build scripts .. — Sven Gothel / gitweb
  2. Bump openal-soft to 7297c3214a4c648aaee81a9877da15b88f798197 — Sven Gothel / gitweb
  3. README: Add Debian OpenAL-Soft apt-get install package list — Sven Gothel / gitweb

#62 (Jan 30, 2014, 1:49:16 PM)

  1. Jar Manifest: Sealed Entries must follow generic headers - Otherwise — Sven Gothel / gitweb
  2. Jar Manifest: Seal all packages — Sven Gothel / gitweb
  3. Add '-b${joal.build.number}' to joal.version / archive.name ; Produce — Sven Gothel / gitweb
  4. Build: Move gluegen config files into make/config (cleanup) — Sven Gothel / gitweb
  5. Fix apk location .. (install script) — Sven Gothel / gitweb

#61 (Jan 25, 2014, 1:10:15 AM)

  1. Jar Manifest: Add empty line before EOF (otherwise last line is cut-off — Sven Gothel / gitweb

#60 (Jan 22, 2014, 1:29:25 PM)

  1. Add 'Permissions: all-permissions' to jogl-test.jar for Oracle's 7u51 — Sven Gothel / gitweb
  2. Refine adaption of Oracle's Deployment changes, i.e. >= 7u51 — Sven Gothel / gitweb

#56 (Nov 18, 2013, 5:57:26 PM)

  1. Use 'gluegen-clang.properties' for generic clang and — Sven Gothel / gitweb

#55 (Nov 1, 2013, 9:36:01 PM)

  1. Bug 881 - Add 'Application-Name' in Jar's manifest to avoid Java6 NPEs — Sven Gothel / gitweb

#54 (Oct 30, 2013, 8:42:02 PM)

  1. Use GlueGen's junit version — Sven Gothel / gitweb

#53 (Oct 19, 2013, 6:50:29 AM)

  1. Bump 7u45 — Sven Gothel / gitweb

#52 (Oct 18, 2013, 4:14:07 AM)

  1. Android uses-sdk: Add android:targetSdkVersion="14" (to show up for — Sven Gothel / gitweb

#51 (Oct 10, 2013, 4:45:11 PM)

  1. artifact.properties: Add joal.build.version:=jogamp.version — Sven Gothel / gitweb

#48 (Sep 21, 2013, 8:22:10 AM)

  1. Add support for clang — Sven Gothel / gitweb
  2. Bump to JDK/JRE 7u40. — Sven Gothel / gitweb
  3. Fix Bug 835: Add validation script .. however, classes were java6 clean. — Sven Gothel / gitweb
  4. Add osx clang build script — Sven Gothel / gitweb

#45 (Sep 7, 2013, 12:00:21 AM)

  1. ALFactory: Remove unused imports — Sven Gothel / gitweb
  2. Add util class ALHelpers - Ported to Java from OpenAL-Soft from (c) 2011Sven Gothel / gitweb
  3. ALHelpers: Shorten returned string representations — Sven Gothel / gitweb

#43 (Jul 17, 2013, 4:25:17 PM)

  1. Javadoc: Use JogAmp Stylesheet / Colors .. — Sven Gothel / gitweb

#42 (Jul 17, 2013, 6:39:15 AM)

  1. Removes all references to javax.sound.* in order to allow JOAL to work — gouessej / gitweb
  2. www/index.html: fix relative javadoc links — xerxes / gitweb
  3. ALutWAVLoaderTest: Test WAV decoder impl. Bug 684xerxes / gitweb
  4. www/index.html: Link to JOAL FAQ — xerxes / gitweb
  5. Remedy for Bug 782: Issue Debug.initSingleton() or Debug.debug(..) — Sven Gothel / gitweb

#41 (Jun 25, 2013, 5:50:13 PM)

  1. Bug 758: Fix scripts and ant build files to work w/ Java7 (default now) — Sven Gothel / gitweb
  2. Security: Tighten DynamicLinker*, NativeLibrary and DynamicLibraryBundle — Sven Gothel / gitweb
  3. Fix Java7 Windows scripts .. — Sven Gothel / gitweb
  4. ALDynamicLibraryBundleInfo: Inherit security considerations in API doc — Sven Gothel / gitweb
  5. Scripts: Use a local hostname for JOGAMP_JAR_CODEBASE for security — Sven Gothel / gitweb

#40 (Jun 18, 2013, 10:52:11 AM)

  1. Android SDK changes: Add /build-tools/17.0.0 to PATH — Sven Gothel / gitweb

#39 (Jun 11, 2013, 6:28:13 PM)

  1. Adapt to GlueGen commit 1a01dce6c42b398cdd68d405828774a3ab366456 — Sven Gothel / gitweb

#38 (Jun 9, 2013, 6:13:50 PM)

  1. Adding method for determining the playing state of an audio source. — unknown / gitweb
  2. Catches ExceptionInInitializerError instances when initializing — gouessej / gitweb
  3. Supports soft_oal.dll (OpenAL-soft) that might be installed — gouessej / gitweb
  4. Supports soft_oal.dll (OpenAL-soft) that might be installed — gouessej / gitweb
  5. Adds a script that downloads the ZIP archive containing OpenAL-Soft — gouessej / gitweb
  6. Adds a script that downloads the ZIP archive containing OpenAL-Soft — gouessej / gitweb
  7. Adds a script that downloads the ZIP archive containing OpenAL-Soft — gouessej / gitweb
  8. OpenAL-Soft Windows binaries — gouessej / gitweb
  9. Fix 225dbd523daba306195d6bc24d0d996f946ae8a3: Replace TAB w/ 4 SPACEs; — Sven Gothel / gitweb
  10. Fix 76c6916631a7386457fa260bf7856dea4d461a31: Replace TAB w/ 4 SPACEs — Sven Gothel / gitweb
  11. Inject precompiled soft-openal blobs in case native compilation fails. — Sven Gothel / gitweb
  12. Adapt to new version scheme, see GlueGen — Sven Gothel / gitweb
  13. joal.build.id -> target init, depends on jogamp.env.init — Sven Gothel / gitweb
  14. Manual ant target c.download.openal.soft.windows can be called from any — Sven Gothel / gitweb
  15. Fix x86_32 build on x86_64 of openal-soft; ; Statically link gcc-lib in — Sven Gothel / gitweb
  16. Update openal-soft (GLIBC compat symbols) — Sven Gothel / gitweb
  17. update openal-soft — Sven Gothel / gitweb
  18. Use new toolchain (gluegen 3b7ea9f67487be8f133c19b493b632fc579c5049); — Sven Gothel / gitweb
  19. Add make.joal.all.sh — Sven Gothel / gitweb
  20. openal-soft: Toolchain CMake files for ARM* Cross-Compilation require — Sven Gothel / gitweb
  21. Fix conditional properties 'useLinuxARMv6SFOptions' and — Sven Gothel / gitweb

#37 (Mar 9, 2013, 5:26:12 AM)

  1. Remove junit ALTest file with incompatible license. — xerxes / gitweb
  2. Fix JOAL Eclipse project New_Builder.launch working directory. — xerxes / gitweb
  3. Remove 9 year old java.net test.zip — xerxes / gitweb
  4. www/index.html: Updated links, OpenAL logo & OpenAL-Soft. — xerxes / gitweb
  5. Add dummy junit test so jenkins would not fail — Sven Gothel / gitweb
  6. Delete OpenAL stub_includes/openal headers. — xerxes / gitweb
  7. Import OpenAL-soft openal-soft/include/AL/ headers to — xerxes / gitweb
  8. Bug 567 (part 1): add support for openal extensions — xerxes / gitweb
  9. build.xml al.c -> al.h after switch to OpenAl-soft headers. — xerxes / gitweb
  10. Bug 567 (part 2): add support for openal extensions — xerxes / gitweb
  11. Remove obstolete bundled OpenAL and OpenAL-soft binarys. — xerxes / gitweb
  12. Re-import OpenAL stub_includes/openal/eax.h required for EAX. — xerxes / gitweb
  13. Remove system dependency of intptr_t and uint64_t. — xerxes / gitweb
  14. build.xml: set failonerror="false" for artifact.properties copy — xerxes / gitweb
  15. Bug 567 (part 3): add support for openal extensions — xerxes / gitweb
  16. Improve ALExtLoopbackDeviceSOFTTest to list all available OpenAL — xerxes / gitweb
  17. Bug 662: Add a flag to favour OpenALSoft — xerxes / gitweb
  18. Fix Bug 662: Add a flag to favour OpenALSoft — xerxes / gitweb
  19. Improve logic of Bug 662: Add a flag to favour OpenALSoft — xerxes / gitweb
  20. Fix exception logic and dest buffer in ALExtLoopbackDeviceSOFTTest — xerxes / gitweb
  21. Fix missing Opaque boolean ALboolean in make/joal-alext.cfg — xerxes / gitweb
  22. Add openal-soft git submodule — Sven Gothel / gitweb
  23. Make AL/ALC types unique in their respective header file; Use GlueGen's — Sven Gothel / gitweb
  24. JOAL Fixes: GlueGen, OpenAL Header, Added scripts/tests.sh, — Sven Gothel / gitweb
  25. Bump openal-soft submodule — Sven Gothel / gitweb
  26. JOAL GlueGen: Force ProcAddress for all / ALExt*: Remove duplicates (AL) — Sven Gothel / gitweb
  27. Build Cleanup for Android, Misc changes .. — Sven Gothel / gitweb
  28. Android Build & Test ; WavLoader/Data javax.audio separation (part-1) — Sven Gothel / gitweb
  29. Fix regression .. now use — Sven Gothel / gitweb
  30. WavData.loadFromStream: Uses IOUtil.copyStream2ByteBuffer which fixes — Sven Gothel / gitweb
  31. bump openal-soft — Sven Gothel / gitweb
  32. Test building openal-soft w/ Windows/cmake - fails .. — Sven Gothel / gitweb
  33. Build: Include cd and cdr test files in joa-test.jar; joal-natives*: — Sven Gothel / gitweb
  34. OpenAL Library Selection (Bug 662): Use String value of new property — Sven Gothel / gitweb

#36 (Dec 27, 2012, 8:09:18 AM)

  1. Fix testAlBufferDataintintByteBufferintint ERROR java.io.IOException: — xerxes / gitweb
  2. Fix mark/reset bug in — xerxes / gitweb
  3. Add make/scripts/make.joal.all.linux-armv6.sh — xerxes / gitweb
  4. Build and bundle a openal-soft fallback on all arch. — xerxes / gitweb
  5. Add make/scripts/make.joal.all.linux-i586.sh — xerxes / gitweb
  6. Update JOAL www links to use jogamp.org infrastructure. — xerxes / gitweb
  7. Fix regression of commit 2420f0e3352a46c8deb9c5827f78add65cb9d1a4: cmake — Sven Gothel / gitweb
  8. Fix regression of commit 2420f0e3352a46c8deb9c5827f78add65cb9d1a4: cmake — Sven Gothel / gitweb
  9. Add make/scripts/make.joal.all.linux-armv6hf.sh — xerxes / gitweb
  10. Android build scripts: Fix env. name ANDROID_SDK_HOME -> ANDROID_HOME — Sven Gothel / gitweb

#33 (Aug 24, 2012, 9:35:23 AM)

  1. Adapt to GlueGen ARM Build Changes — Sven Gothel / gitweb

#32 (Jun 26, 2012, 11:01:58 PM)

  1. Adapt to gluegen commit 9a71703904ebfec343fb2c7266343d37a2e4c3db — Sven Gothel / gitweb

#29 (Jun 26, 2012, 9:03:24 PM)

  1. Linux ARMel eabi: Use armv6t, soft-float - low profile to target more — Sven Gothel / gitweb

#28 (Jun 22, 2012, 12:55:27 AM)

  1. native jar packaging: don't fail if platform OpenAL lib is n/a — Sven Gothel / gitweb
  2. Adapt to gluegen commit f4ac27e177f6deb444280d3b375e7d343e38bd080 — Sven Gothel / gitweb
  3. Fix regression, adapt to GlueGen PropertyAccess changes, commit — Sven Gothel / gitweb
  4. Adapt to gluegen commit 1c03dfd6d1939a46018583419956e350e531f4fe — Sven Gothel / gitweb
  5. Generate and add *.apk files to the 7z archive [for deployment] — Sven Gothel / gitweb
  6. Add make.joal.all.android-armv7-cross.sh — Sven Gothel / gitweb
  7. Conditionally make APK (if Android) — Sven Gothel / gitweb
  8. disable BUILD_ARCHIVE in android cross script — Sven Gothel / gitweb

#27 (Feb 28, 2012, 1:09:36 AM)

  1. Enable cross compile/test on linux-armv7 (including armv7 openal soft — Sven Gothel / gitweb
  2. Fix junit.run — Sven Gothel / gitweb

#25 (Feb 15, 2012, 4:00:22 AM)

  1. Add TempJarCache usage — Sven Gothel / gitweb
  2. Add Eclipse prj — Sven Gothel / gitweb
  3. Add macosx build script — Sven Gothel / gitweb
  4. win build script bump to 6u30 — Sven Gothel / gitweb
  5. Fix bug 550, JOAL lacks Platform.initSingleton() call - Using — Sven Gothel / gitweb
  6. Fix Bug 516 (Determine Java Version) / See gluegen: — Sven Gothel / gitweb
  7. javac - setup encoding to UTF-8 — Sven Gothel / gitweb

#24 (Nov 28, 2011, 5:35:46 PM)

  1. Enable JOAL on Solaris — Sven Gothel / gitweb
  2. use jvmDataModel.arg set by gluegen — Sven Gothel / gitweb
  3. oops .. forgot to import gluegen-cpptask.. — Sven Gothel / gitweb

#23 (Sep 14, 2011, 2:35:08 AM)

  1. New FHS: jars in jar/ — Sven Gothel / gitweb

#22 (Sep 2, 2011, 10:19:10 AM)

  1. create source zip archives — Sven Gothel / gitweb
  2. Adapt to gluegen commit 90ff6c401934121395fa4a127e8b889106fda07a — Sven Gothel / gitweb

#14 (Feb 24, 2011, 1:21:35 AM)

  1. gluegen-archivetasks.xml -> jogamp-archivetasks.xml — Sven Gothel / gitweb

#12 (Feb 23, 2011, 8:20:32 PM)

  1. Adapt changes of jogamp-env.xml — Sven Gothel / gitweb

#9 (Feb 23, 2011, 3:20:34 PM)

  1. Inverse build attribute build.noarchive -> build.archiveon — Sven Gothel / gitweb

#6 (Feb 23, 2011, 5:00:00 AM)

  1. Use 7z instead of zip — Sven Gothel / gitweb

#5 (Feb 23, 2011, 3:20:32 AM)

  1. Use NODE_NAME env var to determine test archive — Sven Gothel / gitweb