Browse Source

New release 3.29.4

New features:
 * New audio player widget for audio files
 * MediaViewer now loads more images from the server
 * MediaViewer with headerbar in full screen
 * New avatar async loading and defaults
 * New room settings view
 * Multiline entry with markdown syntax highlighting
environments/review-jsparber-h-cxnwl8/deployments/1 3.29.4
Daniel García Moreno 8 years ago
parent
commit
c68fa2d651
  1. 6
      Cargo.lock
  2. 2
      fractal-gtk/Cargo.toml
  3. 2
      fractal-gtk/res/org.gnome.Fractal.appdata.xml
  4. 2
      fractal-matrix-api/Cargo.toml
  5. 2
      meson.build
  6. 3
      scripts/new-release.sh

6
Cargo.lock generated

@ -354,13 +354,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "fractal-gtk"
version = "3.29.1"
version = "3.29.4"
dependencies = [
"cairo-rs 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
"comrak 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"fractal-matrix-api 3.29.1",
"fractal-matrix-api 3.29.4",
"fragile 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"gdk 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"gdk-pixbuf 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -392,7 +392,7 @@ dependencies = [
[[package]]
name = "fractal-matrix-api"
version = "3.29.1"
version = "3.29.4"
dependencies = [
"cairo-rs 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",

2
fractal-gtk/Cargo.toml

@ -2,7 +2,7 @@
authors = ["Daniel Garcia <danigm@wadobo.com>"]
build = "build.rs"
name = "fractal-gtk"
version = "3.29.1"
version = "3.29.4"
workspace = "../"
[dependencies]

2
fractal-gtk/res/org.gnome.Fractal.appdata.xml

@ -18,7 +18,7 @@
</screenshot>
</screenshots>
<releases>
<release version="3.29.1" date="2018-06-22"/>
<release version="3.29.4" date="2018-07-23"/>
</releases>
<update_contact>danigm@wadobo.com</update_contact>

2
fractal-matrix-api/Cargo.toml

@ -1,7 +1,7 @@
[package]
authors = ["Daniel Garcia <danigm@wadobo.com>"]
name = "fractal-matrix-api"
version = "3.29.1"
version = "3.29.4"
workspace = "../"
description = """

2
meson.build

@ -1,6 +1,6 @@
project(
'fractal', 'rust',
version: '3.29.1',
version: '3.29.4',
license: 'GPLv3',
)

3
scripts/new-release.sh

@ -13,6 +13,9 @@ case $1 in
"minor")
next=$(echo $mayor.$(($minor + 1)).0)
;;
"version")
next=$2
;;
*)
next=$(echo $mayor.$minor.$(($rev + 1)))
;;

Loading…
Cancel
Save