mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
Co-authored-by: Lucas Nogueira <lucas@tauri.studio> Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com> Co-authored-by: Ngo Iok Ui (Wu Yu Wei) <wusyong9104@gmail.com> Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: david <david@lemarier.ca> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: chip <chip@chip.sh>
22 KiB
22 KiB
Changelog
[1.0.0-beta.7]
- Update cli.yml to pass clap ArgSettings::MultipleValues assertion.
[1.0.0-beta.6]
- Added
APPLE_SIGNING_IDENTITYas supported environment variable for the bundler. - Added configuration for the WiX banner icon under
tauri.conf.json > tauri > bundle > windows > wix > bannerPath. - Added configuration for the WiX dialog background bitmap under
tauri.conf.json > tauri > bundle > windows > wix > dialogImagePath. - Only convert package name and binary name to kebab-case, keeping the
.desktopNamefield with the original configured value. - Merge platform-specific
tauri.linux.conf.json,tauri.windows.conf.jsonandtauri.macos.conf.jsoninto the config JSON fromtauri.conf.json. - Update minimum Rust version to 1.54.0.
[1.0.0-beta.5]
- Run powershell commands with
-NoProfileflag - Adds
releaseargument to thedevcommand. Allowing to run the backend in release mode during development. - Fixes
centerandfocusnot being allowed intauri.conf.json > tauri > windowsand ignored inWindowBuilderWrapper.
[1.0.0-beta.4]
- Improve error message when the product name is invalid.
[1.0.0-beta.3]
- Properly detect target platform's architecture.
- Fixes
buildcommand when thetargetarg is set.
[1.0.0-beta.2]
- Support
cargo tauri buildon Apple M1 chip. - Infer
app nameandwindow titlefrompackage.json > productNameorpackage.json > name. InferdistDiranddevPathby reading the package.json and trying to determine the UI framework (Vue.js, Angular, React, Svelte and some UI frameworks). - Watch workspace crates on
devcommand. - Adds
featuresargument to thedevandbuildcommands. - Fixes the libwebkit2gtk package name.
- Properly keep all
taurifeatures that are not managed by the CLI. - Copy resources and binaries to
OUT_DIRontauri devcommand. - Read cargo features from
tauri.conf.json > build > featuresand propagate them ondevandbuild. - Fixes
tauri.conf.json > tauri > bundle > targetsnot applying to the bundler. - Fixes
infocommand not striping\rfrom child process version output. - Allow setting a path to a license file for the Windows Installer (
tauri.conf.json > bundle > windows > wix > license). - Change the
cspvalue on the template to includewss:andtauri:to thedefault-srcattribute. - Adds
tauri > bundle > windows > wix > languageconfig option. See https://docs.microsoft.com/en-us/windows/win32/msi/localizing-the-error-and-actiontext-tables.
[1.0.0-beta.1]
- Add
'self'to default CSP because otherwise no joy on macOS. - Fix a typo that would result in bundle arg being ignored.
[1.0.0-beta.0]
- Fixes a cargo
target/cache issue. - Improve error logging.
- Adds Webview2 version on
infocommand. - Adds
--runner [PROGRAM]argument on thedevandbuildcommand, allowing using the specified program to run and build the application (example program:cross). - Adds
--target [TARGET_TRIPLE]option to thebuildcommand (example:--target arm-unknown-linux-gnueabihf). - Rename
--targetoption on thebuildcommand to--bundle. - Automatically add Tauri dependencies to the debian package
Dependssection. - Properly kill
beforeDevCommandprocess. - Adds support to
tauridependency as string and table onCargo.toml. - Show
frameworkandbundleron theinfocommand by reading thepackage.jsonfile and matching known dependencies.
[1.0.0-beta-rc.4]
- Fixes the Message
commandname value on plugin invoke handler. - The package info APIs now checks the
packageobject ontauri.conf.json.
[1.0.0-beta-rc.3]
- Check if distDir assets are built after running
beforeDevCommand. - Fixes
tauri infodisplay version for the@tauri-apps/apipackage. - Fixes crash on usage of modifier keys on Windows when running
tauri init. - Enable
tauriupdaterfeature whentauri.conf.json > tauri > updater > activeis set totrue.
[1.0.0-beta-rc.2]
- Add missing camelcase rename for config
- Fix
tauri info - Properly detect
yarnandnpmversions on windows. - Fix a panic caused by a wrong field name in
metadata.json - 71666e9 fix(cli.rs): fix panic & use
cmdto runyarn&npmon windows (#1511) on 2021-04-17 - Sync
metadata.jsonvia script to update version reference to cli.js, tauri (core) and tauri-build.
[1.0.0-beta-rc.1]
- Missing the
filesproperty in the package.json which mean that thedistdirectory was not published and used.
[1.0.0-beta-rc.0]
- You can now run
cargo tauri build -t noneto speed up the build if you don't need executables. - The
devandbuildpipeline is now written in Rust. - Run
beforeDevCommandandbeforeBuildCommandin a shell. - Fixes
<a target="_blank">polyfill. - Update all code files to have our license header.
- Adds
productNameandversionconfigs ontauri.conf.json > package. - The
infocommand was rewritten in Rust. - The
initcommand was rewritten in Rust. - All the arguments passed after
tauri dev --are now propagated to the binary. - Alpha version of tauri-updater. Please refer to the
READMEfor more details.