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 22d33a2 chore: Sync Plugin Info
omit eb4d8cd fix: cannot use private name ComponentProps
omit 27ad6e9 fix(editor-stacks/Component): add MIME type conversion for
file extensions and hide specific menu buttons
omit 45d0c0a fix(editor-stacks/Component): add editor help link to
component props
omit caf4692 fix(editor-stacks): remove registrationMode from info
configuration
omit 71fb6a2 fix(editor-stacks/Component): enhance onChange plugin to
include editor instance reference
omit b6a9486 Refactor code structure for improved readability and
maintainability
omit 223636c fix(editor-stacks/onChange-plugin): update import types and
enhance content retrieval logic
omit 19b8134 Refactor code structure for improved readability and
maintainability
omit 4495038 fix: quick-links update
omit ba8a24d feat(editor-stacks): add onChange plugin for content
monitoring and update imports to single quotes
omit 17ee92a fix(editor-stacks): refactor event handlers and improve
cleanup in Component
omit 5a0adfe fix(info.yaml): update author and link fields for editor
stacks
omit 96489ed fix: adjust formatting in license comments for consistency
omit 34a3b58 chore: add Apache License header to global.d.ts, info.yaml,
and vite.config.ts
omit 44d5932 fix: correct registration mode property in editor stacks
omit 615a249 feat(editor-stacks): add internationalization support with
English and Chinese translations
omit 23b2868 feat: add TypeScript configuration and Vite setup for editor
stacks
omit da57274 fix: quick-links add divider
omit 00855eb fix(import): add rand import
add ebe6365 fix(import): add rand import
add 8d3cf49 feat: add in-memory vector search plugin with multilingual
support
add d940ee3 feat(i18n): add options for embedding level in English and
Chinese translations
add 78e47c3 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 (22d33a2)
\
N -- N -- N refs/heads/chore/sync-info (78e47c3)
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 --
editor-stacks/editor_stacks.go | 52 ----
editor-stacks/global.d.ts | 23 --
editor-stacks/i18n/en_US.yaml | 25 --
editor-stacks/i18n/index.ts | 26 --
editor-stacks/i18n/translation.go | 25 --
editor-stacks/i18n/zh_CN.yaml | 25 --
editor-stacks/index.ts | 31 --
editor-stacks/info.yaml | 22 --
editor-stacks/onChange-plugin.ts | 75 -----
editor-stacks/package.json | 50 ----
editor-stacks/tsconfig.json | 34 ---
editor-stacks/tsconfig.node.json | 11 -
editor-stacks/vite.config.ts | 100 -------
plugins_desc.json | 244 +++++++--------
quick-links/Component.tsx | 30 +-
quick-links/info.yaml | 2 +-
quick-links/package.json | 2 +-
render-markdown-codehighlight/generate-theme.cjs | 4 +-
vector-search-memory/README.md | 55 ++++
{editor-stacks => vector-search-memory}/go.mod | 4 +-
{editor-stacks => vector-search-memory}/go.sum | 0
.../i18n/en_US.yaml | 43 +--
vector-search-memory/i18n/translation.go | 42 +++
.../i18n/zh_CN.yaml | 43 +--
{cache-redis => vector-search-memory}/info.yaml | 8 +-
vector-search-memory/memory.go | 332 +++++++++++++++++++++
vector-search-memory/sync.go | 102 +++++++
29 files changed, 713 insertions(+), 990 deletions(-)
delete mode 100644 editor-stacks/Component.tsx
delete mode 100644 editor-stacks/README.md
delete mode 100644 editor-stacks/editor_stacks.go
delete mode 100644 editor-stacks/global.d.ts
delete mode 100644 editor-stacks/i18n/en_US.yaml
delete mode 100644 editor-stacks/i18n/index.ts
delete mode 100644 editor-stacks/i18n/translation.go
delete mode 100644 editor-stacks/i18n/zh_CN.yaml
delete mode 100644 editor-stacks/index.ts
delete mode 100644 editor-stacks/info.yaml
delete mode 100644 editor-stacks/onChange-plugin.ts
delete mode 100644 editor-stacks/package.json
delete mode 100644 editor-stacks/tsconfig.json
delete mode 100644 editor-stacks/tsconfig.node.json
delete mode 100644 editor-stacks/vite.config.ts
create mode 100644 vector-search-memory/README.md
rename {editor-stacks => vector-search-memory}/go.mod (97%)
rename {editor-stacks => vector-search-memory}/go.sum (100%)
copy {search-algolia => vector-search-memory}/i18n/en_US.yaml (50%)
create mode 100644 vector-search-memory/i18n/translation.go
copy {search-algolia => vector-search-memory}/i18n/zh_CN.yaml (51%)
copy {cache-redis => vector-search-memory}/info.yaml (84%)
create mode 100644 vector-search-memory/memory.go
create mode 100644 vector-search-memory/sync.go