FrederoxDev / Amethyst-Launcher

Launcher for Minecraft Bedrock mods created with AmethystAPI
40 stars 9 forks source link

Profile & Version Changes #57

Closed OmniacDev closed 1 month ago

OmniacDev commented 1 month ago

Profile Changes

Profile Interface

Maybe:

Example Profile Interface

const ExampleProfile: Profile = {
    name: "Example Modded Profile",
    version: {
      path: "C:\\Users\\Administrator\\AppData\\Roaming\\Amethyst\\Versions\\Minecraft-1.21.0.3",
      uuid: "21c7d413-83d5-45de-b8b2-e9e6f87fb5fe"
    },
    runtime: "AMETHYST_RUNTIME_UUID",
    mods: [
      "BETTER_INVENTORY_UUID"
    ]
}

Example profiles.json

[
  {
    "name": "Example Vanilla Profile",
    "version": {
      "path": "C:\\Users\\Administrator\\AppData\\Roaming\\Amethyst\\Versions\\Minecraft-1.21.2.2",
      "uuid": "9a8e324e-7240-403a-a404-b7420421138c"
    }
  },
  {
    "name": "Example Modded Profile",
    "version": {
      "path": "C:\\Users\\Administrator\\AppData\\Roaming\\Amethyst\\Versions\\Minecraft-1.21.0.3",
      "uuid": "21c7d413-83d5-45de-b8b2-e9e6f87fb5fe"
    },
    "runtime": "AMETHYST_RUNTIME_UUID",
    "mods": [
      "BETTER_INVENTORY_UUID"
    ]
  }
]

Version Changes

Version Interface

Example Version Interface

const ExampleVersion: Version = {
    path: "C:\\Users\\Administrator\\AppData\\Roaming\\Amethyst\\Versions\\Minecraft-1.21.2.2",
    uuid: "9a8e324e-7240-403a-a404-b7420421138c"
}

Example versions.json

{
  "default_path": "C:\\Users\\Administrator\\AppData\\Roaming\\Amethyst\\Versions",
  "versions": [
    {
      "path": "C:\\Users\\Administrator\\AppData\\Roaming\\Amethyst\\Versions\\Minecraft-1.21.0.3",
      "uuid": "21c7d413-83d5-45de-b8b2-e9e6f87fb5fe"
    },
    {
      "path": "C:\\Users\\Administrator\\AppData\\Roaming\\Amethyst\\Versions\\Minecraft-1.21.2.2",
      "uuid": "9a8e324e-7240-403a-a404-b7420421138c"
    }
  ]
}
OmniacDev commented 1 month ago

Both #57 (this) and #56 shouldn't require any immediate changes to AmethystRuntime, so I can already start implementing them.

OmniacDev commented 1 month ago

Outdated, will make a new issue with the updated formats for #62