-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Comodo IceDragon support to the Mozilla exporter. Add Visual Studio Code support. Change license to Apache License 2.0. Fix release-only bug when adding extensions to the exported files. Improve group counting script. Merge the raw Internet Explorer 4 to 9 files with the regular output. Pass build mode to Build.bat. Refactor code. Rename Basilisk output directory. Update group files.
- Loading branch information
1 parent
caa9f5c
commit be3b4e0
Showing
30 changed files
with
953 additions
and
667 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": | ||
[ | ||
{ | ||
"name": "Debug Launch (9x, 32-bit)", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${workspaceFolder}\\Builds\\Debug\\9x-x86\\WCE9x32.exe", | ||
"args": ["-o", "-faea", "WCE9x32"], | ||
"cwd": "${workspaceFolder}", | ||
"logging": | ||
{ | ||
"exceptions": false, | ||
"moduleLoad": false | ||
} | ||
}, | ||
|
||
{ | ||
"name": "Debug Launch (NT, 32-bit)", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${workspaceFolder}\\Builds\\Debug\\NT-x86\\WCE32.exe", | ||
"args": ["-o", "-faea", "WCE32"], | ||
"cwd": "${workspaceFolder}", | ||
"logging": | ||
{ | ||
"exceptions": false, | ||
"moduleLoad": false | ||
} | ||
}, | ||
|
||
{ | ||
"name": "Debug Launch (NT, 64-bit)", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${workspaceFolder}\\Builds\\Debug\\NT-x64\\WCE64.exe", | ||
"args": ["-o", "-faea", "WCE64"], | ||
"cwd": "${workspaceFolder}", | ||
"logging": | ||
{ | ||
"exceptions": false, | ||
"moduleLoad": false | ||
} | ||
}, | ||
|
||
{ | ||
"name": "Release Launch (9x, 32-bit)", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${workspaceFolder}\\Builds\\Release\\WCE9x32.exe", | ||
"args": ["-o", "-faea", "WCE9x32"], | ||
"cwd": "${workspaceFolder}", | ||
"logging": | ||
{ | ||
"exceptions": false, | ||
"moduleLoad": false | ||
} | ||
}, | ||
|
||
{ | ||
"name": "Release Launch (NT, 32-bit)", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${workspaceFolder}\\Builds\\Release\\WCE32.exe", | ||
"args": ["-o", "-faea", "WCE32"], | ||
"cwd": "${workspaceFolder}", | ||
"logging": | ||
{ | ||
"exceptions": false, | ||
"moduleLoad": false | ||
} | ||
}, | ||
|
||
{ | ||
"name": "Release Launch (NT, 64-bit)", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${workspaceFolder}\\Builds\\Release\\WCE64.exe", | ||
"args": ["-o", "-faea", "WCE64"], | ||
"cwd": "${workspaceFolder}", | ||
"logging": | ||
{ | ||
"exceptions": false, | ||
"moduleLoad": false | ||
} | ||
} | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": | ||
[ | ||
{ | ||
"group": "build", | ||
"label": "Debug Build", | ||
"type": "shell", | ||
"command": "${workspaceFolder}\\Build.bat", | ||
"args": ["debug"], | ||
"presentation": | ||
{ | ||
"clear": true | ||
} | ||
}, | ||
|
||
{ | ||
"group": "build", | ||
"label": "Debug Build (Empty Export)", | ||
"type": "shell", | ||
"command": "${workspaceFolder}\\Build.bat", | ||
"args": ["debug", "/D", "WCE_EMPTY_EXPORT"], | ||
"presentation": | ||
{ | ||
"clear": true | ||
} | ||
}, | ||
|
||
{ | ||
"group": "build", | ||
"label": "Release Build", | ||
"type": "shell", | ||
"command": "${workspaceFolder}\\Build.bat", | ||
"args": ["release"], | ||
"presentation": | ||
{ | ||
"clear": true | ||
} | ||
}, | ||
|
||
{ | ||
"group": "build", | ||
"label": "Release Build (Debug Symbols)", | ||
"type": "shell", | ||
"command": "${workspaceFolder}\\Build.bat", | ||
"args": ["release", "/Zi"], | ||
"presentation": | ||
{ | ||
"clear": true | ||
} | ||
}, | ||
|
||
{ | ||
"group": "build", | ||
"label": "Package Build", | ||
"dependsOn": ["Debug Build", "Release Build"], | ||
"dependsOrder": "sequence" | ||
} | ||
] | ||
} |
Oops, something went wrong.