2.1.16#85
Draft
acharneski wants to merge 57 commits into
Draft
Conversation
| const [messages, setMessages] = useState<Message[]>([]); | ||
|
|
||
| const [sessionId] = useState(() => propSessionId || window.location.hash.slice(1) || newSessionId()); | ||
| const [sessionId] = useState(() => { |
…s in upload and delete handlers
…authentication handling
Switch HSQL handling to a shared embedded server model and remove per-instance root args from DB classes. DatabaseFacet now registers databases, manages a single shared server lifecycle (start/restart/shutdown), and exposes connection helpers without root parameters. ApplicationServices updated to construct DB managers without file roots; MetadataStorageDB, UsageDB and UserSettingsDB updated to use the shared facet API. ResourceApps JSON parsing and app registration normalized (path/id/appId handling) and README loading refactored. FileServlet was heavily rewritten: improved GET/HEAD/POST/PUT/DELETE handling, better error responses, HEAD support, virtual _files.json and markdown/pdf/txt fallbacks, and stricter access control checks. DocProcessorAction and PluginStartupActivity received minor logging/import tweaks and model-fallback adjustments. Corresponding tests were updated to match the DB API changes.
Introduce tag-based filtering and category grouping/collapse in the app directory UI. Adds app-directory.css for styling tag chips, category headers and app card tags; updates welcome.html to include the stylesheet and tag filter container. Enhances appDirectory.js with tag filter state, tag extraction, category grouping, collapsible category UI, tag-aware filtering logic, and rendering of app tags on cards; search/no-results behavior updated to account for active tag filters. Exposes escapeHtml via a global HtmlUtils in htmlUtils.js. Server-side changes (AppDirectoryServlet and ResourceApps) include category and tags in the app metadata JSON so the frontend can render and filter by them.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
2.1.16