mirror of
https://github.com/tauri-apps/tauri.git
synced 2025-01-03 00:21:34 +03:00
Apply Version Updates From Current Changes (#877)
Co-authored-by: lucasfernog <lucas@tauri.studio>
This commit is contained in:
parent
78add1e79e
commit
22b085ecfd
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-bundler": patch
|
||||
---
|
||||
|
||||
Hide external scripts output unless `--verbose` is passed.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-bundler": patch
|
||||
---
|
||||
|
||||
Fixes the target directory detection, respecting the `CARGO_TARGET_DIR` and `.cargo/config (build.target-dir)` options to set the Cargo output directory.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Make sure CSS content loaded with the `loadAsset` API is inside a template string and not injected raw.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Pin the `tauri-api` dependency on the `tauri` crate so updates doesn't crash the build.
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"tauri": minor
|
||||
"tauri.js": minor
|
||||
---
|
||||
|
||||
Fixes the Webview initialization on Windows.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-bundler": patch
|
||||
---
|
||||
|
||||
Bundling every DLL file on the binary directory.
|
@ -1,5 +1,14 @@
|
||||
# Changelog
|
||||
|
||||
## [0.9.1]
|
||||
|
||||
- Hide external scripts output unless `--verbose` is passed.
|
||||
- [78add1e](https://www.github.com/tauri-apps/tauri/commit/78add1e79ef42ed61e988a0012be87b428439332) feat(bundler): hide output from shell scripts unless --verbose is passed (fixes [#888](https://www.github.com/tauri-apps/tauri/pull/888)) ([#893](https://www.github.com/tauri-apps/tauri/pull/893)) on 2020-07-26
|
||||
- Fixes the target directory detection, respecting the `CARGO_TARGET_DIR` and `.cargo/config (build.target-dir)` options to set the Cargo output directory.
|
||||
- [63b9c64](https://www.github.com/tauri-apps/tauri/commit/63b9c6457233d777b698b53cd6661c6cd9a0d67b) fix(bundler) properly detect the target directory ([#895](https://www.github.com/tauri-apps/tauri/pull/895)) on 2020-07-25
|
||||
- Bundling every DLL file on the binary directory.
|
||||
- [a00ac02](https://www.github.com/tauri-apps/tauri/commit/a00ac023eef9f7b3a508ca9acd664470382d7d06) fix(bundler) webview dll not being bundled, fixes [#875](https://www.github.com/tauri-apps/tauri/pull/875) ([#889](https://www.github.com/tauri-apps/tauri/pull/889)) on 2020-07-24
|
||||
|
||||
## [0.9.0]
|
||||
|
||||
- Fixes the AppImage bundling on containers.
|
||||
|
@ -2,7 +2,7 @@ workspace = { }
|
||||
|
||||
[package]
|
||||
name = "tauri-bundler"
|
||||
version = "0.9.0"
|
||||
version = "0.9.1"
|
||||
authors = [
|
||||
"George Burton <burtonageo@gmail.com>",
|
||||
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
|
||||
|
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## [0.11.0]
|
||||
|
||||
- Fixes the Webview initialization on Windows.
|
||||
- [4abd12c](https://www.github.com/tauri-apps/tauri/commit/4abd12c2a42b5ace8527114ab64da38f4486754f) fix(tauri) webview initialization on windows, fixes [#879](https://www.github.com/tauri-apps/tauri/pull/879) ([#885](https://www.github.com/tauri-apps/tauri/pull/885)) on 2020-07-23
|
||||
|
||||
## [0.10.0]
|
||||
|
||||
- Fixes the `writeFile` and `writeBinaryFile` usage.
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tauri",
|
||||
"version": "0.10.0",
|
||||
"version": "0.11.0",
|
||||
"description": "Multi-binding collection of libraries and templates for building Tauri apps",
|
||||
"bin": {
|
||||
"tauri": "./bin/tauri.js"
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Changelog
|
||||
|
||||
## [0.9.0]
|
||||
|
||||
- Make sure CSS content loaded with the `loadAsset` API is inside a template string and not injected raw.
|
||||
- [e3e2e39](https://www.github.com/tauri-apps/tauri/commit/e3e2e3920833627400ee7a5b000dc6e51d8d332b) fix(tauri) ensure css content is loaded inside a string ([#884](https://www.github.com/tauri-apps/tauri/pull/884)) on 2020-07-22
|
||||
- [b96b1fb](https://www.github.com/tauri-apps/tauri/commit/b96b1fb6b8a4f565fb946847bb9a29d9d939e2cb) inject css with template string to allow for line breaks ([#894](https://www.github.com/tauri-apps/tauri/pull/894)) on 2020-07-25
|
||||
- Pin the `tauri-api` dependency on the `tauri` crate so updates doesn't crash the build.
|
||||
- [ad717c6](https://www.github.com/tauri-apps/tauri/commit/ad717c6f33b4d6e20fbb13cbe30e06946dbb74f6) chore(tauri) pin tauri-api dep version ([#872](https://www.github.com/tauri-apps/tauri/pull/872)) on 2020-07-21
|
||||
- Fixes the Webview initialization on Windows.
|
||||
- [4abd12c](https://www.github.com/tauri-apps/tauri/commit/4abd12c2a42b5ace8527114ab64da38f4486754f) fix(tauri) webview initialization on windows, fixes [#879](https://www.github.com/tauri-apps/tauri/pull/879) ([#885](https://www.github.com/tauri-apps/tauri/pull/885)) on 2020-07-23
|
||||
|
||||
## [0.8.0]
|
||||
|
||||
- Use native dialog on `window.alert` and `window.confirm`.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
authors = [
|
||||
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
|
||||
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
|
||||
|
Loading…
Reference in New Issue
Block a user