Massive improvements for upcoming updates

- All JSON definitions have been updates to become lowercase
- _Scripts/convert_vipakfile.sh now understand BasicAuth
- Improvements to the overall code
This commit is contained in:
Antranig Vartanian 2025-10-05 14:14:02 +04:00
parent 91191b6b62
commit 5bf0a1065c
No known key found for this signature in database
GPG key ID: DE3998662D59F21C
44 changed files with 896 additions and 491 deletions

View file

@ -1,21 +1,37 @@
{
"Package": "oberonDS",
"Author": "InnaKhachikyan",
"License": "unknown",
"Version": "0.1.0",
"Remote":
{
"package": "oberonDS",
"author": "InnaKhachikyan",
"license": "unknown",
"version": "0.1.0",
"remote": {
"type": "git",
"path": "https://github.com/InnaKhachikyan/oberonDS",
"tag" : "0.1.0"
"tag": "0.1.0"
},
"build": [
{
"command": "voc -s",
"file": "src/DynamicArray.Mod"
},
"Build":
[
{"command": "voc -s", "file": "src/DynamicArray.Mod"},
{"command": "voc -s", "file": "src/HashMap.Mod"},
{"command": "voc -s", "file": "src/Map.Mod"},
{"command": "voc -m", "file": "test/DynamicArrayTest.Mod"},
{"command": "voc -m", "file": "test/HashMapTest.Mod"},
{"command": "voc -m", "file": "test/MapTest.Mod"}
]
{
"command": "voc -s",
"file": "src/HashMap.Mod"
},
{
"command": "voc -s",
"file": "src/Map.Mod"
},
{
"command": "voc -m",
"file": "test/DynamicArrayTest.Mod"
},
{
"command": "voc -m",
"file": "test/HashMapTest.Mod"
},
{
"command": "voc -m",
"file": "test/MapTest.Mod"
}
]
}