Commit Graph

64 Commits (dev)

Author SHA1 Message Date
Åke Forslund a9844c3080 Readme: Remove "buttons" due to unmaintained status
Production ready, PRs welcome and join chat buttons removed.
2024-09-01 21:02:36 +02:00
Åke 05efd9fd5b Add notice in readme that the project is no longer maintained 2024-09-01 17:31:20 +02:00
Bart Ribbers e20443b824 Use XDG Base directories for settings, cache and runtime data
Improve deprecation warning message
2021-08-05 10:04:45 +02:00
Kris Gesling cfe03a4285 Remove docs encouraging Skill config via mycroft.conf 2021-06-28 16:55:03 +09:30
Chris Veilleux 2d83bd2ed1 Replace "build" and "coverage" badges with new versions based on GitHub Actions for the former and codecov for the latter. Also minor refactoring of headings and some language errors. 2021-01-27 14:31:36 -06:00
Brian J. Tarricone 1aea90b40d Fix standalone docs in README
The README contains a brief note about running Mycroft standalone
(without home.mycroft.ai), but the docs were very incomplete and
somewhat outdated.
2020-04-06 23:18:17 -07:00
Moritz Glöckl ec1b8f03a5
Fixed some readme errors for #hacktoberfest 2019-10-04 16:48:52 +02:00
Steve Penrod 79d1e98021
ReadTheDocs link made directly to Master API 2019-05-02 00:38:41 -05:00
Steve Penrod cfc41a3604
Added link to ReadTheDocs 2019-05-01 23:47:55 -05:00
Steve Penrod 0a748b2636
Correct team link 2019-03-21 00:59:34 -05:00
Steve Penrod ab7e6624e6
Update the status badge 2019-03-20 23:36:32 -05:00
Steve Penrod 0b0b1981df
Adjusting positioning 2019-03-20 01:04:26 -05:00
Steve Penrod 57935ad186
Experimenting with new badges 2019-03-20 00:58:54 -05:00
Åke Forslund 06b9504e9e Add mattermost badge to README.md 2019-01-31 09:13:06 +01:00
Steve Penrod b6f3a531e2
Remove depth=1, which breaks the dev_setup wizard
Fixes problem described in #1946
2019-01-10 16:46:41 -06:00
Niels Mündler fa1a96852b Unify badge style (#1849)
The "PRs Welcome" badge in README.md was flat-styled.  Change to the default style of all other badges in the README file
2018-10-15 13:33:58 -05:00
Matthew D. Scholefield c292de0dea Move github files to .github folder 2018-06-06 18:00:30 -05:00
Seenivasan M 88368127bb Change git clone command in getting started
Changed git clone to git clone to git clone --depth=1 to reduce the cloning size as this is only for deployment of mycroft and not for development and  added additional instructions for developers to use the whole repo instead of single depth repo.
2018-03-09 14:16:23 -06:00
KathyReid 057c440663 Fix extraneous space - typo 2017-11-24 20:05:17 +11:00
KathyReid f18c712d53 Added section on proxy authentication configuration, partially resolves #1245 2017-11-24 00:29:43 +11:00
Andrew Hayworth 6325c7ae7b Add replacment for Google TTS via Google Cloud Speech API
As noted on the Chromium Dev How-to [1] and on the
SpeechRecognition library docs [2], the Google TTS API
is really not the right API to call. While it's simple,
and allows you to authenticate via a simple token, it is
also limited to a max of *50* requests per day.

That's not a lot. I don't think many people will find that
useful, outside of quick testing (if they can even get an
API key - I couldn't figure out how to generate one that
worked correctly).

This commit introduces a new STT backend, google_cloud, so that
the Google STT backend can be deprecated eventually. To do so, we
needed to:
- Install the Google API Client Library
- Create a new STT class which knows how to turn a provided Google
  JSON credentials file into a string (the SpeechRecognition library
  expects you to pass in the JSON string, not a file path, nor an object).

Any person wishing to use this will need to:
- Enable the Cloud Speech API on the Google Cloud Platform console
- Create a new Service Account Key, and download the credentials to
  a secure location
- Configure that location in mycroft.conf, like so:

  "stt": {
    "google_cloud": {
      "credential" {
        "json": { contents of downloaded credentials }
      }
    }
  }

It's worth noting that the Cloud Speech API has a free quota of
60 minutes per month, which would probably stretch further than 50
individual requests. So for hobbyists, it should be nothing but
a net benefit.

[1] http://www.chromium.org/developers/how-tos/api-keys
[2] https://github.com/Uberi/speech_recognition/blob/master/reference/library-reference.rst#recognizer_instancerecognize_googleaudio_data-key--none-language--en-us-show_all--false
2017-11-15 22:10:00 -06:00
Harald Sitter 00e5f74222 typo fix
installation is spelled with two l
2017-10-11 22:59:51 -05:00
Steve Penrod 0709aa8b9e Update for new scripts
Significant edit:
* Remove mentions of old start.sh / mycroft.sh
* Enhanced getting started instructions with more explicit steps
* Reorganized to place most commonly wanted information up front.
2017-09-28 01:57:46 -05:00
Matthew D. Scholefield b5cc7b91a7 Update README to no longer point to build_host_setup and fix dev_setup 2017-09-14 17:10:15 -05:00
Michael Nguyen 54109a0785 Update README.md 2017-09-14 10:07:43 -05:00
Michael Nguyen 8d9b291ec0 Update README.md 2017-09-11 15:21:39 -05:00
Michael Nguyen 80c855c38d Update README.md 2017-09-11 15:17:23 -05:00
Michael Nguyen 5fcf0158aa Update README.md 2017-09-11 15:16:49 -05:00
Matthew D. Scholefield e738ad483f Add fann to travis and README 2017-08-17 16:01:11 -05:00
Augusto Monteiro 94f5247cbb Update README.md 2017-07-13 11:39:45 -04:00
Augusto Monteiro f7fae436ef Update README.md 2017-07-12 16:53:53 -04:00
Augusto Monteiro a7d57fa18b Making Readme.md more contributor friendly 2017-07-12 14:25:54 -04:00
vavrek d122eabc7d Syntax, layout, and typo repairs. (#819)
* Syntax, layout, and typo repairs.

Fixed a bunch of spelling errors, punctuation problems, and layout inconsistencies. Clarified some of the language. Added a link to the `screen` man page.

* Chat link update

Added: https://mycroft.ai/to/chat/

* Added home.mycroft.ai as config option

* Capitalization and small syntax edits
2017-07-05 22:12:28 +02:00
vavrek 007e0fe970 Minor Typo Fixes
"detached" and "reattach" spelling repairs.
2017-06-30 21:12:30 +02:00
Åke Forslund ac05fd4fd0 Add coverage with nose2 and coveralls 2017-05-18 16:51:17 -03:00
kfezer d793c9893b Update README.md
Added note about it being default on dev
2017-03-24 14:08:32 -07:00
MatthewScholefield 09f5ac8626 Update readme for 3 build host setup scripts 2017-03-20 10:23:33 -05:00
Steve Penrod 374866400d Added direct link to Release Notes
Added direct link to Release Notes
2016-12-28 12:06:02 -06:00
Augusto Monteiro 9f6ecda338 Issues 395 - Creating not.paired event 2016-12-17 10:27:01 -05:00
Augusto Monteiro 657123577d Issues 395 - Creating configuration skill to sync tartarus 2016-12-17 10:27:01 -05:00
Jonathan D'Orleans 4c1ba4e337 Issues 356 - Rebasing with master 2016-12-17 10:16:29 -05:00
Steve Penrod 99418d746d Added link to Project Wiki 2016-11-30 01:53:39 -06:00
chrisvella 0bab8f8072 Updated package list to match build_host_setup.sh
Added flac and curl.
2016-08-04 22:22:55 +10:00
Jason Hines 27b73844d4 Noticed that FAQ/Common Errors section of README.md said that mycroft.… (#221)
* Noticed that FAQ/Common Errors section of README.md said that mycroft.sh would start the cli, so I added it.

* changed three to four for FAQ since four processes are listed.

* added --quiet option to start.sh cli to prevent echo when using the cli

* per @the7erm sugestion: changed the log flush to 1 second for screen.

* modified mycroft.sh to support starting in three modes:
- service, skills, voice, cli --quiet
- service skills, voice
- service skills, cli

* Added changes to quick start to reflect changes to mycroft.sh
2016-06-23 12:13:45 -05:00
Ethan Ward 7943160598 Issues 205 - Remove unnecessary line 2016-06-21 13:52:59 -05:00
Ethan Ward 705785faf2 Issues 205 - Update Readme
This updates the readme to address #205, as well as add an FAQ section for a common error.
2016-06-21 13:40:36 -05:00
Jason Hines 5fb12b8f1d Updated quick start command to reflect changes made to mycroft.sh 2016-06-19 10:16:47 -04:00
Jason Hines 8e798a9afd added a quick start usage to README.md 2016-06-17 18:01:37 -04:00
RobodudeMC 00539f7307 Issues 116 Fix typo in ReadMe (#118) 2016-06-08 23:13:24 -04:00
Travis Burandt 607c3e3e14 readme syntax fixes "it also uses allows you to use" 2016-06-05 20:07:07 -05:00