cubiomes-viewer_cn/README.md

54 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2021-12-12 19:27:17 +08:00
# 汉化说明:
通过直接修改硬编码的qt file的方式实现了对软件的99%汉化
2021-12-19 20:07:55 +08:00
一代目汉化Sinbing
2021-12-19 11:13:36 +08:00
二代目汉化SunnySlopes
现在距离100%汉化还差一些大段的帮助提示预置组件比如一些按钮以及一些基本不会碰到的debug信息
其中群系名称的汉化因为涉及到子模块的修改相应的修改请参照https://github.com/SunnySlopes/cubiomes
2021-12-12 19:27:17 +08:00
以下为原README
2021-01-04 22:07:27 +08:00
# Cubiomes Viewer
Cubiomes Viewer provides a graphical interface for the efficient and flexible seed-finding utilities provided by [cubiomes](https://github.com/Cubitect/cubiomes) and a map viewer for the Minecraft biomes and structure generation.
2021-11-28 21:12:46 +08:00
The tool is designed for high performance and supports Minecraft Java Edition main releases 1.0 - 1.18.
2021-01-04 22:07:27 +08:00
## Download
Precompiled binaries can be found for Linux and Windows under [Releases on github](https://github.com/Cubitect/cubiomes-viewer/releases). The builds are statically linked against [Qt](https://www.qt.io) and should run as-is on most newer distributions.
For the linux build you will probably have to add the executable flags to the binary (github seems to remove them upon upload).
2021-01-04 22:07:27 +08:00
For Arch linux users, the tool may be found in the [AUR](https://aur.archlinux.org/packages/cubiomes-viewer/) thanks to [JakobDev](https://github.com/JakobDev).
## Build from source
Install Qt5 development files
```
$ sudo apt install build-essential qt5-default
```
get sources
```
$ git clone --recursive https://github.com/Cubitect/cubiomes-viewer.git
```
prepare build directory
```
$ cd cubiomes-viewer
$ mkdir build
$ cd build
```
build cubiomes-viewer
```
2021-03-21 20:42:03 +08:00
$ qmake ..
$ make
```