Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Tnze/ffxiv-best-craft
A crafting simulator and solver for FF14 with friendly GUI.
https://github.com/Tnze/ffxiv-best-craft
craft crafting-simulator ff14 ffxiv simulator solver
Last synced: 3 months ago
JSON representation
A crafting simulator and solver for FF14 with friendly GUI.
- Host: GitHub
- URL: https://github.com/Tnze/ffxiv-best-craft
- Owner: Tnze
- License: agpl-3.0
- Created: 2022-04-10T10:09:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-31T15:11:22.000Z (3 months ago)
- Last Synced: 2024-08-01T19:19:42.217Z (3 months ago)
- Topics: craft, crafting-simulator, ff14, ffxiv, simulator, solver
- Language: Vue
- Homepage: https://tnze.yyyy.games/#/
- Size: 17.2 MB
- Stars: 56
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-tauri - BestCraft - Crafting simulator with solver algorithms for Final Fantasy XIV(FF14). (Applications / Gaming)
README
# FFXIV-Best-Craft
This is a crafting simulator with solver algorithms for Final Fantasy XIV(FF14).
最终幻想14生产模拟器(附带智能求解算法)
## Online Edition 在线版
☞
## Desktop Edition 桌面版(支持求解器)
推荐配置 Recommended setup:
- 操作系统 OS: Windows 11, MacOS, Linux
- 内存 Memory: 16GiB最低配置 Required setup:
- 操作系统 OS: Windows 10
- 内存 Memory: 8GiB下载地址:[Gitee](https://gitee.com/Tnze/ffxiv-best-craft/releases) (Windows Only)
Download: [Github](https://gitee.com/Tnze/ffxiv-best-craft/releases)- Windows用户请下载 `.msi` 或者 `.nsis` 安装包
- Mac 用户请下载`dmg`或`app`文件
- Debian 及 Ubuntu 用户请下载`AppImage`或`deb`文件
- 其他 Linux 用户请下载`AppImage`文件## Develope 开发指引
Click to expand 点击展开
```bash
yarn install # 下载依赖 download requirements
```### For Web Only
#### 安装Web依赖 Install Web Dependencies
为了编译Wasm模块,下载:[rustup](https://rustup.rs/)、[wasm-pack](https://rustwasm.github.io/wasm-pack/installer/)
#### Develop Hotload Server
```bash
yarn dev-web
```#### Release Build
```bash
yarn build-web
```### For Tauri
#### 安装Tauri依赖 Install Tauri Dependencies
按照这篇教程安装Rust、Node和WebView2等组件:[Tauri Getting Started](https://tauri.app/zh/v1/guides/getting-started/prerequisites/)
> 以下 `yarn tauri` 开头的命令可以根据你安装 tauri-cli 方式的不同而有所变化
> 见:
> The commands start with `yarn tauri` below could be different, depending on the way you install tauri-cli.
> See:#### Develop build
```bash
yarn tauri dev
# 或 or
yarn tauri dev --release
```> ⚠️ 调试模式构建的程序运行求解器可能比发布模式慢得多。
> ⚠️ Solving in debug mode could be much slower than release mode.#### Release build
```bash
# 设置环境变量 set enviroments
export TAURI_PRIVATE_KEY="Path or String of your private key"
export TAURI_KEY_PASSWORD="Your private key password (optional)"
# 构建和签名 build and signing
yarn tauri build
```