• Hi Guest!

    We have posted a new VaM2 dev log on Patreon, starting a monthly cadence of written progress updates between Beta releases. Highlights include the new Gizmos System, Selection Carousel, and Modes System with Context-Specific Editing. Beta1.2 is 15 of 21 items complete.

    Read the full post on Patreon, or follow progress on the public Trello roadmap.

Acknowledged Missing dependencies in Package Manager

AlexDenton

New member
Joined
Nov 30, 2020
Messages
14
Reactions
6
When a dependency is missing and its nested in the array of the meta.json dependencies, it doesnt show in the list "References", the package will have a red color but the only alternative will be to open the var and read the meta.json (A difficult thing for most).

Example:

JSON:
"dependencies": {
        "AcidBubbles.ImprovedPoV.latest": {
            "dependencies": {},
            "licenseType": "CC BY-SA"
        },
        "AcidBubbles.Passenger.latest": {
            "dependencies": {},
            "licenseType": "CC BY-SA"
        },
        "AcidBubbles.Timeline.latest": {
            "dependencies": {},
            "licenseType": "CC BY-SA"
        },
        "AdamAnt5.Realtime_LipSync.latest": {
            "dependencies": {},
            "licenseType": "Questionable"
        },
        "DoesNotCat.RealFakeLabias.latest": {
            "dependencies": {},
            "licenseType": "CC BY-NC-SA"
        },
        "MacGruber.Life.latest": {
            "dependencies": {},
            "licenseType": "CC BY-SA"
        },
        "Spacedog.EasyGaze_FingerMotion_KissMotion_Collection.latest": {
            "dependencies": {},
            "licenseType": "CC BY"
        },
        "Testitou.nico_dmc5.latest": {
            "dependencies": {
                "MacGruber.Life.latest": {
                    "dependencies": {},
                    "licenseType": "MISSING",
                    "missing": "true"
                },
                "MacGruber.PostMagic.latest": {
                    "dependencies": {},
                    "licenseType": "CC BY-SA"
                },
                "Scamp.PyssyHairParadise.latest": {
                    "dependencies": {},
                    "licenseType": "MISSING",
                    "missing": "true"
                },
                "prestigitis.hair-20191213.latest": {
                    "dependencies": {},
                    "licenseType": "MISSING",
                    "missing": "true"
                }
            },
            "licenseType": "CC BY-NC"
        }
    }

Thanks in advance,
 
I might fix this at some future point, but it is a bit complex to fix. The references list shown was meant to be direct references, not the nested references. And the Missing Packages list will correctly show what is missing overall.
 
I might fix this at some future point, but it is a bit complex to fix. The references list shown was meant to be direct references, not the nested references. And the Missing Packages list will correctly show what is missing overall.
I understand thanks!
 
Back
Top Bottom