From a7dfb7c2fd3ad8cdd7aab53e292f6c0b2bd4a0bd Mon Sep 17 00:00:00 2001 From: nate contino Date: Tue, 17 Dec 2024 12:41:42 -0500 Subject: [PATCH 1/4] Reduce size of toc frame on mobile so no content renders offscreen --- jekyll-assets/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jekyll-assets/css/style.css b/jekyll-assets/css/style.css index 72223128f..96c618977 100644 --- a/jekyll-assets/css/style.css +++ b/jekyll-assets/css/style.css @@ -1487,7 +1487,7 @@ input:not(:checked) ~ li ~ .itemcontents .sectlevel1 { } #mobile-toggle:checked ~ #docs-content .toc { - height: 100vh; + height: 93vh; max-width: 100vw; } @@ -1778,4 +1778,4 @@ ul#tab-container li.selected a { display: block; width: 100%; } -} \ No newline at end of file +} From d9b0423c6995eea44ad47a305d7b2fc24be29a4b Mon Sep 17 00:00:00 2001 From: Ruffalo Lavoisier Date: Thu, 26 Dec 2024 22:09:07 +0900 Subject: [PATCH 2/4] Fix typo on partition - Fix correct spelling on partition --- documentation/asciidoc/computers/configuration/headless.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/asciidoc/computers/configuration/headless.adoc b/documentation/asciidoc/computers/configuration/headless.adoc index fb4ea3e64..e62c2eef0 100644 --- a/documentation/asciidoc/computers/configuration/headless.adoc +++ b/documentation/asciidoc/computers/configuration/headless.adoc @@ -33,7 +33,7 @@ For more information, see xref:remote-access.adoc#ssh[set up an SSH server]. Onc [[configuring-a-user]] ==== Configure a user manually -At the root of the first partion of your SD card (the filesystem labeled `bootfs`), create a file named `userconf.txt`. +At the root of the first partition of your SD card (the filesystem labeled `bootfs`), create a file named `userconf.txt`. This file should contain a single line of text, consisting of `:`: your desired username, followed immediately by a colon, followed immediately by an *encrypted* representation of the password you want to use. From 4fff62c807c31b491e1948f138af564cd1548aa1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 23:13:51 +0000 Subject: [PATCH 3/4] Bump nokogiri from 1.17.2 to 1.18.1 Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.17.2 to 1.18.1. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.17.2...v1.18.1) --- updated-dependencies: - dependency-name: nokogiri dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 5a5ccbb7f..797e2164e 100644 --- a/Gemfile +++ b/Gemfile @@ -35,7 +35,7 @@ end # Performance-booster for watching directories on Windows gem "wdm", "~> 0.2.0", :install_if => Gem.win_platform? -gem "nokogiri", "~> 1.17" +gem "nokogiri", "~> 1.18" # So we can add custom element templates gem 'slim', '~> 5.2.1' diff --git a/Gemfile.lock b/Gemfile.lock index f22399e4c..9761d78c6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -62,7 +62,7 @@ GEM jekyll (>= 3.5, < 5.0) jekyll-feed (~> 0.9) jekyll-seo-tag (~> 2.1) - nokogiri (1.17.2) + nokogiri (1.18.1) mini_portile2 (~> 2.8.2) racc (~> 1.4) pathutil (0.16.2) @@ -105,7 +105,7 @@ DEPENDENCIES jekyll-asciidoc jekyll-feed (~> 0.17) minima (~> 2.5) - nokogiri (~> 1.17) + nokogiri (~> 1.18) slim (~> 5.2.1) thread_safe (~> 0.3.5) tzinfo (~> 2.0) From f863080b0c0bd6a74be86ffdfd1c14cc345a03c1 Mon Sep 17 00:00:00 2001 From: Nate Contino Date: Wed, 8 Jan 2025 23:13:29 -0500 Subject: [PATCH 4/4] Improve RAM SKU descriptions for Pi 5 and CM5 --- .../asciidoc/computers/compute-module/introduction.adoc | 2 +- .../asciidoc/computers/raspberry-pi/introduction.adoc | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/documentation/asciidoc/computers/compute-module/introduction.adoc b/documentation/asciidoc/computers/compute-module/introduction.adoc index 70c2911f0..aa74d7bd5 100644 --- a/documentation/asciidoc/computers/compute-module/introduction.adoc +++ b/documentation/asciidoc/computers/compute-module/introduction.adoc @@ -16,7 +16,7 @@ Compute Modules use the following Raspberry Pi SoCs: .Compute Module 5 image::images/cm5.png[alt="Compute Module 5", width="60%"] -The Compute Module 5 (CM5) combines the internals of a Raspberry Pi 5 (the BCM2712 processor and 2GB, 4GB, or 8GB of RAM) with optional 0GB (Lite), 16GB, 32GB or 64GB of eMMC flash storage. +The Compute Module 5 (CM5) combines the internals of a Raspberry Pi 5 (the BCM2712 processor and 2GB, 4GB, 8GB, or 16GB of RAM) with optional 0GB (Lite), 16GB, 32GB or 64GB of eMMC flash storage. CM5 uses the same form factor as CM4, featuring two 100-pin high density connectors. diff --git a/documentation/asciidoc/computers/raspberry-pi/introduction.adoc b/documentation/asciidoc/computers/raspberry-pi/introduction.adoc index c4f6efea1..1058dd9d5 100644 --- a/documentation/asciidoc/computers/raspberry-pi/introduction.adoc +++ b/documentation/asciidoc/computers/raspberry-pi/introduction.adoc @@ -162,13 +162,15 @@ a| ^.^a| .Raspberry Pi 5 image::images/5.jpg[alt="Raspberry Pi 5"] -| xref:processors.adoc#bcm2712[BCM2712] (2GB version uses xref:processors.adoc#bcm2712[BCM2712D0]) +| xref:processors.adoc#bcm2712[BCM2712] a| 2GB 4GB -8GB | 40-pin GPIO header +8GB + +16GB | 40-pin GPIO header a| * 2× micro HDMI * 2× USB 2.0