Skip to content

Commit

Permalink
bump version to 1.0.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rkusa committed Nov 2, 2019
1 parent 04a9beb commit c7c132d
Show file tree
Hide file tree
Showing 8 changed files with 114 additions and 86 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.0.0-alpha.4] - 2019-11-02
### Added
- Possibility to select a voice for Windows' TTS (e.g. `VOICE WIN:David`, or `VOICE WIN:Zira`)

### Fixed
- Fixed SRS message decoding error

## [0.10.0] - 2019-11-02
### Changed
- Upgraded to the SRS 1.7.0.0 network changes. DATIS now acts as a 1.7.0.0 SRS client.

### Fixed
- In some cases stations stopped transmitting every ~0.5 secs should be fixed
- Restore consistent ~3sec pause between reports
-

## [1.0.0-alpha.3] - 2019-10-31
### Fixed
- Fixed DATIS crashing MP servers
Expand Down
171 changes: 94 additions & 77 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions crates/datis-cmd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "datis-cmd"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
authors = ["Markus Ast <[email protected]>"]
edition = "2018"

[dependencies]
clap = "2.32"
ctrlc = "3.1"
datis-core = { path = "../datis-core" }
datis-core = { path = "../datis-core", features = ["static-weather"] }
dotenv = "0.15"
env_logger = "0.7"
log = "0.4"
8 changes: 6 additions & 2 deletions crates/datis-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datis-core"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
authors = ["Markus Ast <[email protected]>"]
edition = "2018"

Expand All @@ -20,4 +20,8 @@ rusoto_polly = "0.41"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
srs = { path = "../srs" }
tokio = "0.2.0-alpha.6"
tokio = "0.2.0-alpha.6"

[features]
default = []
static-weather = []
2 changes: 1 addition & 1 deletion crates/datis-module/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datis"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
authors = ["Markus Ast <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/radio-station/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dcs-radio-station"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
authors = ["Markus Ast <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/srs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "srs"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
authors = ["rkusa"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion mod/Mods/tech/DATIS/entry.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ declare_plugin("DATIS", {
"datis.dll",
},

version = "1.0.0-alpha.3",
version = "1.0.0-alpha.4",
state = "installed",
developerName = "github.com/rkusa",
info = _("DATIS enables a DCS server with an SRS server running on the same machine (TCP=127.0.0.1) to get weather from the mission for stations and frequencies set in the mission editor, and then to report same in a standardized format over SRS using either the Amazon or Google text to speech engines."),
Expand Down

0 comments on commit c7c132d

Please sign in to comment.