Skip to content

Commit 7fa510e

Browse files
committed
deploy: ba46b96
1 parent 8f55f85 commit 7fa510e

5 files changed

Lines changed: 41 additions & 68 deletions

File tree

lbj-en/English/add.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ <h3 id="_gradle_built_android_projects"><a class="anchor" href="#_gradle_built_a
333333
implementation(
334334
group: "com.github.stephengold",
335335
name: "Libbulletjme-Android",
336-
version: "23.0.0",
336+
version: "23.0.1",
337337
classifier: "SpDebug",
338338
ext: "aar"
339339
)
@@ -353,7 +353,7 @@ <h3 id="_gradle_built_desktop_projects"><a class="anchor" href="#_gradle_built_d
353353
</div>
354354
<div class="paragraph">
355355
<p>Because of how releases are built,
356-
the desktop JVM library is released under 6 distinct names (artifact IDs).
356+
the desktop JVM library is released under 7 distinct names (artifact IDs).
357357
In contrast, each desktop native library is specific to a particular platform,
358358
build type, and flavor.</p>
359359
</div>
@@ -370,10 +370,10 @@ <h3 id="_gradle_built_desktop_projects"><a class="anchor" href="#_gradle_built_d
370370
}
371371
dependencies {
372372
// JVM library:
373-
implementation("com.github.stephengold:Libbulletjme-Windows64:23.0.0")
373+
implementation("com.github.stephengold:Libbulletjme-Windows64:23.0.1")
374374

375375
// native libraries:
376-
runtimeOnly("com.github.stephengold:Libbulletjme-Linux64:23.0.0:SpDebug")
376+
runtimeOnly("com.github.stephengold:Libbulletjme-Linux64:23.0.1:SpDebug")
377377
// Native libraries for other platforms could be added.
378378
}</code></pre>
379379
</div>
@@ -450,6 +450,7 @@ <h3 id="_desktop_projects"><a class="anchor" href="#_desktop_projects"></a>Deskt
450450
new NativeDynamicLibrary("native/linux/x86_64", PlatformPredicate.LINUX_X86_64),
451451
new NativeDynamicLibrary("native/osx/arm64", PlatformPredicate.MACOS_ARM_64),
452452
new NativeDynamicLibrary("native/osx/x86_64", PlatformPredicate.MACOS_X86_64),
453+
new NativeDynamicLibrary("native/windows/arm64", PlatformPredicate.WIN_ARM_64),
453454
new NativeDynamicLibrary("native/windows/x86_64", PlatformPredicate.WIN_X86_64)
454455
};
455456
loader.registerNativeLibraries(libraries).initPlatformLibrary();

lbj-en/English/build.html

Lines changed: 17 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ <h2 id="_libraries"><a class="anchor" href="#_libraries"></a>Libraries</h2>
295295
<ol class="loweralpha" type="a">
296296
<li>
297297
<p>a <a href="https://adoptium.net/releases.html">Java Development Kit (JDK)</a>,
298-
version 8 or higher, and</p>
298+
version 17 or higher, and</p>
299299
</li>
300300
<li>
301301
<p>one of the supported C++ compilers:</p>
@@ -363,7 +363,7 @@ <h2 id="_libraries"><a class="anchor" href="#_libraries"></a>Libraries</h2>
363363
<p><code>cd Libbulletjme</code></p>
364364
</li>
365365
<li>
366-
<p><code>git checkout -b latest 23.0.0</code></p>
366+
<p><code>git checkout -b latest 23.0.1</code></p>
367367
</li>
368368
</ol>
369369
</div>
@@ -415,14 +415,27 @@ <h2 id="_libraries"><a class="anchor" href="#_libraries"></a>Libraries</h2>
415415
and point the <code>ANDROID_HOME</code> environment variable to that installation.</p>
416416
</li>
417417
<li>
418+
<p>Install the Android build script:</p>
419+
<div class="olist loweralpha">
420+
<ol class="loweralpha" type="a">
421+
<li>
422+
<p>using Bash or Fish or PowerShell or Zsh: <code>cp android.gradle build.gradle</code></p>
423+
</li>
424+
<li>
425+
<p>using Windows Command Prompt: <code>copy android.gradle build.gradle</code></p>
426+
</li>
427+
</ol>
428+
</div>
429+
</li>
430+
<li>
418431
<p>Run the Gradle wrapper on the Android build script:</p>
419432
<div class="olist loweralpha">
420433
<ol class="loweralpha" type="a">
421434
<li>
422-
<p>using Bash or Fish or PowerShell or Zsh: <code>./gradlew -b android.gradle build</code></p>
435+
<p>using Bash or Fish or PowerShell or Zsh: <code>./gradlew build</code></p>
423436
</li>
424437
<li>
425-
<p>using Windows Command Prompt: <code>.\gradlew -b android.gradle build</code></p>
438+
<p>using Windows Command Prompt: <code>.\gradlew build</code></p>
426439
</li>
427440
</ol>
428441
</div>
@@ -524,34 +537,6 @@ <h2 id="_website"><a class="anchor" href="#_website"></a>Website</h2>
524537
</div>
525538
</div>
526539
</div>
527-
<div class="sect1">
528-
<h2 id="_cleanup"><a class="anchor" href="#_cleanup"></a>Cleanup</h2>
529-
<div class="sectionbody">
530-
<div class="paragraph">
531-
<p>At any time, you can restore the project to a pristine state:</p>
532-
</div>
533-
<div class="ulist">
534-
<ul>
535-
<li>
536-
<p>using Bash or Fish or PowerShell or Zsh: <code>./gradlew clean;./gradlew -b android.gradle clean</code></p>
537-
</li>
538-
<li>
539-
<p>using Windows Command Prompt:</p>
540-
<div class="ulist">
541-
<ul>
542-
<li>
543-
<p><code>.\gradlew clean</code></p>
544-
</li>
545-
<li>
546-
<p><code>.\gradlew -b android.gradle clean</code></p>
547-
</li>
548-
</ul>
549-
</div>
550-
</li>
551-
</ul>
552-
</div>
553-
</div>
554-
</div>
555540
</article>
556541
<aside class="toc sidebar" data-title="Page contents" data-levels="2">
557542
<div class="toc-menu"></div>

