Browse Source

fix paths

Anatoly Pulyaevskiy 5 years ago
parent
commit
2fd3c71f98
3 changed files with 8 additions and 30 deletions
  1. 3
    3
      README.md
  2. 3
    9
      SUMMARY.md
  3. 2
    18
      packages/zefyr/README.md

+ 3
- 3
README.md View File

@@ -10,9 +10,9 @@ request or found a bug, please file it at the [issue tracker][].
10 10
 ### Documentation
11 11
 
12 12
 * [Quick Start](doc/quick-start.md)
13
-* [Data Format and Document Model](doc/data-and-document.md)
14
-* [Style attributes](doc/attributes.md)
15
-* [Heuristic rules](doc/heuristics.md)
13
+* [Data Format and Document Model](doc/concepts/data-and-document.md)
14
+* [Style attributes](doc/concepts/attributes.md)
15
+* [Heuristic rules](doc/concepts/heuristics.md)
16 16
 * [Images](doc/images.md)
17 17
 * [FAQ](doc/faq.md)
18 18
 

+ 3
- 9
SUMMARY.md View File

@@ -1,13 +1,7 @@
1 1
 # Summary
2 2
 
3
-## About
4
-
5
-## Quick Start
6
-
7 3
 ## Concepts
8 4
 
9
-* [Data Format and Document Model](doc/data-and-document.md)
10
-* [Attributes](doc/attributes.md)
11
-* [Heuristic rules](doc/heuristics.md)
12
-
13
-## FAQ
5
+* [Data Format and Document Model](doc/concepts/data-and-document.md)
6
+* [Attributes](doc/concepts/attributes.md)
7
+* [Heuristic rules](doc/concepts/heuristics.md)

+ 2
- 18
packages/zefyr/README.md View File

@@ -15,8 +15,7 @@ For documentation see [https://github.com/memspace/zefyr](https://github.com/mem
15 15
 
16 16
 Official releases of Zefyr can be installed from Dart's Pub package repository.
17 17
 
18
-> Note that versions from Pub track stable channel of Flutter. If you are on master channel
19
-> check out instructions below in this document.
18
+> Note that versions from Pub track stable channel of Flutter.
20 19
 
21 20
 
22 21
 To install Zefyr from Pub add `zefyr` package as a dependency to your `pubspec.yaml`:
@@ -28,20 +27,5 @@ dependencies:
28 27
 
29 28
 And run `flutter packages get`.
30 29
 
31
-#### Installing version of Zefyr compatible with master channel of Flutter.
32
-
33
-You need to add git dependency to your pubspec.yaml that points to `flutter-master` branch:
34
-
35
-```yaml
36
-dependencies:
37
-  zefyr:
38
-    git:
39
-      url: https://github.com/memspace/zefyr.git
40
-      ref: flutter-master
41
-      path: packages/zefyr
42
-```
43
-
44
-And run `flutter packages get`.
45
-
46
-Continue to [https://github.com/memspace/zefyr/blob/master/doc/quick_start.md](documentation) to
30
+Continue to [https://github.com/memspace/zefyr/blob/master/doc/concepts/quick_start.md](documentation) to
47 31
 learn more about Zefyr and how to use it in your projects.