This is an automated email from the ASF dual-hosted git repository.
github-actions[bot] pushed a change to branch chore/sync-info
in repository https://gitbox.apache.org/repos/asf/answer-plugins.git
omit 78e47c3 chore: Sync Plugin Info
omit d940ee3 feat(i18n): add options for embedding level in English and
Chinese translations
omit 8d3cf49 feat: add in-memory vector search plugin with multilingual
support
omit ebe6365 fix(import): add rand import
add 00855eb fix(import): add rand import
add da57274 fix: quick-links add divider
add 23b2868 feat: add TypeScript configuration and Vite setup for editor
stacks
add 615a249 feat(editor-stacks): add internationalization support with
English and Chinese translations
add 44d5932 fix: correct registration mode property in editor stacks
add 34a3b58 chore: add Apache License header to global.d.ts, info.yaml,
and vite.config.ts
add 96489ed fix: adjust formatting in license comments for consistency
add 5a0adfe fix(info.yaml): update author and link fields for editor
stacks
add 17ee92a fix(editor-stacks): refactor event handlers and improve
cleanup in Component
add ba8a24d feat(editor-stacks): add onChange plugin for content
monitoring and update imports to single quotes
add 4495038 fix: quick-links update
add 19b8134 Refactor code structure for improved readability and
maintainability
add 223636c fix(editor-stacks/onChange-plugin): update import types and
enhance content retrieval logic
add b6a9486 Refactor code structure for improved readability and
maintainability
add 71fb6a2 fix(editor-stacks/Component): enhance onChange plugin to
include editor instance reference
add caf4692 fix(editor-stacks): remove registrationMode from info
configuration
add 45d0c0a fix(editor-stacks/Component): add editor help link to
component props
add 27ad6e9 fix(editor-stacks/Component): add MIME type conversion for
file extensions and hide specific menu buttons
add eb4d8cd fix: cannot use private name ComponentProps
add 0f638e3 storage-s3: Add DigitalOcean note.
add 0c98d09 chore: Sync Plugin Info
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 (78e47c3)
\
N -- N -- N refs/heads/chore/sync-info (0c98d09)
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:
editor-stacks/Component.tsx | 265 ++++++++++++++++
editor-stacks/README.md | 28 ++
.../formula.go => editor-stacks/editor_stacks.go | 13 +-
embed-basic/types.ts => editor-stacks/global.d.ts | 5 +-
{vector-search-memory => editor-stacks}/go.mod | 4 +-
{vector-search-memory => editor-stacks}/go.sum | 0
.../i18n/en_US.yaml | 8 +-
{captcha-basic => editor-stacks}/i18n/index.ts | 4 +-
.../i18n/translation.go | 4 +-
.../en_US.yaml => editor-stacks/i18n/zh_CN.yaml | 8 +-
{quick-links => editor-stacks}/index.ts | 8 +-
{editor-chart => editor-stacks}/info.yaml | 10 +-
editor-stacks/onChange-plugin.ts | 75 +++++
{quick-links => editor-stacks}/package.json | 23 +-
{quick-links => editor-stacks}/tsconfig.json | 8 +-
.../tsconfig.node.json | 0
{captcha-basic => editor-stacks}/vite.config.ts | 50 +++-
plugins_desc.json | 20 +-
quick-links/Component.tsx | 30 +-
quick-links/info.yaml | 2 +-
quick-links/package.json | 2 +-
render-markdown-codehighlight/generate-theme.cjs | 4 +-
storage-s3/README.md | 10 +-
vector-search-memory/README.md | 55 ----
vector-search-memory/i18n/en_US.yaml | 56 ----
vector-search-memory/i18n/translation.go | 42 ---
vector-search-memory/i18n/zh_CN.yaml | 56 ----
vector-search-memory/info.yaml | 22 --
vector-search-memory/memory.go | 332 ---------------------
vector-search-memory/sync.go | 102 -------
30 files changed, 518 insertions(+), 728 deletions(-)
create mode 100644 editor-stacks/Component.tsx
create mode 100644 editor-stacks/README.md
copy editor-formula/formula.go => editor-stacks/editor_stacks.go (84%)
copy embed-basic/types.ts => editor-stacks/global.d.ts (91%)
rename {vector-search-memory => editor-stacks}/go.mod (97%)
rename {vector-search-memory => editor-stacks}/go.sum (100%)
copy {connector-apache => editor-stacks}/i18n/en_US.yaml (86%)
copy {captcha-basic => editor-stacks}/i18n/index.ts (92%)
copy {captcha-basic => editor-stacks}/i18n/translation.go (87%)
copy connector-apache/i18n/en_US.yaml => editor-stacks/i18n/zh_CN.yaml (86%)
copy {quick-links => editor-stacks}/index.ts (90%)
copy {editor-chart => editor-stacks}/info.yaml (90%)
create mode 100644 editor-stacks/onChange-plugin.ts
copy {quick-links => editor-stacks}/package.json (62%)
copy {quick-links => editor-stacks}/tsconfig.json (83%)
copy {connector-wallet => editor-stacks}/tsconfig.node.json (100%)
copy {captcha-basic => editor-stacks}/vite.config.ts (51%)
delete mode 100644 vector-search-memory/README.md
delete mode 100644 vector-search-memory/i18n/en_US.yaml
delete mode 100644 vector-search-memory/i18n/translation.go
delete mode 100644 vector-search-memory/i18n/zh_CN.yaml
delete mode 100644 vector-search-memory/info.yaml
delete mode 100644 vector-search-memory/memory.go
delete mode 100644 vector-search-memory/sync.go