From 046d8dd07b389147370bf0c91815a73931d0fac3 Mon Sep 17 00:00:00 2001 From: Vladimir Roncevic Date: Tue, 1 Sep 2026 08:30:40 +0200 Subject: [PATCH 1/3] [abcomm] Updated general docs --- .readthedocs.yml | 3 +++ docs/source/_static/.gitkeep | 0 docs/source/_templates/.gitkeep | 0 docs/source/conf.py | 2 +- docs/{ => source}/index.rst | 4 ++-- docs/source/index.rst.rst | 20 -------------------- 6 files changed, 6 insertions(+), 23 deletions(-) create mode 100644 docs/source/_static/.gitkeep create mode 100644 docs/source/_templates/.gitkeep rename docs/{ => source}/index.rst (98%) delete mode 100644 docs/source/index.rst.rst diff --git a/.readthedocs.yml b/.readthedocs.yml index b3b933e..0614771 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -1,7 +1,10 @@ version: 2 + build: os: ubuntu-22.04 tools: python: "3.12" + sphinx: configuration: docs/source/conf.py + fail_on_warning: false diff --git a/docs/source/_static/.gitkeep b/docs/source/_static/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/docs/source/_templates/.gitkeep b/docs/source/_templates/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/docs/source/conf.py b/docs/source/conf.py index c42d305..367d466 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -19,7 +19,7 @@ templates_path = ['_templates'] exclude_patterns = [] -root_doc = 'index.rst' +root_doc = 'index' # -- Options for HTML output ------------------------------------------------- diff --git a/docs/index.rst b/docs/source/index.rst similarity index 98% rename from docs/index.rst rename to docs/source/index.rst index 5b9ed57..56dd7b9 100644 --- a/docs/index.rst +++ b/docs/source/index.rst @@ -1,8 +1,8 @@ .. ABComm documentation master file -=============================================== +================================================= ABComm - Advanced Bluetooth & Wi-Fi Relay Control -=============================================== +================================================= .. image:: https://raw.githubusercontent.com/electux/abcomm/main/docs/logo.svg :align: right diff --git a/docs/source/index.rst.rst b/docs/source/index.rst.rst deleted file mode 100644 index 79be073..0000000 --- a/docs/source/index.rst.rst +++ /dev/null @@ -1,20 +0,0 @@ -.. ABComm documentation master file, created by - sphinx-quickstart on Tue Sep 1 08:06:46 2026. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to ABComm's documentation! -================================== - -.. toctree:: - :maxdepth: 2 - :caption: Contents: - - - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` From d0468282913ceaf518c6d185484666220eebc871 Mon Sep 17 00:00:00 2001 From: Vladimir Roncevic Date: Tue, 1 Sep 2026 08:32:32 +0200 Subject: [PATCH 2/3] [abcomm] Updated GitHub workflows --- .github/workflows/android.yml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 82ee995..f96c1a2 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -2,9 +2,27 @@ name: Android CI on: push: - branches: [ "main", "master" ] + branches: [ "main", "master", "dev" ] + paths: + - 'app/**' + - 'gradle/**' + - 'build.gradle.kts' + - 'settings.gradle.kts' + - 'gradle.properties' + - 'gradlew' + - 'gradlew.bat' + - '.github/workflows/android.yml' pull_request: - branches: [ "main", "master" ] + branches: [ "main", "master", "dev" ] + paths: + - 'app/**' + - 'gradle/**' + - 'build.gradle.kts' + - 'settings.gradle.kts' + - 'gradle.properties' + - 'gradlew' + - 'gradlew.bat' + - '.github/workflows/android.yml' jobs: build: From 050c7078d80a03f380cbaebb9672459db63d878f Mon Sep 17 00:00:00 2001 From: Vladimir Roncevic Date: Tue, 1 Sep 2026 08:33:33 +0200 Subject: [PATCH 3/3] [abcomm] Updated GitHub workflows --- .github/workflows/android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index f96c1a2..324a656 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -2,7 +2,7 @@ name: Android CI on: push: - branches: [ "main", "master", "dev" ] + branches: [ "main" ] paths: - 'app/**' - 'gradle/**' @@ -13,7 +13,7 @@ on: - 'gradlew.bat' - '.github/workflows/android.yml' pull_request: - branches: [ "main", "master", "dev" ] + branches: [ "main" ] paths: - 'app/**' - 'gradle/**'