You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
[[ Bug 19946 ]] Add active extension folders preference
Any folder containing a folder containing an extension selected
for loading by the user is added to the cDeveloperExtensionsFolders
preference. This patch adds a cDeveloperExtensionsActiveFolders
preference which controls which of the above folders are actually
searched for extensions in the extension builder. This preference
can be set using the cog at the top-right of the extension builder
stack.
put revIDEDeveloperExtensionsFolders() intotFolders
48
+
repeatforeachlinetLineintFolders
49
+
put FolderPathForMenu(tLine) intotMenuItem
50
+
iftOptionsisemptythen
51
+
puttMenuItemintotOptions
52
+
else
53
+
putcomma&tMenuItemaftertOptions
54
+
end if
55
+
end repeat
56
+
57
+
addFrameItem "cDeveloperExtensionsActiveFolders", "header", "preference", "Folders to search for extensions", "set", tOptions, "togglePreference", thelong id of me
58
+
59
+
--addFrameItem "add","header", "action", "Create a new extension", "plus sign", "plus sign","headerActionNewExtension", the long id of me
60
+
addFrameItem "open","header", "action", "Open an existing extension", "folder open", "folder open","headerActionOpenExtension", thelong id of me
61
+
addFrameItem "edit source", "header", "action", "Edit extension source code", "lc-edit-script", "lc-edit-script", "headerActionEditSource", thelong id of me
62
+
63
+
addFrameItem "package","footer", "action", "Package", "archive", "archive","footerActionPackage", thelong id of me
64
+
addFrameItem "uninstall","footer", "action", "Uninstall", "remove circle", "remove circle","footerActionUninstall", thelong id of me
65
+
addFrameItem "install","footer", "action", "Install", "plus sign", "plus sign","footerActionInstall", thelong id of me
66
+
addFrameItem "stop testing","footer", "action", "Stop testing extension", "stop circle", "stop circle","footerActionStopTesting", thelong id of me
67
+
addFrameItem "test","footer", "action", "Test extension", "play circle", "play circle","footerActionTest", thelong id of me
0 commit comments