Skip to content

Commit cc24db5

Browse files
docs: Add more info to README and update copyright year.
1 parent d194a01 commit cc24db5

File tree

5 files changed

+37
-9
lines changed

5 files changed

+37
-9
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019-2020 Micro:bit Educational Foundation
3+
Copyright (c) 2019-2021 Micro:bit Educational Foundation and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,21 @@ A TypeScript library to manipulate the micro:bit MicroPython filesystem.
66

77
<img width="50%" alt="microbit-fs logo" src="https://user-images.githubusercontent.com/29712657/53014294-fb95e700-343f-11e9-856e-d70af8870c0c.png">
88

9-
This library is a Work In Progress. At the moment only the MicroPython
10-
filesystem within a hex file is supported.
9+
## Documentation
1110

12-
Raw draft of the docs can be found in
11+
The docs can be found in
1312
[https://microbit-foundation.github.io/microbit-fs/](https://microbit-foundation.github.io/microbit-fs/).
1413

14+
## npm Package
15+
16+
To add this package to your project:
17+
18+
```
19+
npm install @microbit/microbit-fs
20+
```
21+
1522
## License
1623

1724
This software is under the MIT open source license.
1825

19-
SPDX-License-Identifier: MIT
26+
[SPDX-License-Identifier: MIT](LICENSE.md)

config/typedoc.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,13 @@
3030
"url": null
3131
}, {
3232
"label": " micro:bit Tech Site ",
33-
"url": "https://tech.microbit.org/"
33+
"url": "https://tech.microbit.org"
34+
}, {
35+
"label": " | ",
36+
"url": null
37+
}, {
38+
"label": " GitHub Repo ",
39+
"url": "https://github.com/microbit-foundation/microbit-fs/"
3440
}
3541
],
3642
"outline": [{

docs/index.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,25 @@ Manipulate files in a micro:bit MicroPython Intel Hex file.
1515
{: .fs-6 .fw-300 }
1616

1717
[Quick Guide](quick-guide.html){: .btn .btn-primary .fs-5 .mb-4 .mb-md-0 .mr-2 }
18+
[API](api/){: .btn .btn-purple .mb-4 .mb-md-0 .mr-2 }
1819
[View it on GitHub](https://github.com/microbit-foundation/microbit-fs/){: .btn .fs-5 .mb-4 .mb-md-0 }
1920

2021
---
2122

22-
The documentation is currently a work in progress.
23+
This is the documentation for the micro:bit Filesystem library.
2324

24-
The menu on the left shows you the available documentation.
25+
This library can be used to add files with Python code (or any other content)
26+
into a MicroPython hex file, ready to be loaded into a micro:bit.
27+
28+
The reverse process is also provided, being able to read the files encoded in
29+
the MicroPython filesystem from a hex file.
30+
31+
As part of the micro:bit V2 release this library can also generate
32+
[Universal Hex](https://github.com/microbit-foundation/spec-universal-hex) files
33+
to create a singe hex that can be loaded in any micro:bit board.
34+
35+
## Navigation
36+
37+
- ⬆️ The header at the top contains a search bar
38+
- ⬅️ The menu on the left shows you the available documentation pages
39+
- ⬇️ If you'd like to contribute to the docs there is an edit link at the footer

src/flash-regions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* More information about how this data is added to the MicroPython Intel Hex
2727
* file can be found in the MicroPython for micro:bit v2 repository:
28-
* https://github.com/microbit-foundation/micropython-microbit-v2/blob/40e9bb687eb561cf590d151c6afa35efbcd4fec0/src/addlayouttable.py
28+
* https://github.com/microbit-foundation/micropython-microbit-v2/blob/v2.0.0-beta.3/src/addlayouttable.py
2929
*
3030
* @packageDocumentation
3131
*

0 commit comments

Comments
 (0)