mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-29 13:03:09 +03:00
apply version updates
Update cli/tauri.js/CHANGELOG.md Update cli/tauri.js/CHANGELOG.md Update cli/tauri.js/CHANGELOG.md Update cli/tauri.js/CHANGELOG.md
This commit is contained in:
parent
51489e7f5c
commit
c628e60c2c
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"tauri.js": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fixes a race condition on the `beforeDevCommand` usage (starting Tauri before the devServer is ready).
|
|
@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
"tauri-bundler": patch
|
|
||||||
"tauri": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Ignoring non UTF-8 characters on the loopback command output.
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"tauri.js": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Revert a nullish coalescing operator that changed embedded server/inliner behavior.
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"tauri.js": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fixes `tauri init` not generating `tauri.conf.json` on the Vue CLI Plugin.
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"tauri.js": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
`tauri init` now prompt for default values such as window title, app name, dist dir and dev path. You can use `--ci` to skip the prompts.
|
|
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.8.5]
|
||||||
|
|
||||||
|
- Ignoring non UTF-8 characters on the loopback command output.
|
||||||
|
- [f340b29](https://www.github.com/tauri-apps/tauri/commit/f340b2914dc9c3a94ca8606f4663964fa87b95ea) fix(tauri) addition to the previous commit on 2020-07-10
|
||||||
|
|
||||||
## [0.8.4]
|
## [0.8.4]
|
||||||
|
|
||||||
- Properly run the loopback command on Windows.
|
- Properly run the loopback command on Windows.
|
||||||
|
@ -2,7 +2,7 @@ workspace = { }
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "tauri-bundler"
|
name = "tauri-bundler"
|
||||||
version = "0.8.4"
|
version = "0.8.5"
|
||||||
authors = [
|
authors = [
|
||||||
"George Burton <burtonageo@gmail.com>",
|
"George Burton <burtonageo@gmail.com>",
|
||||||
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
|
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.9.0]
|
||||||
|
|
||||||
|
- Fixes a race condition on the beforeDevCommand usage (starting Tauri before the devServer is ready).
|
||||||
|
- [a26cffc](https://www.github.com/tauri-apps/tauri/commit/a26cffc575bee224a6beb5b7b0565d5583c0131f) fix(tauri.js) beforeDevCommand race condition ([#801](https://www.github.com/tauri-apps/tauri/pull/801)) on 2020-07-10
|
||||||
|
- Revert a nullish coalescing operator that changed embedded server/inliner behavior.
|
||||||
|
- [e7b4951](https://www.github.com/tauri-apps/tauri/commit/e7b495133fe9f4e9f576bb9805bec98b967783eb) fix(tauri.js) revert nullish coalesce addition ([#799](https://www.github.com/tauri-apps/tauri/pull/799)) on 2020-07-10
|
||||||
|
- Fixes tauri init not generating tauri.conf.json on the Vue CLI Plugin.
|
||||||
|
- [f208a68](https://www.github.com/tauri-apps/tauri/commit/f208a68e40c804daf41d54539d3a5951679e8a64) fix(tauri.js) do not swallow init errors, fix conf inject ([#802](https://www.github.com/tauri-apps/tauri/pull/802)) on 2020-07-10
|
||||||
|
- tauri init now prompt for default values such as window title, app name, dist dir and dev path. You can use --ci to skip the prompts.
|
||||||
|
- [ee8724b](https://www.github.com/tauri-apps/tauri/commit/ee8724b90a63f281292c6eb174773b905ba52e32) feat(tauri.js/init): prompt for default values (fix [#422](https://www.github.com/tauri-apps/tauri/pull/422)/[#162](https://www.github.com/tauri-apps/tauri/pull/162)) ([#472](https://www.github.com/tauri-apps/tauri/pull/472)) on 2020-07-10
|
||||||
|
|
||||||
## [0.8.4]
|
## [0.8.4]
|
||||||
|
|
||||||
- Bump lodash to 4.17.19
|
- Bump lodash to 4.17.19
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tauri",
|
"name": "tauri",
|
||||||
"version": "0.8.4",
|
"version": "0.9.0",
|
||||||
"description": "Multi-binding collection of libraries and templates for building Tauri apps",
|
"description": "Multi-binding collection of libraries and templates for building Tauri apps",
|
||||||
"bin": {
|
"bin": {
|
||||||
"tauri": "./bin/tauri.js"
|
"tauri": "./bin/tauri.js"
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.7.4]
|
||||||
|
|
||||||
|
- Ignoring non UTF-8 characters on the loopback command output.
|
||||||
|
- [f340b29](https://www.github.com/tauri-apps/tauri/commit/f340b2914dc9c3a94ca8606f4663964fa87b95ea) fix(tauri) addition to the previous commit on 2020-07-10
|
||||||
|
|
||||||
## [0.7.3]
|
## [0.7.3]
|
||||||
|
|
||||||
- Properly run the loopback command on Windows.
|
- Properly run the loopback command on Windows.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tauri"
|
name = "tauri"
|
||||||
version = "0.7.3"
|
version = "0.7.4"
|
||||||
authors = [
|
authors = [
|
||||||
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
|
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
|
||||||
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
|
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
|
||||||
|
Loading…
Reference in New Issue
Block a user