Skip to content

Commit b1b7cfd

Browse files
committed
Merge branch 'develop'
2 parents 25a6f0b + 56d0a1c commit b1b7cfd

File tree

5 files changed

+27
-14
lines changed

5 files changed

+27
-14
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ Qt >= 5.10.0 with at least the following modules is required:
3232
* [qtsvg](http://code.qt.io/cgit/qt/qtsvg.git)
3333
* [qtdoc](http://code.qt.io/cgit/qt/qtdoc.git)
3434

35+
The following modules and their dependencies are required:
36+
37+
* [qbs >= 1.9.0](http://code.qt.io/cgit/qbs/qbs.git)
38+
* [qbs-shared >= 1.2.0](https://github.com/lirios/qbs-shared.git)
39+
3540
## Build
3641

3742
Qbs is a new build system that is much easier to use compared to qmake or CMake.

doc/fluid-online.qdocconf

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
include(config/fluid-project.qdocconf)
2-
include($QT_INSTALL_DOCS/global/qt-html-templates-online.qdocconf)
2+
include($QT_INSTALL_DOCS/global/qt-html-templates-offline.qdocconf)
33

4-
HTML.nonavigationbar = "true"
4+
HTML.nonavigationbar = "false"
55

66
HTML.navigationseparator = ""
77

88
HTML.stylesheets = \
99
template/style/base.css \
10-
template/style/liri.css
10+
template/style/liri.css \
11+
template/style/liri.eot \
12+
template/style/liri.svg \
13+
template/style/liri.ttf \
14+
template/style/liri.woff
1115

1216
HTML.headerstyles = \
1317
"<!-- begin headerstyles -->\n" \
@@ -19,23 +23,22 @@ HTML.headerstyles = \
1923
"<!-- end headerstyles -->\n" \
2024

2125
HTML.headerscripts = \
22-
" <script defer type=\"text/javascript\" src=\"https://code.jquery.com/jquery-3.2.1.min.js\"></script>\n" \
2326
" <script defer type=\"text/javascript\" src=\"https://code.getmdl.io/1.3.0/material.min.js\"></script>\n" \
2427

2528
HTML.endheader = \
2629
"</head>\n"
2730

2831
HTML.postheader = \
2932
"<!-- begin postheader -->\n" \
30-
"<div style=\"display: none;\">\n" \
31-
"<!-- end postheader -->\n" \
32-
33-
HTML.postpostheader = \
34-
"<!-- begin postpostheader -->\n" \
35-
"</div>\n" \
3633
"<body class=\"mdl-demo mdl-color--grey-100 mdl-color-text--grey-700 mdl-base\">\n" \
3734
" <div class=\"liri-layout mdl-layout mdl-js-layout mdl-layout--fixed-header\">\n" \
3835
" <header class=\"mdl-layout__header mdl-layout__header--scroll\">\n" \
36+
" <div class=\"mdl-layout__header-row\">\n" \
37+
" <i class=\"icon-liri liri-bird pointer\" onclick=\"location.href='index.html'\"></i>\n" \
38+
" <span class=\"mdl-layout-title pointer mdl-layout--large-screen-only\"" \
39+
" onclick=\"location.href='/'\">Liri</span>\n" \
40+
" <span class=\"mdl-layout-title mdl-layout--small-screen-only\">Fluid API</span>\n" \
41+
" </div>\n" \
3942
" </header>\n" \
4043
" <div class=\"liri-ribbon mdl-color--primary\"></div>\n" \
4144
" <main class=\"liri-main mdl-layout__content\">\n" \
@@ -44,6 +47,12 @@ HTML.postpostheader = \
4447
" <div class=\"liri-content mdl-color--white mdl-shadow--4dp content mdl-color-text--grey-800 mdl-cell mdl-cell--8-col pt32\">\n" \
4548
" <a name=\"top\"></a>\n" \
4649
" <div class=\"container\">\n" \
50+
" <ul class=\"navigationbar\">\n" \
51+
"<!-- end postheader -->\n" \
52+
53+
HTML.postpostheader = \
54+
"<!-- begin postpostheader -->\n" \
55+
" </ul>\n" \
4756
"<!-- end postpostheader -->\n" \
4857

4958
HTML.prologue = ""

fluid.qbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import qbs.Probes
44
Project {
55
name: "Fluid"
66

7-
readonly property string version: "0.11.0"
7+
readonly property string version: "1.0.0"
88
readonly property var versionParts: version.split('.').map(function(part) { return parseInt(part); })
99

1010
readonly property string minimumQtVersion: "5.10.0"

src/deployment/deployment.qbs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ import qbs 1.0
22

33
Project {
44
name: "Deployment"
5-
condition: project.deploymentEnabled
65

76
references: [
87
"windows.qbs",
9-
"linux.qbs",
8+
"tarball.qbs",
109
"module.qbs",
1110
]
1211
}

src/deployment/linux.qbs renamed to src/deployment/tarball.qbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import qbs 1.0
33
InstallPackage {
44
name: "fluid-artifacts"
55
targetName: name
6-
builtByDefault: false
6+
builtByDefault: project.deploymentEnabled
77

88
archiver.type: "tar"
99
archiver.outputDirectory: project.buildDirectory

0 commit comments

Comments
 (0)