This is an automated email from the ASF dual-hosted git repository.
rstrickland pushed a change to branch fix-data-editor-edit-instructions
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git
omit 9faa6f9 Implementing Help Component
add 2ea8aea upgrade to Ωedit™ v0.9.73
add 4e28136 fix yarn.lock so it correctly matches the deps in package.json
add 8a3d9bb update nightly CI to test under node 16 and 18
add 99a9147 Update scalafmt-core to 3.7.13
add 2f70023 Update fs2-io to 3.9.1
add b0cde3b Update sbt to 1.8.3
add 980c2c4 Bump actions/setup-java from 3.11.0 to 3.12.0
add b807720 Implemented Relative Seek Offset Traversal
add 7b27a84 initial testing checklist
add 65a91c0 Bump actions/setup-node from 3.6.0 to 3.8.1
add 9f5337f Bump scala-steward-org/scala-steward-action from 2.51.0 to
2.61.0
add 11aeb02 Update log4cats-slf4j to 2.6.0
add e7421e7 Update sbt-native-packager to 1.9.16
add f1ddbcb Update decline-effect to 2.4.1
add 95f31a1 remove debugger server from yarn watch
add e8f6698 Bump actions/setup-node from 3.5.0 to 3.8.1
add c860008 Bump get-func-name from 2.0.0 to 2.0.2
add 9d43d18 add Makefile to create docx and html documents from the wiki
add 1475de6 Implemented Configurable Data Viewport Geometry
add 39757e4 Implementing Help Component
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (9faa6f9)
\
N -- N -- N refs/heads/fix-data-editor-edit-instructions
(39757e4)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/CI.yml | 18 +-
.github/workflows/nightly.yml | 10 +-
.github/workflows/scala-steward.yml | 2 +-
.gitignore | 5 +
.scalafmt.conf | 2 +-
build.sbt | 6 +-
build/yarn-scripts.ts | 2 -
debugger/nodemon.json | 13 -
.../org.apache.daffodil.debugger.dap/DAPodil.scala | 2 +-
.../org.apache.daffodil.debugger.dap/Parse.scala | 2 +-
doc/Makefile | 86 +++
package.json | 51 +-
project/Rat.scala | 2 -
project/build.properties | 2 +-
project/plugins.sbt | 2 +-
src/adapter/daffodilDebug.ts | 5 +-
src/dataEditor/dataEditorClient.ts | 56 +-
src/dataEditor/demos/demo-highlight_overlays.html | 2 +-
src/dataEditor/demos/demo-infinite_scrolling.html | 2 +-
.../DataDisplays/CustomByteDisplay/BinaryData.ts | 8 +-
.../CustomByteDisplay/DataLineFeed.svelte | 89 ++-
.../DataDisplays/Header/DisplayHeader.svelte | 192 ++++---
...yteFrequencyGraph.svelte => DataMetrics.svelte} | 7 +
.../src/components/Editors/DataEditor.svelte | 108 +++-
src/svelte/src/components/Error/Error.svelte | 7 +-
.../components/Header/fieldsets/FileMetrics.svelte | 2 +-
.../Header/fieldsets/SearchReplace.svelte | 17 +-
.../components/Header/fieldsets/SearchReplace.ts | 7 +
.../components/Header/fieldsets/Settings.svelte | 4 +-
.../components/Icons/ViewportVisibilityIcon.svelte | 214 +++++++
.../src/components/Inputs/Buttons/Button.svelte | 4 +-
src/svelte/src/components/Main.svelte | 40 +-
.../components/ServerMetrics/ServerMetrics.svelte | 23 +-
src/svelte/src/components/dataEditor.svelte | 25 +-
src/svelte/src/components/globalStyles.css | 28 +-
src/svelte/src/stores/configuration.ts | 12 +-
src/svelte/src/stores/index.ts | 75 ++-
src/tests/README.md | 176 ++++++
src/tests/suite/dataEditor.test.ts | 5 +-
yarn.lock | 640 ++++++++-------------
40 files changed, 1277 insertions(+), 676 deletions(-)
delete mode 100644 debugger/nodemon.json
create mode 100644 doc/Makefile
rename src/svelte/src/components/DataMetrics/{ByteFrequencyGraph.svelte =>
DataMetrics.svelte} (98%)
create mode 100644
src/svelte/src/components/Icons/ViewportVisibilityIcon.svelte
create mode 100644 src/tests/README.md