Skip to content

Tags: Acode-Foundation/Acode

Tags

v1.11.4

Toggle v1.11.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update config.xml 

v1.11.4-beta.3

Toggle v1.11.4-beta.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: plugin enable/disable functionality (#1389) Co-authored-by: Raunak Raj <71929976+bajrangCoder@users.noreply.github.com>

v1.11.4-beta.2

Toggle v1.11.4-beta.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: don't save state of SAFMode="single" files (#1386) 

v1.11.4-beta

Toggle v1.11.4-beta's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Comment out column adjustment in touchHandler.js (#1359) 

v1.11.3

Toggle v1.11.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
bump v1.11.3 (#1349) 

v1.11.2

Toggle v1.11.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
bump: stable v1.11.2 (#1323) 

v1.11.2-beta.5

Toggle v1.11.2-beta.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix. path overlap issue in html viewer (#1318) 

v1.11.2-beta.4

Toggle v1.11.2-beta.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add support for compound file paths like `.blade.php` (#1308) 

v1.11.2-beta.3

Toggle v1.11.2-beta.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed select box issue and improved multiple aspects of it (#1296) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

v1.11.2-beta.2

Toggle v1.11.2-beta.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
File Menu & QuickTools Visibility for editor tabs (#1292) ## Changes This PR implements visibility management for the file menu icon and adds QuickTools visibility control per tab. ### File Menu Icon (Pencil Icon) - Hides the file menu icon from header when active editor tab type is "page", otherwise show it ### QuickTools - Adds `hideQuickTools` boolean property to EditorFile (defaults to false) - Allows per-tab control of QuickTools visibility ## Usage ```javascript // Create a new tab with QuickTools hidden new EditorFile("My Tab", { hideQuickTools: true }); ```