]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Update the dist rules for this evening's js/wasm build changes and include an index...
authorstephan <stephan@noemail.net>
Wed, 19 Oct 2022 06:06:42 +0000 (06:06 +0000)
committerstephan <stephan@noemail.net>
Wed, 19 Oct 2022 06:06:42 +0000 (06:06 +0000)
FossilOrigin-Name: a0ef0f32e96638b502b3951e524d590bdfb09dd39be453686b075102da67b7db

ext/wasm/GNUmakefile
ext/wasm/README-dist.txt
ext/wasm/api/README.md
ext/wasm/dist.make
ext/wasm/index-dist.html [new file with mode: 0644]
ext/wasm/tester1.html
manifest
manifest.uuid

index f364e446bcfa063e40c1c659b5900c48beb24198..fdf1332e5cef8d7eb3c22faf840ff49e30a577c7 100644 (file)
@@ -185,17 +185,17 @@ else
   $(info Development build. Use '$(MAKE) release' for a smaller release build.)
 endif
 
-version-info := $(dir.wasm)/version-info
+bin.version-info := $(dir.wasm)/bin.version-info
 # ^^^^ NOT in $(dir.tmp) because we need it to survive the cleanup
 # process for the dist build to work properly.
-$(version-info): $(dir.wasm)/version-info.c $(sqlite3.h) $(MAKEFILE)
+$(bin.version-info): $(dir.wasm)/version-info.c $(sqlite3.h) $(MAKEFILE)
        $(CC) -O0 -I$(dir.top) -o $@ $<
-DISTCLEAN_FILES += $(version-info)
+DISTCLEAN_FILES += $(bin.version-info)
 
-stripccomments := $(dir.tool)/stripccomments
-$(stripccomments): $(stripccomments).c $(MAKEFILE)
+bin.stripccomments := $(dir.tool)/stripccomments
+$(bin.stripccomments): $(bin.stripccomments).c $(MAKEFILE)
        $(CC) -o $@ $<
-DISTCLEAN_FILES += $(stripccomments)
+DISTCLEAN_FILES += $(bin.stripccomments)
 
 EXPORTED_FUNCTIONS.api.in := $(abspath $(dir.api)/EXPORTED_FUNCTIONS.sqlite3-api)
 EXPORTED_FUNCTIONS.api := $(dir.tmp)/EXPORTED_FUNCTIONS.api
@@ -241,12 +241,12 @@ $(sqlite3-api.js): $(sqlite3-api.jses) $(MAKEFILE)
                echo "/* END FILE: $$i */"; \
        done > $@
 
-$(sqlite3-api-build-version.js): $(version-info) $(MAKEFILE)
+$(sqlite3-api-build-version.js): $(bin.version-info) $(MAKEFILE)
        @echo "Making $@..."
        @{ \
   echo 'self.sqlite3ApiBootstrap.initializers.push(function(sqlite3){'; \
        echo -n '  sqlite3.version = '; \
-  $(version-info) --json; \
+  $(bin.version-info) --json; \
   echo ';'; \
        echo '});'; \
   } > $@
@@ -543,7 +543,7 @@ o-xtra := -flto
 # doubles the build time and seems to have negligible effect on
 # higher optimization levels.
 o0: clean
-       $(MAKE) -e "emcc_opt=-O0 $(o-xtra)"
+       $(MAKE) -e "emcc_opt=-O0"
 o1: clean
        $(MAKE) -e "emcc_opt=-O1 $(o-xtra)"
 o2: clean
index 422f3f1e0c5822530f2ebb3fdb45e62fbe1762ee..c6fb2c5d1acdceef96f54eccdb983210e65ccc89 100644 (file)
@@ -7,18 +7,17 @@ TODO: link to main WASM/JS docs, once they are online
 This archive contains the sqlite3.js and sqlite3.wasm file which make
 up the sqlite3 WASM/JS build.
 
-The jswasm directory contains both the main deliverables and small
-demonstration and test apps. Browsers will not serve WASM files from
-file:// URLs, so the demo/test apps require a web server and that
-server must include the following headers in its response when serving
-the files:
+The jswasm directory contains the core sqlite3 deliverables and the
+top-level directory contains demonstration and test apps. Browsers
+will not serve WASM files from file:// URLs, so the demo/test apps
+require a web server and that server must include the following
+headers in its response when serving the files:
 
     Cross-Origin-Opener-Policy: same-origin
     Cross-Origin-Embedder-Policy: require-corp
 
-The files named sqlite3*.js and sqlite3.wasm belong to the core
-sqlite3 deliverables and the others are soley for demonstration and
-may be discarded. They are not in separate directories from the main
-deliverables because a quirk of URI resolution in JS code would then
-require that sqlite3.js be duplicated and edited for Worker-loaded
-operation.
+One simple way to get the demo apps up and running on Unix-style
+systems is to install althttpd (https://sqlite.org/althttpd) and run:
+
+    althttpd --enable-sab --page index.html
index dfb13c569f45e49ce15280423f6ae4bfbd211029..6440eba9965e0784416ce6f3d59bae01b6748a8d 100644 (file)
@@ -64,12 +64,12 @@ browser client:
   thread via the Worker message-passing interface. Like OO API #1,
   this is an optional component, offering one of any number of
   potential implementations for such an API.
-    - `../sqlite3-worker1.js`\  
+    - `sqlite3-worker1.js`\  
       Is not part of the amalgamated sources and is intended to be
       loaded by a client Worker thread. It loads the sqlite3 module
       and runs the Worker #1 API which is implemented in
       `sqlite3-api-worker1.js`.
-    - `../sqlite3-worker1-promiser.js`\  
+    - `sqlite3-worker1-promiser.js`\  
       Is likewise not part of the amalgamated sources and provides
       a Promise-based interface into the Worker #1 API. This is
       a far user-friendlier way to interface with databases running
@@ -78,7 +78,7 @@ browser client:
   is an sqlite3 VFS implementation which supports Google Chrome's
   Origin-Private FileSystem (OPFS) as a storage layer to provide
   persistent storage for database files in a browser. It requires...
-    - `../sqlite3-opfs-async-proxy.js`\  
+    - `sqlite3-opfs-async-proxy.js`\  
       is the asynchronous backend part of the OPFS proxy. It speaks
       directly to the (async) OPFS API and channels those results back
       to its synchronous counterpart. This file, because it must be
index e19b361b197996e47871d464c19f95826bf48ba2..13cab87669ae5a0a0e7943762c6eff30a1c1417e 100644 (file)
 MAKEFILE.dist := $(lastword $(MAKEFILE_LIST))
 
 ########################################################################
-# Chicken/egg situation: we need $(version-info) to get the version
+# Chicken/egg situation: we need $(bin.version-info) to get the version
 # info for the archive name, but that binary may not yet be built, and
 # won't be built until we expand the dependencies. We have to use a
 # temporary name for the archive.
 dist-name = sqlite-wasm-TEMP
-dist-archive = $(dist-name).zip
-.PHONY: $(dist-archive)
-CLEAN_FILES += $(wildcard sqlite-wasm-*.zip)
 #ifeq (0,1)
 #  $(info WARNING  *******************************************************************)
 #  $(info ** Be sure to create the desired build configuration before creating the)
@@ -40,52 +37,58 @@ CLEAN_FILES += $(wildcard sqlite-wasm-*.zip)
 # date.
 dist-build ?= oz
 
-demo-123.html := $(dir.wasm)/demo-123.html
-demo-123-worker.html := $(dir.wasm)/demo-123-worker.html
-demo-123.js := $(dir.wasm)/demo-123.js
-demo-files := $(demo-123.js) $(demo-123.html) $(demo-123-worker.html) \
-              tester1.html tester1.js tester1-worker.html
-README-dist := $(dir.wasm)/README-dist.txt
-dist-dir-main := $(dist-name)/jswasm
-dist.main.extras := \
-    sqlite3-opfs-async-proxy.js \
-    sqlite3-worker1.js \
-    sqlite3-worker1-promiser.js
+dist-dir.top := $(dist-name)
+dist-dir.jswasm := $(dist-dir.top)/$(notdir $(dir.dout))
+dist-dir.common := $(dist-dir.top)/common
+dist.top.extras := \
+    demo-123.html demo-123-worker.html demo-123.js \
+    tester1.html tester1-worker.html tester1.js
+dist.jswasm.extras := $(sqlite3-api.ext.jses) $(sqlite3.wasm)
+dist.common.extras := $(wildcard $(dir.common)/*.css)
 
+.PHONY: dist
 ########################################################################
-# $(dist-archive): create the end-user deliverable archive.
+# dist: create the end-user deliverable archive.
 #
-# Maintenance reminder: because $(dist-archive) depends on
-# $(dist-build), and $(dist-build) will depend on clean, having any deps
-# on $(dist-archive) which themselves may be cleaned up by the clean
+# Maintenance reminder: because dist depends on $(dist-build), and
+# $(dist-build) will depend on clean, having any deps on
+# $(dist-archive) which themselves may be cleaned up by the clean
 # target will lead to grief in parallel builds (-j #). Thus
 # $(dist-target)'s deps must be trimmed to non-generated files or
 # files which are _not_ cleaned up by the clean target.
-$(dist-archive): \
-    $(stripccomments) $(version-info) \
+#
+# Note that we require $(bin.version-info) in order to figure out the
+# dist file's name, so cannot (without a recursive make) have the
+# target name equal to the archive name.
+dist: \
+    $(bin.stripccomments) $(bin.version-info) \
     $(dist-build) \
     $(MAKEFILE) $(MAKEFILE.dist)
        @echo "Making end-user deliverables..."
-       @rm -fr $(dist-name)
-       @mkdir -p $(dist-dir-main)
-       @cp -p $(README-dist) $(dist-name)/README.txt
-       @cp -p $(sqlite3.wasm) $(dist.main.extras) $(dist-dir-main)
-       @$(stripccomments) -k -k < $(sqlite3.js) \
-               > $(dist-dir-main)/$(notdir $(sqlite3.js))
-       @cp -p $(demo-files) $(dist-dir-main)
-       @vnum=$$($(version-info) --version-number); \
-       vdir=sqlite-wasm-$$vnum; \
-       arc=$$vdir.zip; \
-       echo "Making $$arc ..."; \
-       rm -f $$arc; \
-       mv $(dist-name) $$vdir; \
-       zip -qr $$arc $$vdir; \
-       rm -fr $$vdir; \
-       ls -la $$arc; \
-       unzip -lv $$arc || echo "Missing unzip app? Not fatal."
+       @rm -fr $(dist-dir.top)
+       @mkdir -p $(dist-dir.jswasm) $(dist-dir.common)
+       @cp -p $(dist.top.extras) $(dist-dir.top)
+       @cp -p README-dist.txt $(dist-dir.top)/README.txt
+       @cp -p index-dist.html $(dist-dir.top)/index.html
+       @cp -p $(dist.jswasm.extras) $(dist-dir.jswasm)
+       @$(bin.stripccomments) -k -k < $(sqlite3.js) \
+               > $(dist-dir.jswasm)/$(notdir $(sqlite3.js))
+       @cp -p $(dist.common.extras) $(dist-dir.common)
+       @vnum=$$($(bin.version-info) --version-number); \
+               vdir=sqlite-wasm-$$vnum; \
+               arczip=$$vdir.zip; \
+               echo "Making $$arczip ..."; \
+               rm -f $$arczip; \
+               mv $(dist-dir.top) $$vdir; \
+               zip -qr $$arczip $$vdir; \
+               rm -fr $$vdir; \
+               ls -la $$arczip; \
+               unzip -lv $$arczip || echo "Missing unzip app? Not fatal."
 
-#$(shell $(version-info) --version-number)
-dist: $(dist-archive)
-clean-dist:
-       rm -f $(dist-archive)
-clean: clean-dist
+# We need a separate `clean` rule to account for weirdness in
+# a sub-make, where we get a copy of the $(dist-name) dir
+# copied into the new $(dist-name) dir.
+.PHONY: dist-clean
+clean: dist-clean
+dist-clean:
+       rm -fr $(dist-name) $(wildcard sqlite-wasm-*.zip)
diff --git a/ext/wasm/index-dist.html b/ext/wasm/index-dist.html
new file mode 100644 (file)
index 0000000..ffb3127
--- /dev/null
@@ -0,0 +1,82 @@
+<!doctype html>
+<html lang="en-us">
+  <head>
+    <meta charset="utf-8">
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+    <link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
+    <title>sqlite3 WASM Demo Page Index</title>
+  </head>
+  <body>
+    <style>
+      body {
+          display: flex;
+          flex-direction: column;
+          flex-wrap: wrap;
+      }
+      textarea {
+          font-family: monospace;
+      }
+      header {
+          font-size: 130%;
+          font-weight: bold;
+      }
+      .hidden, .initially-hidden {
+          position: absolute !important;
+          opacity: 0 !important;
+          pointer-events: none !important;
+          display: none !important;
+      }
+      .warning { color: firebrick; }
+    </style>
+    <header id='titlebar'><span>sqlite3 WASM demo pages</span></header>
+    <hr>
+    <div>Below is the list of demo pages for the sqlite3 WASM
+      builds. The intent is that <em>this</em> page be run
+      using the functional equivalent of:</div>
+    <blockquote><pre><a href='https://sqlite.org/althttpd'>althttpd</a> -enable-sab -page index.html</pre></blockquote>
+    <div>and the individual pages be started in their own tab.
+      Warnings and Caveats:
+      <ul class='warning'>
+        <li>Some of these pages require that the web server emit the
+          so-called
+          <a href='https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Opener-Policy'>COOP</a>
+          and
+          <a href='https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Embedder-Policy'>COEP</a>
+          headers. <a href='https://sqlite.org/althttpd'>althttpd</a> requires the
+          <code>-enable-sab</code> flag for that.
+        </li>
+      </ul>
+    </div>
+    <div>The tests and demos...
+      <ul id='test-list'>
+        <li>Core-most tests
+          <ul>
+            <li><a href='tester1.html'>tester1</a>: Core unit and
+              regression tests for the various APIs and surrounding
+              utility code.</li>
+            <li><a href='tester1-worker.html'>tester1-worker</a>: same thing
+            but running in a Worker.</li>
+          </ul>
+        </li>
+        <li>High-level apps and demos...
+          <ul>
+            <li><a href='demo-123.html'>demo-123</a> provides a
+              no-nonsense example of adding sqlite3 support to a web
+              page in the UI thread.</li>
+            <li><a href='demo-123-worker.html'>demo-123-worker</a> is
+              the same as <code>demo-123</code> but loads and runs
+              sqlite3 from a Worker thread.</li>
+          </ul>
+        </li>
+      </ul>
+    </div>
+    <style>
+      #test-list { font-size: 120%; }
+    </style>
+    <script>//Assign a distinct target tab name for each test page...
+      document.querySelectorAll('a').forEach(function(e){
+          e.target = e.href;
+      });
+    </script>
+  </body>
+</html>
index c16315127800e48de279119d0d83ef24470a84a7..0de679f34fa5344f7e4d8f5f7393cbd885ef4d23 100644 (file)
@@ -4,8 +4,8 @@
     <meta charset="utf-8">
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
     <link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
-    <link rel="stylesheet" href="../common/emscripten.css"/>
-    <link rel="stylesheet" href="../common/testing.css"/>
+    <link rel="stylesheet" href="common/emscripten.css"/>
+    <link rel="stylesheet" href="common/testing.css"/>
     <title>sqlite3 tester #1 (UI thread)</title>
     <style>
       body {
index f141d54ba20482b68d9e1b34c1d1fad5cf1ee2d5..0194c6f7195c1095011060c134db392a057ec977 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Apply\sconsiderable\sacrobatics\sto\sget\sthe\sJS/WASM\sdeliverables\sbuilding\sto\sand\sloadable\sfrom\sa\sdirectory\sother\sthan\sthe\sone\swhich\scontains\sthe\sapp-level\scode.\sRequires\san\sonly-slightly-leaky\sabstraction\sof\spassing\sa\sURL\sargument\swhen\sloading\ssqlite3.js\sbut\sprovides\smuch\sgreater\sflexibility\sin\swhere\sthe\sJS/WASM\sfiles\sare\slocated.
-D 2022-10-19T04:44:58.210
+C Update\sthe\sdist\srules\sfor\sthis\sevening's\sjs/wasm\sbuild\schanges\sand\sinclude\san\sindex.html\sspecifically\sfor\sthe\ssubset\sof\sapps\sincluded\sin\sthe\sdist\sarchive.
+D 2022-10-19T06:06:42.551
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -472,12 +472,12 @@ F ext/userauth/sqlite3userauth.h 7f3ea8c4686db8e40b0a0e7a8e0b00fac13aa7a3
 F ext/userauth/user-auth.txt e6641021a9210364665fe625d067617d03f27b04
 F ext/userauth/userauth.c 7f00cded7dcaa5d47f54539b290a43d2e59f4b1eb5f447545fa865f002fc80cb
 F ext/wasm/EXPORTED_FUNCTIONS.fiddle.in 27450c8b8c70875a260aca55435ec927068b34cef801a96205adb81bdcefc65c
-F ext/wasm/GNUmakefile e9686a03f201a16786783964d0f2fcf4d9af8a9aee6e3ce5b6c3ee5d7750842f
-F ext/wasm/README-dist.txt 13438bafe5fab1eca223be91459e757e6e67248fc959b9ae0ffb5808fd0a1610
+F ext/wasm/GNUmakefile 1c60c998df5c33f49d1490a5746425e2d477389f4c9337613c507ff5a5a60c70
+F ext/wasm/README-dist.txt e78e44a58772d5b5d7a5a179b5bf639cd67b62249aac66138e2c319bd02dd243
 F ext/wasm/README.md 1e5b28158b74ab3ffc9d54fcbc020f0bbeb82c2ff8bbd904214c86c70e8a3066
 F ext/wasm/api/EXPORTED_FUNCTIONS.sqlite3-api 89983a8d122c35a90c65ec667844b95a78bcd04f3198a99c1e0c8368c1a0b03a
 F ext/wasm/api/EXPORTED_RUNTIME_METHODS.sqlite3-api 1ec3c73e7d66e95529c3c64ac3de2470b0e9e7fbf7a5b41261c367cf4f1b7287
-F ext/wasm/api/README.md 946398dd80bfd673f098b9d6ca3564e1fc77b03e660274d132f267c407b8703c
+F ext/wasm/api/README.md 1350088aee90e959ad9a94fab1bb6bcb5e99d4d27f976db389050f54f2640c78
 F ext/wasm/api/extern-post-js.js 4bba34d8301f6058abd8ee24d2778b7360c5c3679217b38f5670e97a5ba7a3ec
 F ext/wasm/api/extern-pre-js.js cc61c09c7a24a07dbecb4c352453c3985170cec12b4e7e7e7a4d11d43c5c8f41
 F ext/wasm/api/post-js-footer.js cd0a8ec768501d9bd45d325ab0442037fb0e33d1f3b4f08902f15c34720ee4a1
@@ -490,11 +490,11 @@ F ext/wasm/api/sqlite3-api-opfs.js 22d60ba956e873b65e2e0591e239178082bd53a6d563c
 F ext/wasm/api/sqlite3-api-prologue.js bdcd1f636e5ef0622f99b753aff0d26cc250bcd3a17923771e335ec73059b073
 F ext/wasm/api/sqlite3-api-worker1.js 7f4f46cb6b512a48572d7567233896e6a9c46570c44bdc3d13419730c7c221c8
 F ext/wasm/api/sqlite3-license-version-header.js a661182fc93fc2cf212dfd0b987f8e138a3ac98f850b1112e29b5fbdaecc87c3
-F ext/wasm/api/sqlite3-opfs-async-proxy.js 206ce6bbc3c30ad51a37d9c25e3a2712e70b586e0f9a2cf8cb0b9619017c2671 w ext/wasm/sqlite3-opfs-async-proxy.js
+F ext/wasm/api/sqlite3-opfs-async-proxy.js 206ce6bbc3c30ad51a37d9c25e3a2712e70b586e0f9a2cf8cb0b9619017c2671
 F ext/wasm/api/sqlite3-wasi.h 25356084cfe0d40458a902afb465df8c21fc4152c1d0a59b563a3fba59a068f9
 F ext/wasm/api/sqlite3-wasm.c 84d410a2b9defdac85e6a421736307ff3a3eed3c1b0ae3b7b140edbc6ad81a8f
-F ext/wasm/api/sqlite3-worker1-promiser.js f0aa93db62903f4006428cbcd2209a765655ec69a0e57247baba0fc94d745987 w ext/wasm/sqlite3-worker1-promiser.js
-F ext/wasm/api/sqlite3-worker1.js 59fd89ee42bc380a053a848d35806177c27eb82684ef152a34c65c7ce1b5d233 w ext/wasm/sqlite3-worker1.js
+F ext/wasm/api/sqlite3-worker1-promiser.js f0aa93db62903f4006428cbcd2209a765655ec69a0e57247baba0fc94d745987
+F ext/wasm/api/sqlite3-worker1.js 59fd89ee42bc380a053a848d35806177c27eb82684ef152a34c65c7ce1b5d233
 F ext/wasm/batch-runner.html 4deeed44fe41496dc6898d9fb17938ea3291f40f4bfb977e29d0cef96fbbe4c8
 F ext/wasm/batch-runner.js 5bae81684728b6be157d1f92b39824153f0fd019345b39f2ab8930f7ee2a57d8
 F ext/wasm/common/SqliteTestUtil.js 647bf014bd30bdd870a7e9001e251d12fc1c9ec9ce176a1004b838a4b33c5c05
@@ -506,12 +506,13 @@ F ext/wasm/demo-123.html 8c70a412ce386bd3796534257935eb1e3ea5c581e5d5aea0490b823
 F ext/wasm/demo-123.js ebae30756585bca655b4ab2553ec9236a87c23ad24fc8652115dcedb06d28df6
 F ext/wasm/demo-kvvfs1.html c4a69d2ded9cabad3e2eea75cd2936d9a13002ab4f10b9f1bac6130a0dee84dd
 F ext/wasm/demo-kvvfs1.js 105596bd2ccd0b1deb5fde8e99b536e8242d4bb5932fac0c8403ff3a6bc547e8
-F ext/wasm/dist.make 2015746f6cd37ed17fadb14dba45d41ac6db727917d04f9b9aa431a816c5e54d
+F ext/wasm/dist.make 0db045760d5740f7bb688bac68332af3c974d331f4bdd4cec623f37687b92d6b
 F ext/wasm/fiddle.make e5a8966be370bf8592cdffb2520ad8c3bf6a64d08ea91c8ed17dc88624967697
 F ext/wasm/fiddle/emscripten.css 3d253a6fdb8983a2ac983855bfbdd4b6fa1ff267c28d69513dd6ef1f289ada3f
 F ext/wasm/fiddle/fiddle-worker.js 531859a471924a0ea48afa218e6877f0c164ca324d51e15843ed6ecc1c65c7ee
 F ext/wasm/fiddle/fiddle.html 5daf54e8f3d7777cbb1ca4f93affe28858dbfff25841cb4ab81d694efed28ec2
 F ext/wasm/fiddle/fiddle.js 974b995119ac443685d7d94d3b3c58c6a36540e9eb3fed7069d5653284071715
+F ext/wasm/index-dist.html 5e579a9d4101c5bb15c6d97475b15c7a6195b4e3b4b42bc9f31deac475736e6a
 F ext/wasm/index.html 47fd8be5f76b7e1123edb301b604bc751ba387498a597d8dc48bce24d1007c57
 F ext/wasm/jaccwabyt/jaccwabyt.js 0d7f32817456a0f3937fcfd934afeb32154ca33580ab264dab6c285e6dbbd215
 F ext/wasm/jaccwabyt/jaccwabyt.md 9aa6951b529a8b29f578ec8f0355713c39584c92cf1708f63ba0cf917cb5b68e
@@ -527,7 +528,7 @@ F ext/wasm/sql/001-sudoku.sql 35b7cb7239ba5d5f193bc05ec379bcf66891bce6f2a5b3879f
 F ext/wasm/test-opfs-vfs.html 1f2d672f3f3fce810dfd48a8d56914aba22e45c6834e262555e685bce3da8c3f
 F ext/wasm/test-opfs-vfs.js 48fc59110e8775bb43c9be25b6d634fc07ebadab7da8fbd44889e8129c6e2548
 F ext/wasm/tester1-worker.html 048c341f124fdb61ca14dfd1bd1f78742490f208aa3bb1e84399f83f1e7e6a74
-F ext/wasm/tester1.html 66b71e2accdcbedae2593c72d2a69f906757707394dc014c2253102f0838cf57
+F ext/wasm/tester1.html 37ccc958fa0d95074af2d72b7241c8e2d982bbec6dda4dc790241af3d933c3b6
 F ext/wasm/tester1.js 44d71175e2941bf1d7c27afa0c395fe81c83cbd74cd10e34e0688dd833042f1e
 F ext/wasm/testing-worker1-promiser.html 88c6ff8a7be351abef219639cd684c5c3e0c649c1dc07b10a5bd59939e7bb4b5
 F ext/wasm/testing-worker1-promiser.js f68ffbbe1c6086e18ce7961b8fc2b40dd88db174f59052e228c06b07484945ca
@@ -2035,8 +2036,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P 5b23e0675efdd2f1ea7b4f5836a579e8d6aa8a25b3f1a6a950520ad845ff01bb
-R 120493b0bac13d94c837a00d100ef2e2
+P 6d468dab9eb84d4548f68014959f02fe4f66455472ff24fe729382bb2972e3d1
+R c3bcb52d1a251087b76c2618ae8668d8
 U stephan
-Z 1f6ca89c3f0ab931ccb09f09451983aa
+Z f3f479298121a0f7f76d8d380e2cd8a4
 # Remove this line to create a well-formed Fossil manifest.
index cb6b4b3768bbe7c27c4c60c8ebaa1d3a55b55ea4..1eab43590567fcd1cd9ad365c7bad56436bd1f7d 100644 (file)
@@ -1 +1 @@
-6d468dab9eb84d4548f68014959f02fe4f66455472ff24fe729382bb2972e3d1
\ No newline at end of file
+a0ef0f32e96638b502b3951e524d590bdfb09dd39be453686b075102da67b7db
\ No newline at end of file