Skip to content

Add bruce_spora.html for M5stickc plus 2#41

Merged
Fynex-x merged 3 commits intomainfrom
Fynex-x-patch-1
Feb 9, 2026
Merged

Add bruce_spora.html for M5stickc plus 2#41
Fynex-x merged 3 commits intomainfrom
Fynex-x-patch-1

Conversation

@Fynex-x
Copy link
Copy Markdown
Member

@Fynex-x Fynex-x commented Feb 5, 2026

Summary by CodeRabbit

  • Documentation
    • Added a Russian step-by-step guide covering GitHub repo setup, adding/committing files, converting repo links to raw URLs for firmware use, using the provided script reference, a sample code snippet, and a note that Cyrillic characters aren’t supported in firmware.
  • Chores
    • Added a navigation link to the new Russian guide under the M5StickC Plus 2 modules.

Signed-off-by: Fynex <73027082+Fynex-x@users.noreply.github.com>
@github-actions github-actions bot added размер: средний Значительные изменения (50-200 строк). статус: нужен обзор Pull Request готов и ждет проверки мейнтейнером. область: железо Вопросы, связанные с конкретным устройством (Core, Stick, Atom и т.д.). область: модули Описание и примеры для конкретных модулей (датчиков, дисплеев и т.п.). область: сайт Проблемы с версткой, структурой сайта, сборкой документации. html Изменения в HTML-файлах и структуре страниц. and removed статус: нужен обзор Pull Request готов и ждет проверки мейнтейнером. размер: средний Значительные изменения (50-200 строк). labels Feb 5, 2026
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Feb 5, 2026

📝 Walkthrough

Walkthrough

Added a new Russian static documentation page bruce_spora.html with step-by-step GitHub usage instructions and updated the site sidebar to include a link to that page. Changes are content-only and affect site navigation and static HTML.

Changes

Cohort / File(s) Summary
New Documentation Page
M5stack/M5stickc plus 2/bruce_spora.html
Added a Russian-language instructional HTML page covering GitHub repo creation, adding/committing a file, converting GitHub links to raw URLs, embedding a script reference, and a note about Cyrillic support; static content only.
Sidebar Update
sidebar.html
Inserted a new navigation entry "Шпора на bruce" under the "M5StickC Plus 2" menu linking to the new page.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Suggested labels

приоритет: средний, размер: малый

Poem

В норке я строчил до утра,
Добавил гайда — пусть светит он!
Ссылки, шаги и raw-ссылка на ура,
Заяц шепчет: "Код загрузил — в путь!" 🐰✨

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: adding a new HTML file (bruce_spora.html) for the M5StickC Plus 2 module, which aligns with the changeset.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch Fynex-x-patch-1

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@Fynex-x Fynex-x added статус: нужен обзор Pull Request готов и ждет проверки мейнтейнером. размер: средний Значительные изменения (50-200 строк). labels Feb 5, 2026
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In `@M5stack/M5stickc` plus 2/bruce_spora.html:
- Around line 73-77: Update the documentation reference: replace the incorrect
filename "browser_bruse.js" with the correct "browser_bruce.js" in the HTML
snippet (the paragraph that instructs to download and edit the script and any
occurrences in the same file), so users can download the actual repository file;
ensure the displayed code/example and the surrounding text both use
"browser_bruce.js".

Comment on lines +73 to +77
<p>Скачайте скрипт <code>browser_bruse.js</code> и откройте его для редактирования.</p>
<pre><code>var website = [
"https://raw.githubusercontent.com/Fynex-x/test/main/README.md",
"https://raw.githubusercontent.com/Fynex-x/test/main/README.txt"
];</code></pre>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Search for both potential filenames
echo "=== Searching for browser_bruse.js ==="
fd -a 'browser_bruse\.js$' 2>/dev/null || echo "Not found"

echo "=== Searching for browser_bruce.js ==="
fd -a 'browser_bruce\.js$' 2>/dev/null || echo "Not found"

echo "=== Searching for references in codebase ==="
rg -n "browser_bruse\.js|browser_bruce\.js" 2>/dev/null || echo "No references found"

echo "=== Checking for any browser-related .js files ==="
fd -a 'browser.*\.js$' 2>/dev/null | head -20 || echo "No matches"

Repository: M5wiki/M5wiki.github.io

Length of output: 464


Update script filename from browser_bruse.js to browser_bruce.js.

The referenced filename at line 73 is incorrect. The actual file in the repository is named browser_bruce.js, not browser_bruse.js. Update the documentation to reference the correct filename so users can successfully download and edit the script.

🤖 Prompt for AI Agents
In `@M5stack/M5stickc` plus 2/bruce_spora.html around lines 73 - 77, Update the
documentation reference: replace the incorrect filename "browser_bruse.js" with
the correct "browser_bruce.js" in the HTML snippet (the paragraph that instructs
to download and edit the script and any occurrences in the same file), so users
can download the actual repository file; ensure the displayed code/example and
the surrounding text both use "browser_bruce.js".

Signed-off-by: Fynex <73027082+Fynex-x@users.noreply.github.com>
Signed-off-by: Fynex <73027082+Fynex-x@users.noreply.github.com>
@Fynex-x Fynex-x added новая статья Предложение добавить новую статью, инструкцию или описание нового модуля. статус: в работе Кто-то уже взялся за эту задачу. and removed статус: нужен обзор Pull Request готов и ждет проверки мейнтейнером. labels Feb 5, 2026
@Fynex-x
Copy link
Copy Markdown
Member Author

Fynex-x commented Feb 5, 2026

@coderabbitai проверь код

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Feb 5, 2026

@Fynex-x, я проверю код в этом PR и предоставлю подробный обзор изменений.

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@M5wiki M5wiki deleted a comment from coderabbitai bot Feb 5, 2026
@Fynex-x Fynex-x added область: софт Вопросы, связанные с прошивками и средами разработки. and removed область: железо Вопросы, связанные с конкретным устройством (Core, Stick, Atom и т.д.). область: модули Описание и примеры для конкретных модулей (датчиков, дисплеев и т.п.). labels Feb 6, 2026
@Fynex-x Fynex-x merged commit 18630b0 into main Feb 9, 2026
3 checks passed
@github-actions github-actions bot added статус: сделано Задача успешно завершена. Issue готов к закрытию. and removed статус: в работе Кто-то уже взялся за эту задачу. labels Feb 9, 2026
@github-actions github-actions bot deleted the Fynex-x-patch-1 branch February 9, 2026 19:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

html Изменения в HTML-файлах и структуре страниц. новая статья Предложение добавить новую статью, инструкцию или описание нового модуля. область: сайт Проблемы с версткой, структурой сайта, сборкой документации. область: софт Вопросы, связанные с прошивками и средами разработки. размер: средний Значительные изменения (50-200 строк). статус: сделано Задача успешно завершена. Issue готов к закрытию.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant