Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ResetPower committed Feb 16, 2021
0 parents commit 7d3fdc8
Show file tree
Hide file tree
Showing 29 changed files with 17,884 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.DS_Store
node_modules
dist/
public/
dist_electron/
package/
latest.log

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
10 changes: 10 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports = {
printWidth: 100,
tabWidth: 4,
useTabs: false,
semi: true,
singleQuote: false,
bracketSpacing: true,
endOfLine: "auto",
trailingComma: "es5",
};
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Epherome

[简体中文](README_zh_cn.md)

<p align="center">
<img src="images/lantern.png" alt="Logo" width="80" height="80">

<h3 align="center">Epherome: Simple Minecraft Launcher</h3>
<p align="center">
Use Electron framework to write, support cross-platform and multi-language
<br/>
<a href="https://github.com/ResetPower/Epherome/releases">Downloads</a>
·
<a href="https://github.com/ResetPower/Epherome/issues">Report Bug</a>
</p>
</p>

## Introduction

Epherome is a Minecraft launcher written in Electron that supports simple launch functions

## Screenshot

![alt](images/HomeVue_en_us.png)

## Development Environment

Electron: 11.2.3
Chrome: 87.0.4280.141
Node.js: 12.18.3
V8: 8.7.220.31-electron.0

## LICENSE

[GNU General Public License 3.0](https://github.com/ResetPower/Epherome/blob/master/LICENSE)
35 changes: 35 additions & 0 deletions README_zh_cn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Epherome

[English](README.md)

<p align="center">
<img src="images/lantern.png" alt="Logo" width="80" height="80">

<h3 align="center">Epherome: 简单的Minecraft启动器</h3>
<p align="center">
使用 Electron 框架编写,支持跨平台与多语言
<br/>
<a href="https://github.com/ResetPower/Epherome/releases">下载</a>
·
<a href="https://github.com/ResetPower/Epherome/issues">报告 Bug</a>
</p>
</p>

## 简介

Epherome 是一个用 Electron 编写的,支持简单启动功能的 Minecraft 启动器

## 截图

![alt](images/HomeVue_zh_cn.png)

## 开发环境

Electron: 11.2.3
Chrome: 87.0.4280.141
Node.js: 12.18.3
V8: 8.7.220.31-electron.0

## 协议

[GNU General Public License 3.0](LICENSE)
4 changes: 4 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
presets: ["@vue/cli-plugin-babel/preset"],
sourceType: "unambiguous",
};
Binary file added images/HomeVue_en_us.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/HomeVue_zh_cn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/lantern.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7d3fdc8

Please sign in to comment.