]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
chore: applies spell-check against entire repo (aspell) 151/head
authorTai Groot <tai@taigrr.com>
Mon, 26 Oct 2020 04:12:37 +0000 (21:12 -0700)
committerTai Groot <tai@taigrr.com>
Mon, 26 Oct 2020 04:27:09 +0000 (21:27 -0700)
.github/PULL_REQUEST_TEMPLATE.md
CONTRIBUTING.md
README.md
docs/configuration.md
docs/development.md
docs/tips-and-tricks.md
src/assets/themes/sui.scss
src/components/DynamicTheme.vue

index d32ca783804012f1988dede3d899e4e005731363..9a6fe4355c25aba6b90f58ecc589b9a8d3ea258e 100644 (file)
@@ -12,7 +12,7 @@ Fixes # (issue)
 
 ## Checklist:
 
-- [ ] I read & comply with the [contributing guidelines](https://github.com/bastienwirtz/homer/blob/master/CONTRIBUTING.md)
+- [ ] I've read & comply with the [contributing guidelines](https://github.com/bastienwirtz/homer/blob/master/CONTRIBUTING.md)
 - [ ] I have tested my code for new features & regressions on both mobile & desktop devices, using the latest version of major browsers. 
 - [ ] I have made corresponding changes the documentation (README.md).
-- [ ] I've check my modifications for any breaking change, especially in the `config.yml` file
+- [ ] I've checked my modifications for any breaking changes, especially in the `config.yml` file
index 438c6e7f86f2bb1f0ec91d0f946870c537e64bd5..458a14704aa3639feb79554e61439cdc108b3987 100644 (file)
@@ -6,10 +6,10 @@ First off, thank you for considering contributing to Homer!
 
 ### Project philosophy
 
-Homer is meant to be a light and very simple dashboard that keeps all your usefull utilities at hands. The few features implemented in Homer focus on
+Homer is meant to be a light and very simple dashboard that keeps all your useful utilities at hands. The few features implemented in Homer focus on
 UX and usability. If you are looking for a full featured dashboard, there is tons of great stuff out there like https://heimdall.site/, https://github.com/rmountjoy92/DashMachine or https://organizr.app/.
 
-- Configuration is stored in a simple config file, avoiding the need for a backend/database while making possible to use versionning or [config template](https://docs.ansible.com/ansible/latest/user_guide/playbooks_templating.html).
+- Configuration is stored in a simple config file, avoiding the need for a backend/database while making possible to use versioning or [config template](https://docs.ansible.com/ansible/latest/user_guide/playbooks_templating.html).
 - Only modern browsers are supported, feel free to use any JS features without any polyfill as soon as the latest version of the major browsers supports them.
 
 ### Roadmap
@@ -21,7 +21,7 @@ Feel free to open an issue if you have any question.
 
 ### Code of conduct and guidelines
 
-First of all, we expect everyone (contributors and maintainers alike) to respect the [Code of conduct](https://github.com/bastienwirtz/homer/blob/master/CODE_OF_CONDUCT.md). It is not a recomandation, it is mandatory.
+First of all, we expect everyone (contributors and maintainers alike) to respect the [Code of conduct](https://github.com/bastienwirtz/homer/blob/master/CODE_OF_CONDUCT.md). It is not a recommendation, it is mandatory.
 
 For all contributions, please respect the following guidelines:
 
index 3313977a4663cdea892daff002c88e1bf9efa8f3..d35f743d1f0c980830cb3265cb94e2b03e0f0568 100644 (file)
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@
 - [Configuration](docs/configuration.md)
 - [Tips & tricks](docs/tips-and-tricks.md)
 - [Roadmap](#roadmap) 
-- [Developement](docs/developement.md)
+- [Development](docs/development.md)
 
 
 ## Features
index 7df565198dcec621190e8fd9fc0789dc76aa9fee..43e9ba18df8574b0d1bb1880256f08b71196ef27 100644 (file)
@@ -1,6 +1,6 @@
 ## Configuration
 
-Title, icons, links, colors, and services can be configured in the `config.yml` file (located in `/assets` directory once built, or in the `public/assets` directory in developement mode), using [yaml](http://yaml.org/) format.
+Title, icons, links, colors, and services can be configured in the `config.yml` file (located in `/assets` directory once built, or in the `public/assets` directory in development mode), using [yaml](http://yaml.org/) format.
 
 ```yaml
 ---
index 6ea1cba1379064c17e72f025a3faf3956f5247e4..f2e90201f9c86853cb5ddd374c337271f525866b 100644 (file)
@@ -1,4 +1,4 @@
-## Developement
+## Development
 
 ```sh
 # Using yarn (recommended)
@@ -13,7 +13,7 @@ npm run serve
 ### Themes
 
 Themes are meant to be simple customization (written in [scss](https://sass-lang.com/documentation/syntax)).
-To addd a new theme, just add a file in the theme directory, and put all style in the `body #app.theme-<name>` scope. Then import it in the main style file.
+To add a new theme, just add a file in the theme directory, and put all style in the `body #app.theme-<name>` scope. Then import it in the main style file.
 
 ```scss
 // `src/assets/themes/my-awesome-theme.scss`
index 175c271c34fc6f020fd03ff7121a82c282816d41..9f35987eae990b8f4c5f991529cdcca315dbe20d 100644 (file)
@@ -7,7 +7,7 @@ Here is a collection of neat tips and tricks that Homer users have come up with!
 
 These extensions for [Firefox](https://addons.mozilla.org/firefox/addon/custom-new-tab-page) and [Chrome & Friends](https://chrome.google.com/webstore/detail/new-tab-changer/occbjkhimchkolibngmcefpjlbknggfh) allow you to have your homer dashboard in your new tab page, while leaving focus on the address bar meaning you can still type right away if you want to search or go to a page that is not on your homer dash.
 
-The firefox extension loads Homer in an iframe on your new tab page, meaning you have to add `target: '_top'` to each of your items.
+The Firefox extension loads Homer in an iframe on your new tab page, meaning you have to add `target: '_top'` to each of your items.
 
 ```yaml
 - name: "Reddit"
@@ -24,7 +24,7 @@ The firefox extension loads Homer in an iframe on your new tab page, meaning you
 ## YAML Anchors
 #### `by @JamiePhonic`
 
-Since Homer is configured using YAML, it supports all of YAML's helpful fetaures, such as anchoring!
+Since Homer is configured using YAML, it supports all of YAML's helpful features, such as anchoring!
 
 For example, you can define tags and tag styles for each "item" in a service. 
 Using Anchoring, you can define all your tags and their styles once like this: (for example)
@@ -66,13 +66,13 @@ Then when Homer reads your config, it will substitute your anchors automatically
   target: "_blank" # optional html tag target attribute
 ```
 
-The end result is that if you want to update the name or style of any perticular tag, just update it once, in the tags section! 
+The end result is that if you want to update the name or style of any particular tag, just update it once, in the tags section! 
 Great if you have a lot of services or a lot of tags!  
 
 ## Remotely edit your config with Code Server
 #### `by @JamiePhonic`
 
-Homer doesn't yet provide a way to edit your configuration from inside Homer itself, but that doesnt mean it cant be done!
+Homer doesn't yet provide a way to edit your configuration from inside Homer itself, but that doesn't mean it cant be done!
 
 You can setup and use [Code-Server](https://github.com/cdr/code-server) to edit your `config.yml` file from anywhere!
 
@@ -123,4 +123,4 @@ So, using [Node-Red](https://nodered.org/docs/getting-started/) and a quick flow
 
 To get started, simply import [this flow](https://flows.nodered.org/flow/4b6406c9a684c26ace0430dd1826e95d) into your Node-Red instance and change the RSS feed in the "Get News RSS Feed" node to one of your choosing! 
 
-So far, the flow has been tested with BBC News and Sky News, however it should be easy to modify the flow to work with other RSS feeds if they dont work out of the box!
+So far, the flow has been tested with BBC News and Sky News, however it should be easy to modify the flow to work with other RSS feeds if they don't work out of the box!
index f94433e0f2bd59cc2b49a25cc11861639fc8b5c8..352fd7868e74bcb9d34959d4b480782081de3e3e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * SUI theme
- * Inpired by the great https://github.com/jeroenpardon/sui start page
+ * Inspired by the great https://github.com/jeroenpardon/sui start page
  * Author: @bastienwirtz
  */
 body #app.theme-sui {
index fc2fd55034c1c37c6c5ad1171df0156e8851bf00..2d37fcbbf611594141dbf409a0f907326e3cad1e 100644 (file)
@@ -25,7 +25,7 @@ export default {
       for (const themeVars in theme) {
         let value = `${theme[themeVars]}`;
         if (!value) {
-          value = "inital";
+          value = "initial";
         } else if (themeVars == "background-image") {
           value = `url(${theme[themeVars]})`;
         }