mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
5.9 KiB
5.9 KiB
Changelog
[1.0.0-rc.4]
- Change the
runfunction to take a callback and run asynchronously instead of blocking the event loop. - Improve error message when the dev runner command fails.
- Show full error message from
cli.rsinstead of just the outermost underlying error message. - Increase
tauri.conf.jsondirectory lookup depth to3and allow changing it with theTAURI_PATH_DEPTHenvironment variable. - Added
tauri-build,taoandwryversion to theinfocommand output.
[1.0.0-rc.3]
- Change default value for the
freezePrototypeconfiguration tofalse.
[1.0.0-rc.2]
- Fixes Tauri path resolution on projects without Git or a
.gitignorefile.
[1.0.0-rc.1]
- Fix
initcommand prompting for values even if the argument has been provided on the command line. - Fixes CLI freezing when running
light.exeon Windows without the--verboseflag. - Respect
.gitignoreconfiguration when looking for the folder with thetauri.conf.jsonfile.
[1.0.0-rc.0]
- Do not force Tauri application code on
src-taurifolder and use a glob pattern to look for a subfolder with atauri.conf.jsonfile. - Added CommonJS output to the
distfolder. - Fixes
.icoicon generation. - Automatically unplug
@tauri-apps/cliin yarn 2+ installations to fix the download of the rust-cli. - Read
package.jsonand check for atauriobject containing theappPathstring, which points to the tauri crate path. - Removed the
iconcommand, now exposed as a separate package, see https://github.com/tauri-apps/tauricon.