Merge pull request #2 from clearlinux/master

Updating from latest Master
This commit is contained in:
terencex-tsang
2019-08-26 13:30:50 -07:00
committed by GitHub
5 changed files with 47 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#! /bin/bash
# run with no arguments
# 1. deletes previous build output
# 2. builds default language version of docs only (English)
# 3. changes directory to html output
# 4. runs http server for local review of docs
#
# Requires python 3
make clean
make html
cd source/_build/html
python3 -m http.server
+17
View File
@@ -132,6 +132,23 @@ on GitHub: https://github.com/clearlinux/distribution/issues/422
|
Is Microsoft\* Visual Studio Code\* available?
==============================================
Yes. Find the CLI command for installing `VS Code`_ and other FlatPak apps in
the `software store`_. Installing FlatPak apps is also covered in our
:ref:`tutorial <flatpak>`.
The |CL| team is working on a natively packaged version of Visual Studio Code
for future release.
Join a community forum discussion about manually installing and maintaining
Visual Studio Code: https://community.clearlinux.org/t/need-native-support-for-vs-code-through-swupd/
.. _VS Code: https://clearlinux.org/software?search_api_fulltext=vscode
|
Is FFmpeg available?
====================
@@ -0,0 +1,9 @@
{%- if builder != 'singlehtml' %}
<div role="search">
<form id="rtd-search-form" class="wy-form" action="{{ pathto('search') }}" method="get">
<input type="text" name="q" id="clear-docs-search" placeholder="{{ _('Search documentation') }}" results="0"/>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
{%- endif %}
Binary file not shown.

After

Width:  |  Height:  |  Size: 827 B

@@ -36,6 +36,7 @@
.wy-side-nav-search input[type=text] {
border-radius: 0px;
padding: 0px 0px;
padding-left: 20px;
box-shadow: none;
border: 0;
outline: 0;
@@ -284,3 +285,9 @@ div.admonition ul {
div#trademarks {
color: gray;
}
#clear-docs-search {
background: url(./mag-glass.png) left no-repeat;
background-size: 15px 15px;
}