1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
Commit Graph

58 Commits

Author SHA1 Message Date
Martine Lenders
5dd8bdf4f8
README: Add merge-chance badge 2021-01-11 13:13:58 +01:00
Martine Lenders
3415db8e20
README.md: add section on the forum 2020-12-10 10:10:03 +01:00
5c84aeb096
README.md: remove tapsetup note 2020-10-03 16:03:20 +02:00
Silke Hofstra
3838d0b673 README: replace StackOverflow badge
The current StackOverflow badge sometimes shows as 'invalid'.
This is, of course, not really wanted.

Replace it by one that is a bit more reliable.
2020-09-11 17:27:16 +02:00
c3de2655db
Merge pull request #14969 from silkeh/pr/moar-badges
README: Add more badges
2020-09-08 14:27:08 +02:00
Silke Hofstra
e404a7c10e README: add more badges
The README document was missing several relevant badges/links:

- Latest release
- License info
- API docs
- Wiki
- StackOverflow
- Twitter

The addition of these links will, hopefully, help people
quickly navigate the broader ecosystem.

Additionally, all badges (except for the CI badge) now
conform to roughly the same style.
2020-09-08 13:02:47 +02:00
Silke Hofstra
2f3a0b6a2b README: improve formatting of mailing lists.
Correctly hyperlink and indent the mailing list section.
2020-09-07 19:51:46 +02:00
6c553ed991
README: add shield for the Matrix chat network 2020-02-04 16:15:39 +01:00
Martine S. Lenders
a68db25604 README.md: adapt doc on tapsetup for new sudo requirement 2020-01-03 21:00:54 +01:00
emmanuelsearch
3b8bf0b88e Documentation: update README with new architectures supported 2019-03-26 16:44:47 +01:00
Rotzbua
e79960cd88 [doc] links http -> https 2018-10-21 15:36:00 +02:00
24744f065b CONTRIBUTING: complete rewrite 2018-10-05 16:58:54 +02:00
e3c7d0dd83 README: remove experimental state from LoRaWAN 2018-09-26 11:37:52 +02:00
Martine Lenders
020009ecb2 README.md: move link to nightly build overview
Now that we have a nice [HTML view of all nightly builds][nightlies],
let's link to them!

[nightlies]: https://ci.riot-os.org/nightlies.html#master
2018-09-09 17:52:50 +02:00
Emmanuel Baccelli
0167abcfe0 README: update listing support of ESP8266 2018-09-05 09:58:03 +02:00
Peter Kietzmann
0230c2cac1
Merge pull request #8551 from aabadie/pr/readme_features
README: update features list + line length cleanup
2018-08-01 10:09:06 +02:00
Joseph Noir
ffb5a4f9f8 readme: add badge to join IRC easily 2018-04-16 17:52:35 +02:00
Martine Lenders
07a2b319ec doc: Add nightly build status of master to README 2018-04-11 12:43:10 +02:00
c7759f8b38 README: cleanup in tap network section 2018-03-05 16:25:40 +01:00
2d49a45727 README: make lines fit in 80 characters length 2018-02-27 10:33:47 +01:00
22bc1753c6 README: add Sigfox and LoRaWAN to features list 2018-02-27 10:33:47 +01:00
Emmanuel Baccelli
a852739f8f README: added link to the tutorial 2018-01-30 19:37:09 +01:00
e117a8afe8 readme: bump supported boards count 2018-01-18 10:35:59 +01:00
6bcfd45ad3 README.md: remove obsolete gcc6 issue warning 2017-08-29 21:51:52 +02:00
914e421179 README: update boards support information 2017-04-05 19:22:11 +02:00
Martine Lenders
29842bb5e4 netdev2: rename to netdev and remove gnrc_netdev
With some minor hand-edits I used the following chain of commands:

