New alpha release 0.1.10

New features:
 * App menu with About dialog
 * Build script with DEBUG and RELEASE mode
 * Direct rooms with border
 * Filter in room list

Bug fixes:
 * Sync timeout to 30 secs, 30000s is a lot of time
 * Unlock room search button when there's no results
 * Backend: Fill the gap in room messages after sync
 * Better url parsing with & params
This commit is contained in:
Daniel García Moreno 2018-02-01 22:11:10 +01:00
parent 61078c91a8
commit e1a5ec3592
4 changed files with 32 additions and 25 deletions

View file

@ -1,13 +1,17 @@
{
"app-id": "org.gnome.Fractal",
"runtime": "org.gnome.Platform",
"runtime-version": "master",
"sdk": "org.gnome.Sdk",
"sdk-extensions": ["org.freedesktop.Sdk.Extension.rust-stable"],
"command": "fractal",
"tags": ["nightly"],
"desktop-file-name-prefix": "(Nightly) ",
"finish-args": [
"app-id" : "org.gnome.Fractal",
"runtime" : "org.gnome.Platform",
"runtime-version" : "master",
"sdk" : "org.gnome.Sdk",
"sdk-extensions" : [
"org.freedesktop.Sdk.Extension.rust-stable"
],
"command" : "fractal",
"tags" : [
"nightly"
],
"desktop-file-name-prefix" : "(Nightly) ",
"finish-args" : [
"--share=network",
"--share=ipc",
"--socket=x11",
@ -16,22 +20,25 @@
"--talk-name=org.freedesktop.Notifications"
],
"build-options" : {
"append-path": "/usr/lib/sdk/rust-stable/bin",
"build-args": [ "--share=network" ],
"env": {
"CARGO_HOME": "/run/build/Fractal/cargo"
"append-path" : "/usr/lib/sdk/rust-stable/bin",
"build-args" : [
"--share=network"
],
"env" : {
"CARGO_HOME" : "/run/build/Fractal/cargo",
"DEBUG" : "true"
}
},
"modules": [
"modules" : [
{
"name": "Fractal",
"buildsystem": "meson",
"sources": [
{
"type": "git",
"url": "https://gitlab.gnome.org/danigm/fractal.git"
}
]
"name" : "Fractal",
"buildsystem" : "meson",
"sources" : [
{
"type" : "git",
"url" : "https://gitlab.gnome.org/danigm/fractal.git"
}
]
}
]
}

View file

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

View file

@ -16,7 +16,7 @@
</screenshot>
</screenshots>
<releases>
<release version="0.1.9" date="2018-01-19"/>
<release version="0.1.10" date="2018-02-01"/>
</releases>
<update_contact>danigm@wadobo.com</update_contact>
</component>

View file

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