Skip to content

米家聚合启动器,目前支持原神、星铁、崩坏3。An all-in-one launcher for MiHOYO games, currently available for Genshin Impact, Honkai Star Rail and Honkai Impact 3rd.

License

Notifications You must be signed in to change notification settings

Melancholyolkliangy/MiHOYO-MiXED-Launcher

 
 

Repository files navigation

简体中文文档

miHoYo miXED Launcher

By HoraceHyy

Launch HoYoVERSE games in one place and analyze in-game player informations.

Oops!

Just learnt something new from other projects lately, and I'd just realized how shitty my codes are. I'll try to refactor some of the codes of this project in several weeks (or months)? Plz forgive me for the following slow updates!

Features

  • Launch Genshin Impact, Honkai: Star Rail and Honkai Impact 3rd in one place.
  • Zenless Zone Zero to be supported.
  • Manually import customized game directories.
  • Multi-language support.
  • Analyze detailed player info for Genshin Impact and Honkai: Star Rail in a special card layout.
  • Keeps all UI elements of official launchers.
  • Automatically calculate and notify about major game updates.

Screenshots

Click to expand
  • App main page, background image customizable (Pixiv @anna_drw01)

  • Genshin Impact launcher page

  • Genshin Impact player info

  • Honkai: Star Rail launcher page

  • Honkai: Star Rail player info

Notes

  • This app uses GitHub URLs to check its updates and resources for Star Rail player info. If you are from mainland China, a proxy is needed.

Development

Dependencies

pnpm i

Debug

pnpm dev

Build

pnpm build

Notes

  • This app checks for updates via the GitHub API, which will automatically expire once it is uploaded publicly on GitHub. Therefore, during development, please create a token yourself and place it in Octokit.auth inside electron/main/index.ts.
const {Octokit} = require("@octokit/core")
const octokit = new Octokit({
    auth: "<YOUR TOKEN HERE>"
})
  • For some reason, relative paths in the dev and build environments varies for some files. In onMounted inside src/pages/SettingsPage.vue, the path of package.json is determined by environment.
// BUILD: '../../app.asar/package.json'
// DEV: '../../package.json'
fetch('../../app.asar/package.json')
    .then(response => response.json())
    .then((resp) => {
        appVer.value = resp.version
    })
  • The current version of vite-plugin-electron dependency isn't compatible with [email protected] or later. Please leave the electron dependency version unchanged at 28.2.1.
  • This project isn't ready to make the change to ES Modules yet. The latest @octokit/[email protected] has become an ES Module, which is incompatible with this project. Please leave the @octokit/core dependency version unchanged at 5.1.0.

Credits

Translation

Supported Languages

  • English @HoraceHuang-ui
  • 简体中文 @HoraceHuang-ui
  • 繁體中文 @HoraceHuang-ui $^1$
  • 日本語 @JonathanKwok $^2$
  • Русский @MCheping8108 $^{1,2}$
  • Français @MCheping8108 $^{1,2}$

$^1$ Needs revision. Certain words or phrases may be inappropriate in context. Further localization by native speakers is needed.

$^2$ Needs completion. The strings translated by machine are shown in blue, i.e., haven't been approved. Further localization by native speakers is needed.

Contributing

To add a new language,

  1. Open an issue specifying that language and country/region.
  2. Click the badge below to help translate miXeD to your language:

Crowdin

Other Notes

  • electron-store items backup:
    • targetVersion The seemingly "current" version taking ignore current version into account
    • mainBgPath The main page background image in base64 format
    • dialogStyle The style of non-game UI dialogs
    • gsLauncherPath The directory of the official Genshin Impact launcher
    • gsGamePath The path of the Genshin Impact game executable
    • genshinUpd Whether Genshin Impact is updated in the current version
    • genshinInfo Genshin Impact player info
    • genshinConstels JSON object containing Constellations bonuses of Genshin Impact
    • srLauncherPath
    • srGamePath
    • starRailUpd
    • starRailInfo
    • hi3LauncherPath
    • hi3GamePath
    • honkai3Upd
    • gsCostume Display costume splash images in Genshin Impact

About

米家聚合启动器,目前支持原神、星铁、崩坏3。An all-in-one launcher for MiHOYO games, currently available for Genshin Impact, Honkai Star Rail and Honkai Impact 3rd.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 89.3%
  • TypeScript 8.5%
  • Other 2.2%