-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitBook development seems a bit stuck right now so let's switch to VuePress which, IMO, is more user friendly. Update the documentation to include the version number in which features were added and use custom container to display notes and warnings.
- Loading branch information
1 parent
051fed5
commit eebcb4f
Showing
38 changed files
with
297 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
module.exports = { | ||
title: 'QtPromise', | ||
description: 'Promises/A+ implementation for Qt/C++', | ||
ga: 'UA-113899811-1', | ||
head: [ | ||
['link', { rel: 'icon', href: `/favicon.png` }], | ||
], | ||
themeConfig: { | ||
repo: 'simonbrunel/qtpromise', | ||
lastUpdated: 'Last Updated', | ||
editLinks: true, | ||
docsDir: 'docs', | ||
sidebar: [ | ||
'qtpromise/getting-started', | ||
'qtpromise/qtconcurrent', | ||
'qtpromise/thread-safety', | ||
'qtpromise/api-reference', | ||
{ | ||
title: 'QPromise', | ||
children: [ | ||
'qtpromise/qpromise/constructor', | ||
'qtpromise/qpromise/delay', | ||
'qtpromise/qpromise/each', | ||
'qtpromise/qpromise/fail', | ||
'qtpromise/qpromise/filter', | ||
'qtpromise/qpromise/finally', | ||
'qtpromise/qpromise/isfulfilled', | ||
'qtpromise/qpromise/ispending', | ||
'qtpromise/qpromise/isrejected', | ||
'qtpromise/qpromise/map', | ||
'qtpromise/qpromise/tap', | ||
'qtpromise/qpromise/tapfail', | ||
'qtpromise/qpromise/then', | ||
'qtpromise/qpromise/timeout', | ||
'qtpromise/qpromise/wait', | ||
'qtpromise/qpromise/all.md', | ||
'qtpromise/qpromise/reject.md', | ||
'qtpromise/qpromise/resolve.md' | ||
] | ||
}, | ||
{ | ||
title: 'Helpers', | ||
children: [ | ||
'qtpromise/helpers/attempt', | ||
'qtpromise/helpers/each', | ||
'qtpromise/helpers/filter', | ||
'qtpromise/helpers/map', | ||
'qtpromise/helpers/qpromise', | ||
'qtpromise/helpers/qpromiseall' | ||
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
$accentColor = #23b223 | ||
$textColor = #404244 |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@import 'override.styl' | ||
|
||
.content a code | ||
color: $accentColor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
## `qPromise` | ||
--- | ||
title: qPromise | ||
--- | ||
|
||
# qPromise | ||
|
||
*Since: 0.1.0* | ||
|
||
``` | ||
qPromise(T value) -> QPromise<R> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.