Update docs

This commit is contained in:
Christian Pauly 2019-06-09 14:33:25 +02:00
parent 5ad2d4b7ce
commit 76649b852b
8 changed files with 30 additions and 12 deletions

View File

@ -1,18 +1,33 @@
image: cirrusci/flutter
stages:
- coverage
- coverage
- docs
variables:
LC_ALL: "en_US.UTF-8"
LANG: "en_US.UTF-8"
coverage:
image: cirrusci/flutter
stage: coverage
coverage: '/^\s+lines.+: (\d+.\d*%)/'
dependencies: []
script:
- sudo apt-get update -qq && sudo apt-get install -qq apt-transport-https curl gnupg lcov git
- ./scripts/test.sh
- ./scripts/coverage.sh
- flutter pub pub publish --dry-run
- sudo apt-get update -qq && sudo apt-get install -qq apt-transport-https curl gnupg lcov git
- ./scripts/test.sh
- ./scripts/coverage.sh
- flutter pub pub publish --dry-run
docs:
stage: docs
scripts:
- image: cirrusci/flutter
script:
- dartdoc
- image: ruby:2.3
script:
- cd docs/api/ && bundle exec jekyll build -d test
- cd docs/api/ && bundle exec jekyll build -d public
only:
- master

View File

@ -7,7 +7,7 @@ Matrix SDK for the famedly talk app written in dart.
1. Import the sdk
```yaml
fluffyfluttermatrix:
famedlysdk:
git:
url: https://gitlab.com/famedly/famedlysdk.git
ref: 77be6102f6cbb2e01adc28f9caa3aa583f914235
@ -49,7 +49,7 @@ final loginResp = await matrix.jsonRequest(
"type": "m.login.password",
"user": _usernameController.text,
"password": _passwordController.text,
"initial_device_display_name": "Fluffy Matrix Client"
"initial_device_display_name": "famedly talk"
}
);
@ -57,7 +57,7 @@ matrix.connect(
newToken: loginResp["token"],
newUserID: loginResp["user_id"],
newHomeserver: matrix.homeserver,
newDeviceName: "Fluffy Matrix Client",
newDeviceName: "famedly talk",
newDeviceID: loginResp["device_id"],
newMatrixVersions: ["r0.4.0"],
newLazyLoadMembers: false

View File

@ -27,7 +27,7 @@ import 'responses/ErrorResponse.dart';
import 'Connection.dart';
import 'Store.dart';
/// Represents a Matrix connection to communicate with a
/// Represents a Matrix client to communicate with a
/// [Matrix](https://matrix.org) homeserver and is the entry point for this
/// SDK.
class Client {

View File

@ -26,6 +26,7 @@ import 'package:famedlysdk/src/utils/ChatTime.dart';
import 'package:famedlysdk/src/Client.dart';
import './User.dart';
/// A single Matrix event, e.g. a message in a chat.
class Event {
final String id;
final String roomID;

View File

@ -28,7 +28,7 @@ import 'package:famedlysdk/src/responses/ErrorResponse.dart';
import 'package:famedlysdk/src/Event.dart';
import './User.dart';
/// FIXME use actual Matrix Stuff. This is a placeholder
/// Represents a Matrix room.
class Room {
final String roomID;
String name;

View File

@ -33,8 +33,8 @@ import 'User.dart';
import 'Room.dart';
import 'Connection.dart';
/// Represents a Matrix connection to communicate with a
/// [Matrix](https://matrix.org) homeserver.
/// Responsible to store all data persistent and to query objects from the
/// database.
class Store {
final Client client;

View File

@ -25,6 +25,7 @@
import 'package:intl/intl.dart';
/// Used to localize and present time in a chat application manner.
class ChatTime {
DateTime dateTime = DateTime.now();

View File

@ -24,6 +24,7 @@
import 'package:famedlysdk/src/Client.dart';
import 'dart:core';
/// A file in Matrix presented by a mxc:// uri scheme.
class MxContent {
final String _mxc;