Compare commits

..

No commits in common. "37c8672e4a0f8fd14c66cf4e97e76f7a0e1a5c09" and "9e190b45bd9c1222cd1a0853262e9ce77afe8030" have entirely different histories.

3 changed files with 2 additions and 18 deletions

View File

@ -1,16 +0,0 @@
#!/bin/bash
mkdir -p "build/Custom Web Tools"
cp plugin.js "build/Custom Web Tools/plugin.js"
cp package.json "build/Custom Web Tools/package.json"
rm CustomWebTools*.zip
cd build
zip -r ../CustomWebTools.v1.1.0.zip "Custom Web Tools"
cd ..
rm -r build

View File

@ -1,6 +1,6 @@
{
"name": "postalpoint_custom_web_tools",
"version": "1.1.0",
"version": "1.0.0",
"main": "plugin.js",
"author": "PostalPortal LLC",
"license": "BSD-3-Clause",

View File

@ -16,7 +16,7 @@ exports.init = function () {
}
global.apis.ui.addToolsPage(function () {
global.apis.ui.openInternalWebBrowser(urls[i]);
}, titles[i], "customwebtools_" + encodeURIComponent(urls[i]), (titles[i] == urls[i] ? "" : urls[i]), titles[i], "fa-duotone fa-globe-pointer", "function");
}, titles[i], "", (titles[i] == urls[i] ? "" : urls[i]), titles[i], "fa-duotone fa-globe-pointer", "function");
}
};