diff options
Diffstat (limited to 'docs/getting-started')
| -rw-r--r-- | docs/getting-started/browsers-devices.md | 9 | ||||
| -rw-r--r-- | docs/getting-started/build-tools.md | 2 | ||||
| -rw-r--r-- | docs/getting-started/download.md | 12 | ||||
| -rw-r--r-- | docs/getting-started/introduction.md | 2 |
4 files changed, 20 insertions, 5 deletions
diff --git a/docs/getting-started/browsers-devices.md b/docs/getting-started/browsers-devices.md index 67fc200ec..0f98f0678 100644 --- a/docs/getting-started/browsers-devices.md +++ b/docs/getting-started/browsers-devices.md @@ -13,7 +13,7 @@ Bootstrap supports a wide variety of modern browsers and devices, and some older ## Supported browsers -Bootstrap supports the **latest, stable releases** of all major browsers and platforms. On Windows, **we support Internet Explorer 9-11**. More specific support information is provided below. +Bootstrap supports the **latest, stable releases** of all major browsers and platforms. On Windows, **we support Internet Explorer 9-11 / Microsoft Edge**. More specific support information is provided below. ### Mobile devices @@ -64,6 +64,7 @@ Similarly, the latest versions of most desktop browsers are supported. <th>Chrome</th> <th>Firefox</th> <th>Internet Explorer</th> + <th>Microsoft Edge</th> <th>Opera</th> <th>Safari</th> </tr> @@ -74,6 +75,7 @@ Similarly, the latest versions of most desktop browsers are supported. <td class="text-success">Supported</td> <td class="text-success">Supported</td> <td class="text-muted">N/A</td> + <td class="text-muted">N/A</td> <td class="text-success">Supported</td> <td class="text-success">Supported</td> </tr> @@ -83,12 +85,15 @@ Similarly, the latest versions of most desktop browsers are supported. <td class="text-success">Supported</td> <td class="text-success">Supported</td> <td class="text-success">Supported</td> + <td class="text-success">Supported</td> <td class="text-danger">Not supported</td> </tr> </tbody> </table> </div> +For Firefox, in addition to the latest normal stable release, we also support the latest [Extended Support Release (ESR)](https://www.mozilla.org/en-US/firefox/organizations/faq/) version of Firefox. + Unofficially, Bootstrap should look and behave well enough in Chromium and Chrome for Linux, Firefox for Linux, and Internet Explorer 8 and below, though they are not officially supported. For a list of some of the browser bugs that Bootstrap has to grapple with, see our [Wall of browser bugs]({{ site.baseurl }}/browser-bugs/). @@ -138,7 +143,7 @@ As of v4, Bootstrap no longer supports IE8. **If you require IE8 support, we rec Alternatively, you may add some third party JavaScript to backfill support for IE8 to Bootstrap 4. You'll need the following: -* [The HTML5 shiv](http://en.wikipedia.org/wiki/HTML5_Shiv) +* [The HTML5 shiv](https://en.wikipedia.org/wiki/HTML5_Shiv) * [Respond.js](https://github.com/scottjehl/Respond) * [Rem unit polyfill](https://github.com/chuckcarpenter/REM-unit-polyfill) diff --git a/docs/getting-started/build-tools.md b/docs/getting-started/build-tools.md index 04cf5b7a0..adda6cbb1 100644 --- a/docs/getting-started/build-tools.md +++ b/docs/getting-started/build-tools.md @@ -28,7 +28,7 @@ Our Gruntfile includes the following commands and tasks: | --- | --- | | `grunt` | Run `grunt` to run tests locally and compile the CSS and JavaScript into `/dist`. **Uses [Sass](http://sass-lang.com/) and [UglifyJS](http://lisperator.net/uglifyjs/).** | | `grunt dist` | `grunt dist` creates the `/dist` directory with compiled files. **Uses [Sass](http://sass-lang.com/) and [UglifyJS](http://lisperator.net/uglifyjs/).** | -| `grunt test` | Runs [JSHint](http://jshint.com) and [QUnit](http://qunitjs.com/) tests headlessly in [PhantomJS](http://phantomjs.org/) (used for CI). | +| `grunt test` | Runs [scss-lint](https://github.com/brigade/scss-lint), [ESLint](http://eslint.org/) and [QUnit](http://qunitjs.com/) tests headlessly in [PhantomJS](http://phantomjs.org/) (used for CI). | | `grunt docs` | Builds and tests CSS, JavaScript, and other assets which are used when running the documentation locally via `jekyll serve`. | | `grunt watch` | This is a convenience method for watching just Sass files and automatically building them whenever you save. | diff --git a/docs/getting-started/download.md b/docs/getting-started/download.md index 7255fbba5..4e83b9994 100644 --- a/docs/getting-started/download.md +++ b/docs/getting-started/download.md @@ -52,7 +52,7 @@ Install Bootstrap in your Node powered apps with [the npm package](https://www.n Bootstrap's `package.json` contains some additional metadata under the following keys: -- `less` - path to Bootstrap's main [Less](http://lesscss.org) source file +- `sass` - path to Bootstrap's main [Sass](http://sass-lang.com/) source file - `style` - path to Bootstrap's non-minified CSS that's been precompiled using the default settings (no customization) ### Meteor @@ -69,6 +69,16 @@ You can also install and manage Bootstrap's Sass and JavaScript using [Composer] $ composer require twbs/bootstrap {% endhighlight %} +### NuGet + +If you develop in .NET, you can also install and manage Bootstrap's [CSS](https://www.nuget.org/packages/bootstrap/) or [Sass](https://www.nuget.org/packages/bootstrap.sass/) and JavaScript using [NuGet](https://www.nuget.org): + +{% highlight powershell %} +PM> Install-Package bootstrap -Pre +PM> Install-Package bootstrap.sass -Pre +{% endhighlight %} + +The `-Pre` is required until Bootstrap v4 has a stable release. ## Custom builds diff --git a/docs/getting-started/introduction.md b/docs/getting-started/introduction.md index 7ca3e5cce..06ac547a2 100644 --- a/docs/getting-started/introduction.md +++ b/docs/getting-started/introduction.md @@ -65,7 +65,7 @@ Put it all together and your pages should look like this: </html> {% endhighlight %} -That's all you need for overall page requirements. Visit the [Layout docs]({{ site.baseurl }}/layout/scaffolding) or [our official examples]({{ site.baseurl }}/examples/) to start laying out your site's content and components. +That's all you need for overall page requirements. Visit the [Layout docs]({{ site.baseurl }}/layout/overview) or [our official examples]({{ site.baseurl }}/examples/) to start laying out your site's content and components. ## Important globals |