```sh
git rm sys/include/net/gnrc/netdev.h
git grep --name-only -i netdev2 | \
        xargs sed -i -e 's/^\(NETDEV\)2\(.*\)\( [("]\)/\1\2 \3/g' \
                     -e 's/\(netdev\)2\(.*\)\( \/\*\*<\)/\1\2 \3/I' \
                     -e 's/\(netdev\)2/\1/gI'
git add -p
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
        grep "netdev2" | xargs -I'{}' dirname '{}' | uniq | \
        grep "netdev2" | while read dir; do
                new_dir="$(echo "$dir" | sed "s/netdev2/netdev/g")"
                git mv -f "$dir" "$new_dir"
        done
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
        grep "netdev2" | while read file; do
                new_file="$(echo "$file" | sed "s/netdev2/netdev/g")"
                git mv -f "$file" "$new_file"
        done
git commit --amend
git grep --name-only "\<drivers_netdev_netdev\>" | \
        xargs sed -i "s/\<drivers_netdev_netdev\>/drivers_netdev_api/g"
git add -p
git commit --amend
```
2017-03-15 09:31:20 +01:00
Lotte Steenbrink
d27030a879 doc: update getting started link in README.md 2016-10-10 08:45:55 -07:00
Martine Lenders
f209c2603b Merge pull request #5547 from OlegHahm/gcc6_readme_note
README: added note about GCCv6 problem
2016-06-13 13:11:36 +02:00
Oleg Hahm
7277cf8d46 README: added note about GCCv6 problem 2016-06-13 13:07:49 +02:00
Oleg Hahm
1d98b8a809 README: remove FUB mention from license statement 2016-06-13 12:04:17 +02:00
Oleg Hahm
2f70d1c271 README: obey character limit 2016-06-13 12:04:17 +02:00
Emmanuel Baccelli
3a4ba91e20 Update README.md
addressed comments
2016-05-31 19:23:35 +02:00
Emmanuel Baccelli
72adc99fbf Update README.md
wordsmithing around non-viral term
2016-05-31 15:25:04 +02:00
Emmanuel Baccelli
652ba6a39e Update README
Used some reworked umbrella text from latest release notes to provide more synthetic information upfront (as this README is the first thing people read on GitHub).
2016-05-31 13:10:51 +02:00
Oleg Hahm
8e6dc1a03f doc: updated and clarified tapsetup usage 2016-03-10 17:40:22 +01:00
Oleg Hahm
987acc99b7 README: slight update 2016-03-01 10:21:54 +01:00
Martine Lenders
664f51e149 doc: adapt documentation on tapsetup script 2015-08-14 12:05:34 +02:00
f9ee9da57e remove temporarily dropped features from README.md 2015-08-06 12:13:54 +02:00
Emmanuel Baccelli
afdfe5bee9 Update README.md 2015-04-07 23:56:09 +02:00
Cenk Gündoğan
c551310a61 add AODVv2 and NHDP to the README 2015-02-25 20:53:56 +01:00
PeterKietzmann
a933ab9d11 doc: remove Travis status image in REAMDE 2015-01-28 12:24:17 +01:00
Matthias Lohr
d206e2be40 added Travis CI status image in README.md 2015-01-27 18:25:45 +01:00
PeterKietzmann
3de8c411d5 Adapt start page to improve developement procedures 2014-11-20 09:41:29 +01:00
Christian Mehlis
c5912d8182 README.md: make link a markdown link 2014-05-15 11:38:35 +02:00
Ludwig Ortmann
1d16c7cceb Update README.md 2014-03-29 10:09:56 +01:00
Ludwig Ortmann
2525920426 remove trailing whitespace and newlines 2014-02-11 18:45:06 +01:00
Ludwig Ortmann
e33a561ec1 fix paths in README.md 2014-02-01 12:22:00 +01:00
Ludwig Ortmann
a4a1c39d95 substitute folder with directory 2014-01-22 20:17:07 +01:00
Oleg Hahm
1310e110c0 updated README to reflect the current state 2014-01-22 18:42:51 +01:00
Ludwig Ortmann
dbcfe494ca fix spelling error in README.md 2014-01-13 11:19:45 +01:00