Skip to content

Commit

Permalink
feat(tinyfd): update to 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Sep 27, 2020
1 parent fa0ab90 commit 3c92f41
Show file tree
Hide file tree
Showing 6 changed files with 1,093 additions and 1,779 deletions.
2 changes: 1 addition & 1 deletion doc/notes/3.2.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ This build includes the following changes:
* Updated `stb_perlin` to 0.5 (up from 0.4)
* Updated `stb_truetype` to 1.24 (up from 1.22)
* Updated `stb_vorbis` to 1.20 (up from 1.17)
- tinyfiledialogs: Updated to 3.6.1 (up from 3.3.9)
- tinyfiledialogs: Updated to 3.7.0 (up from 3.3.9)
- vma: Updated to 2.3.0 (up from 2.2.0)
- Vulkan: Updated to 1.2.131 (up from 1.0.121)
* Includes MoltenVK 1.0.40 (up from 1.0.36)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ JNIEXPORT jlong JNICALL Java_org_lwjgl_util_tinyfd_TinyFileDialogs_ntinyfd_1sile
return (jlong)(intptr_t)&tinyfd_silent;
}

JNIEXPORT jlong JNICALL Java_org_lwjgl_util_tinyfd_TinyFileDialogs_ntinyfd_1allowCursesDialogs(JNIEnv *__env, jclass clazz) {
UNUSED_PARAMS(__env, clazz)
return (jlong)(intptr_t)&tinyfd_allowCursesDialogs;
}

JNIEXPORT jlong JNICALL Java_org_lwjgl_util_tinyfd_TinyFileDialogs_ntinyfd_1winUtf8(JNIEnv *__env, jclass clazz) {
UNUSED_PARAMS(__env, clazz)
return (jlong)(intptr_t)&tinyfd_winUtf8;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,19 +94,6 @@ private static IntBuffer tinyfd_silent() {
/** 1 (default) or 0 : on unix, hide errors and warnings from called dialog. */
public static final IntBuffer tinyfd_silent = tinyfd_silent();

// --- [ tinyfd_allowCursesDialogs ] ---

private static native long ntinyfd_allowCursesDialogs();

@NativeType("int *")
private static IntBuffer tinyfd_allowCursesDialogs() {
long __result = ntinyfd_allowCursesDialogs();
return memIntBuffer(__result, 1);
}

/** 0 (default) or 1 : curses dialogs are difficult to use, on windows they are only ascii. */
public static final IntBuffer tinyfd_allowCursesDialogs = tinyfd_allowCursesDialogs();

// --- [ tinyfd_winUtf8 ] ---

private static native long ntinyfd_winUtf8();
Expand Down
Loading

0 comments on commit 3c92f41

Please sign in to comment.