diff --git a/aiAssets/LAYOUT.md b/aiAssets/LAYOUT.md new file mode 100644 index 0000000..8e474b7 --- /dev/null +++ b/aiAssets/LAYOUT.md @@ -0,0 +1,19 @@ +# Unified Layout + +[Select Folder] [Select Files] [Clear] + +(PLEC UPLOAD) +| FILENAME |ITERATION NAME| | +|-----------------|--------------|---| +|pato-to-file.html| 01_full | X | +|pato-to-file.html| 01_full | X | +|pato-to-file.html| 01_full | X | + +(AppLovin Playable Preview)(Base64 Scanner)(Send To Mobile)(MRAID Checker) +| FILENAME | | +|-----------------|-------| +|pato-to-file.html| X | +|pato-to-file.html| X | +|pato-to-file.html| X | + +[Scan]/[Upload]/[Start] \ No newline at end of file diff --git a/package.json b/package.json index 8a443c5..bc73b91 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hpl-toolbox", "displayName": "HPL Toolbox", - "description": "Bundled tools: PLEC Upload, AppLovin Demo Upload, Base64 Asset Scanner, MRAID Checker. Local HTML Host.", + "description": "Bundled tools: PLEC Upload, AppLovin Playable Preview, Base64 Scanner, MRAID Checker. Local HTML Host.", "version": "0.1.6", "publisher": "hesukastro", "license": "UNLICENSED", @@ -26,7 +26,7 @@ }, { "command": "hplToolbox.openApplovinUpload", - "title": "HPL Toolbox: Open AppLovin Demo Upload" + "title": "HPL Toolbox: Open AppLovin Playable Preview" }, { "command": "hplToolbox.openBase64Scanner", @@ -59,7 +59,7 @@ { "type": "webview", "id": "hplToolbox.launcher", - "name": "Tools" + "name": "" } ] }, @@ -132,4 +132,4 @@ "@types/vscode": "^1.85.0", "typescript": "^5.4.0" } -} \ No newline at end of file +} diff --git a/src/launcherView.ts b/src/launcherView.ts index 2ba0936..4c0a9e6 100644 --- a/src/launcherView.ts +++ b/src/launcherView.ts @@ -17,7 +17,7 @@ const TOOLS: ToolDefinition[] = [ }, { command: 'hplToolbox.openApplovinUpload', - title: 'AppLovin Demo Upload', + title: 'AppLovin Playable Preview', description: 'Upload to p.applov.in (QR preview)', }, { @@ -80,7 +80,6 @@ function getHtml(version: string, betaToolsEnabled: boolean): string { color: var(--vscode-foreground); padding: 12px 8px; } - h3 { margin: 0 0 12px 0; font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; opacity: 0.7; } .tools { flex: 1; } .tool-btn { display: block; width: 100%; text-align: left; @@ -122,10 +121,15 @@ function getHtml(version: string, betaToolsEnabled: boolean): string { background: var(--vscode-button-secondaryHoverBackground); } .beta-note { display: block; margin-top: 3px; color: var(--vscode-descriptionForeground); font-size: 11px; } + .footer { + margin-top: 10px; + color: var(--vscode-descriptionForeground); + font-size: 8px; + text-align: right; + }
-