Skip to content

Commit 58d40c4

Browse files
committed
github pages
1 parent 7c369b7 commit 58d40c4

95 files changed

Lines changed: 840 additions & 1057 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/.buildinfo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
2-
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 98f872734b11adb2bc9b932972e9c5b4
2+
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
3+
config: c78719281f6c206f60fae59bc1d43df3
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_sources/controller.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Installation
3535
------------
3636

3737
The BNG Blaster controller should run on any modern Linux distribution
38-
but is primarily tested on Ubuntu 22.04 LTS and Ubuntu 24.04 LTS.
38+
but is primarily tested on Debian Bookworm and Ubuntu 22.04 LTS.
3939

4040
Download and install Debian package: https://github.com/rtbrick/bngblaster-controller/releases
4141

docs/_sources/install.rst.txt

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Installation
44
============
55

66
The BNG Blaster should run on any modern Linux distribution
7-
but is primarily tested on Ubuntu 22.04 LTS.
7+
but is primarily tested on Debian Bookworm and Ubuntu 22.04 LTS.
88

99
Install Ubuntu
1010
--------------
@@ -15,7 +15,7 @@ Install dependencies:
1515
1616
# Ubuntu 18.04 and 20.04
1717
sudo apt install -y libssl1.1 libncurses5 libjansson4
18-
# Ubuntu 22.04 and newer
18+
# Debian Bookworm, Ubuntu 22.04 and newer
1919
sudo apt install -y libssl3 libncurses6 libjansson4
2020
2121
@@ -44,14 +44,17 @@ and the following standard dependencies:
4444
# install libdict for Ubuntu 18.04 LTS
4545
wget https://github.com/rtbrick/libdict/releases/download/v1.0.1/libdict-debian.zip
4646
unzip libdict-debian.zip
47-
sudo dpkg -i libdict_1.0.1_amd64.deb
48-
sudo dpkg -i libdict-dev_1.0.1_amd64.deb
4947
5048
# install libdict for Ubuntu 22.04 LTS
51-
wget https://github.com/rtbrick/libdict/releases/download/1.0.3/libdict-ubuntu-22.04.zip
49+
wget https://github.com/rtbrick/libdict/releases/download/1.0.5/libdict-ubuntu-22.04.zip
5250
unzip libdict-ubuntu-22.04.zip
53-
sudo dpkg -i libdict_1.0.3_amd64.deb
54-
sudo dpkg -i libdict-dev_1.0.3_amd64.deb
51+
52+
# install libdict for Debian Bookworm
53+
wget https://github.com/rtbrick/libdict/releases/download/1.0.5/libdict-bookworm.zip
54+
unzip libdict-bookworm.zip
55+
56+
sudo dpkg -i libdict_1.0.5_amd64.deb
57+
sudo dpkg -i libdict-dev_1.0.5_amd64.deb
5558
5659
# install other dependencies
5760
sudo apt install -y cmake \

docs/_static/basic.css

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
/*
2-
* basic.css
3-
* ~~~~~~~~~
4-
*
52
* Sphinx stylesheet -- basic theme.
6-
*
7-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
8-
* :license: BSD, see LICENSE for details.
9-
*
103
*/
114

125
/* -- main layout ----------------------------------------------------------- */
@@ -115,15 +108,11 @@ img {
115108
/* -- search page ----------------------------------------------------------- */
116109

117110
ul.search {
118-
margin: 10px 0 0 20px;
119-
padding: 0;
111+
margin-top: 10px;
120112
}
121113

122114
ul.search li {
123-
padding: 5px 0 5px 20px;
124-
background-image: url(file.png);
125-
background-repeat: no-repeat;
126-
background-position: 0 7px;
115+
padding: 5px 0;
127116
}
128117

129118
ul.search li a {

docs/_static/css/badge_only.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_static/css/theme.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_static/doctools.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
/*
2-
* doctools.js
3-
* ~~~~~~~~~~~
4-
*
52
* Base JavaScript utilities for all Sphinx HTML documentation.
6-
*
7-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
8-
* :license: BSD, see LICENSE for details.
9-
*
103
*/
114
"use strict";
125

docs/_static/language_data.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
/*
2-
* language_data.js
3-
* ~~~~~~~~~~~~~~~~
4-
*
52
* This script contains the language-specific data used by searchtools.js,
63
* namely the list of stopwords, stemmer, scorer and splitter.
7-
*
8-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
9-
* :license: BSD, see LICENSE for details.
10-
*
114
*/
125

136
var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];
147

158

16-
/* Non-minified version is copied as a separate JS file, is available */
9+
/* Non-minified version is copied as a separate JS file, if available */
1710

1811
/**
1912
* Porter Stemmer

0 commit comments

Comments
 (0)