[PR #20] [CLOSED] windows shell module - WIP version of the module. #26

Closed
opened 2026-06-06 22:10:42 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/vxcontrol/soldr-modules/pull/20
Author: @jnovikov
Created: 12/13/2022
Status: Closed

Base: masterHead: shell_win


📝 Commits (3)

  • bdf784f fix typo in the license
  • e641f64 windows shell module - WIP version of the module.
  • e996f6f Merge branch 'master' into shell_win

📊 Changes

25 files changed (+1979 additions, -0 deletions)

View changed files

shell_win/0.1.0/bmodule/main.vue (+214 -0)
shell_win/0.1.0/bmodule/xterm.css (+192 -0)
shell_win/0.1.0/bmodule/xterm.js (+1 -0)
shell_win/0.1.0/cmodule/args.json (+4 -0)
shell_win/0.1.0/cmodule/engines/acts_engine.lua (+266 -0)
shell_win/0.1.0/cmodule/engines/base_engine.lua (+330 -0)
shell_win/0.1.0/cmodule/engines/winprocess.lua (+255 -0)
shell_win/0.1.0/cmodule/main.lua (+75 -0)
shell_win/0.1.0/config/action_config_schema.json (+105 -0)
shell_win/0.1.0/config/changelog.json (+14 -0)
shell_win/0.1.0/config/config_schema.json (+6 -0)
shell_win/0.1.0/config/current_action_config.json (+16 -0)
shell_win/0.1.0/config/current_config.json (+1 -0)
shell_win/0.1.0/config/current_event_config.json (+39 -0)
shell_win/0.1.0/config/default_action_config.json (+16 -0)
shell_win/0.1.0/config/default_config.json (+1 -0)
shell_win/0.1.0/config/default_event_config.json (+39 -0)
shell_win/0.1.0/config/dynamic_dependencies.json (+1 -0)
shell_win/0.1.0/config/event_config_schema.json (+102 -0)
shell_win/0.1.0/config/fields_schema.json (+35 -0)

...and 5 more files

📄 Description

Change introduces new shell module that allow to spawn interactive shell and provides frontend to communicate with the spawned shell. The module is not yet complete but already can be used to do simple operations.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/vxcontrol/soldr-modules/pull/20 **Author:** [@jnovikov](https://github.com/jnovikov) **Created:** 12/13/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `shell_win` --- ### 📝 Commits (3) - [`bdf784f`](https://github.com/vxcontrol/soldr-modules/commit/bdf784fda7336a20eb566b708547edb2ba029750) fix typo in the license - [`e641f64`](https://github.com/vxcontrol/soldr-modules/commit/e641f642a0d8fc4aee3f65039be80f117598347d) windows shell module - WIP version of the module. - [`e996f6f`](https://github.com/vxcontrol/soldr-modules/commit/e996f6fa0836f906b656517990c68d2fa8963577) Merge branch 'master' into shell_win ### 📊 Changes **25 files changed** (+1979 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `shell_win/0.1.0/bmodule/main.vue` (+214 -0) ➕ `shell_win/0.1.0/bmodule/xterm.css` (+192 -0) ➕ `shell_win/0.1.0/bmodule/xterm.js` (+1 -0) ➕ `shell_win/0.1.0/cmodule/args.json` (+4 -0) ➕ `shell_win/0.1.0/cmodule/engines/acts_engine.lua` (+266 -0) ➕ `shell_win/0.1.0/cmodule/engines/base_engine.lua` (+330 -0) ➕ `shell_win/0.1.0/cmodule/engines/winprocess.lua` (+255 -0) ➕ `shell_win/0.1.0/cmodule/main.lua` (+75 -0) ➕ `shell_win/0.1.0/config/action_config_schema.json` (+105 -0) ➕ `shell_win/0.1.0/config/changelog.json` (+14 -0) ➕ `shell_win/0.1.0/config/config_schema.json` (+6 -0) ➕ `shell_win/0.1.0/config/current_action_config.json` (+16 -0) ➕ `shell_win/0.1.0/config/current_config.json` (+1 -0) ➕ `shell_win/0.1.0/config/current_event_config.json` (+39 -0) ➕ `shell_win/0.1.0/config/default_action_config.json` (+16 -0) ➕ `shell_win/0.1.0/config/default_config.json` (+1 -0) ➕ `shell_win/0.1.0/config/default_event_config.json` (+39 -0) ➕ `shell_win/0.1.0/config/dynamic_dependencies.json` (+1 -0) ➕ `shell_win/0.1.0/config/event_config_schema.json` (+102 -0) ➕ `shell_win/0.1.0/config/fields_schema.json` (+35 -0) _...and 5 more files_ </details> ### 📄 Description Change introduces new shell module that allow to spawn interactive shell and provides frontend to communicate with the spawned shell. The module is not yet complete but already can be used to do simple operations. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-06 22:10:42 -04:00
yindo closed this issue 2026-06-06 22:10:42 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: vxcontrol/soldr-modules#26