Prerequisites for Programming - Marcel-TO/DL2_Save_Editor GitHub Wiki

Installations

  • Rust:

    Installation: Before working with TAURI, ensure that Rust is installed on your system. You can install Rust by following the instructions on the official Rust website.

  • Node.js and npm (Node Package Manager):

    Installation: TAURI projects typically require Node.js and npm for managing frontend dependencies and building the project. Install Node.js here

  • TAURI CLI:

    Installation: The TAURI Command Line Interface (CLI) is essential for creating, building, and managing TAURI projects. Install it globally using npm:

      npm install -g @tauri-apps/cli
    

To run application

After all prerequisites are fulfilled it is possible to start the application with the following command:

  npm run tauri dev

To build application

If you made changes and want to create an executable it is possible by using the following command:

  npm run tauri build

Change Tauri Settings

The application contains a settings file the base information for the executable are stored. The file is called tauri.conf.json and is found inside the src-tauri directory of the editor code (Click here if you want to browse the file).

For example, if you would like to change the default setting of the fullscreen mode, the size of the window or the title, you just have to change the following parameters inside the config file to your desired values: image