lbj-en/English/debug.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ <h1 class="page">Troubleshooting physics issues</h1>
286286
<div class="paragraph">
287287
<p>Similarly, native-code assertions should be enabled during development,
288288
by loading a native library of the "debug" type,
289-
such as "com.github.stephengold:Libbulletjme-Linux64:23.0.0:SpDebug".</p>
289+
such as "com.github.stephengold:Libbulletjme-Linux64:23.0.1:SpDebug".</p>
290290
</div>
291291
</div>
292292
</div>

lbj-en/English/implementation.html

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -301,12 +301,12 @@ <h2 id="_native_libraries"><a class="anchor" href="#_native_libraries"></a>Nativ
301301
</div>
302302
<div class="paragraph">
303303
<p>The Libbulletjme project publishes native libraries
304-
for 10 different platforms:</p>
304+
for 11 different platforms:</p>
305305
</div>
306306
<div class="ulist">
307307
<ul>
308308
<li>
309-
<p>Windows (64-bit),</p>
309+
<p>Windows (x86-64 and ARM64),</p>
310310
</li>
311311
<li>
312312
<p>Linux (x86-64, armhf, and aarch64),</p>
@@ -319,19 +319,6 @@ <h2 id="_native_libraries"><a class="anchor" href="#_native_libraries"></a>Nativ
319319
</li>
320320
</ul>
321321
</div>
322-
<div class="admonitionblock note">
323-
<table>
324-
<tr>
325-
<td class="icon">
326-
<i class="fa icon-note" title="Note"></i>
327-
</td>
328-
<td class="content">
329-
32-bit and 64-bit versions of the same operating system
330-
count as distinct platforms!
331-
</td>
332-
</tr>
333-
</table>
334-
</div>
335322
<div class="paragraph">
336323
<p>For each platform, Libbulletjme builds 2 types of libraries:</p>
337324
</div>

sitemap.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,66 +2,66 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/add.html</loc>
5-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
5+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
66
</url>
77
<url>
88
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/build.html</loc>
9-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
9+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
1010
</url>
1111
<url>
1212
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/character.html</loc>
13-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
13+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
1414
</url>
1515
<url>
1616
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/collision.html</loc>
17-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
17+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
1818
</url>
1919
<url>
2020
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/debug.html</loc>
21-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
21+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
2222
</url>
2323
<url>
2424
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/demos.html</loc>
25-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
25+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
2626
</url>
2727
<url>
2828
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/implementation.html</loc>
29-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
29+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
3030
</url>
3131
<url>
3232
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/lexicon.html</loc>
33-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
33+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
3434
</url>
3535
<url>
3636
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/misc.html</loc>
37-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
37+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
3838
</url>
3939
<url>
4040
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/new6dof.html</loc>
41-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
41+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
4242
</url>
4343
<url>
4444
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/overview.html</loc>
45-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
45+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
4646
</url>
4747
<url>
4848
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/rigidbody.html</loc>
49-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
49+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
5050
</url>
5151
<url>
5252
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/shape.html</loc>
53-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
53+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
5454
</url>
5555
<url>
5656
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/softbody.html</loc>
57-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
57+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
5858
</url>
5959
<url>
6060
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/sport.html</loc>
61-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
61+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
6262
</url>
6363
<url>
6464
<loc>https://stephengold.github.io/Libbulletjme/lbj-en/English/vehicle.html</loc>
65-
<lastmod>2026-06-18T05:10:17.410Z</lastmod>
65+
<lastmod>2026-06-18T21:50:42.315Z</lastmod>
6666
</url>
6767
</urlset>

0 commit comments

Comments
 (0)