sphinx_biel 0.1.4__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sphinx_biel-0.1.6/CHANGELOG.rst +55 -0
- {sphinx_biel-0.1.4 → sphinx_biel-0.1.6}/PKG-INFO +1 -1
- {sphinx_biel-0.1.4 → sphinx_biel-0.1.6}/src/sphinx_biel/__init__.py +4 -1
- sphinx_biel-0.1.4/.github/workflows/ci.yml +0 -34
- sphinx_biel-0.1.4/CHANGELOG.rst +0 -14
- {sphinx_biel-0.1.4 → sphinx_biel-0.1.6}/.flake8 +0 -0
- {sphinx_biel-0.1.4 → sphinx_biel-0.1.6}/.github/dependabot.yml +0 -0
- {sphinx_biel-0.1.4 → sphinx_biel-0.1.6}/.gitignore +0 -0
- {sphinx_biel-0.1.4 → sphinx_biel-0.1.6}/.pre-commit-config.yaml +0 -0
- {sphinx_biel-0.1.4 → sphinx_biel-0.1.6}/.readthedocs.yml +0 -0
- {sphinx_biel-0.1.4 → sphinx_biel-0.1.6}/LICENSE.md +0 -0
- {sphinx_biel-0.1.4 → sphinx_biel-0.1.6}/README.rst +0 -0
- {sphinx_biel-0.1.4 → sphinx_biel-0.1.6}/pyproject.toml +0 -0
@@ -0,0 +1,55 @@
|
|
1
|
+
=========
|
2
|
+
Changelog
|
3
|
+
=========
|
4
|
+
|
5
|
+
All notable changes to this project will be documented in this file.
|
6
|
+
|
7
|
+
|
8
|
+
[0.1.6] - 29 August 2025
|
9
|
+
========================
|
10
|
+
|
11
|
+
Added
|
12
|
+
-----
|
13
|
+
|
14
|
+
* New ``ai_icon`` field for configuring the AI icon type.
|
15
|
+
* New ``hide_avatars`` field for hiding avatar display.
|
16
|
+
|
17
|
+
[1.0.5] - 22 June 2025
|
18
|
+
=======================
|
19
|
+
|
20
|
+
Added
|
21
|
+
-----
|
22
|
+
|
23
|
+
* New ``api_key`` field for configuration.
|
24
|
+
|
25
|
+
[1.0.4] - 24 May 2025
|
26
|
+
======================
|
27
|
+
|
28
|
+
Changed
|
29
|
+
-------
|
30
|
+
|
31
|
+
* Enhanced BielExtension with additional configuration options: ``disable_input``, ``email``, ``expand_modal``, ``hide_close_button``, ``hide_expand_button``, ``hide_refresh_button``, ``hide_feedback``, ``modal_position``, ``show_terms_modal``, ``error_message_4_0_3``, ``error_message_4_0_4``, ``error_message_default``, ``footer_text``, ``header_title``, ``input_placeholder_text``, ``send_button_text``, ``sources_text``, ``suggested_questions``, ``suggested_questions_title``, ``terms_checkbox_text``, ``terms_description``, ``terms_title``, ``welcome_message``.
|
32
|
+
|
33
|
+
[1.3.3] - 16 April 2025
|
34
|
+
========================
|
35
|
+
|
36
|
+
Added
|
37
|
+
-----
|
38
|
+
|
39
|
+
* Latest configuration options including ``custom_font``, ``email``, ``hide_icon``, ``input_placeholder_text``, ``send_button_text``, ``suggested_questions_title``, ``show_terms_modal``, ``terms_title``, ``terms_description``, and ``terms_checkbox_text``.
|
40
|
+
|
41
|
+
[0.1.2] - 24 February 2025
|
42
|
+
===========================
|
43
|
+
|
44
|
+
Changed
|
45
|
+
-------
|
46
|
+
|
47
|
+
* Open source code release.
|
48
|
+
|
49
|
+
[0.1.0] - 03 August 2023
|
50
|
+
========================
|
51
|
+
|
52
|
+
Added
|
53
|
+
-----
|
54
|
+
|
55
|
+
* Initial code release.
|
@@ -5,7 +5,7 @@ ASK AI chatbot for Sphinx.
|
|
5
5
|
This code is licensed under MIT license (see LICENSE.md for details).
|
6
6
|
"""
|
7
7
|
|
8
|
-
__version__ = "0.1.
|
8
|
+
__version__ = "0.1.6"
|
9
9
|
|
10
10
|
from sphinx.application import Sphinx
|
11
11
|
|
@@ -18,7 +18,10 @@ class BielExtension:
|
|
18
18
|
'button_style': "dark",
|
19
19
|
'custom_font': None,
|
20
20
|
'hide_icon': None,
|
21
|
+
'ai_icon': None,
|
22
|
+
'hide_avatars': None,
|
21
23
|
'version': 'latest',
|
24
|
+
'api_key': None,
|
22
25
|
|
23
26
|
# biel-bot
|
24
27
|
'disable_input': None,
|
@@ -1,34 +0,0 @@
|
|
1
|
-
---
|
2
|
-
|
3
|
-
name: CI
|
4
|
-
|
5
|
-
on:
|
6
|
-
push:
|
7
|
-
branches: [master]
|
8
|
-
pull_request:
|
9
|
-
branches: [master]
|
10
|
-
|
11
|
-
jobs:
|
12
|
-
build:
|
13
|
-
|
14
|
-
runs-on: ubuntu-latest
|
15
|
-
|
16
|
-
strategy:
|
17
|
-
matrix:
|
18
|
-
python-version: ["3.12"]
|
19
|
-
|
20
|
-
steps:
|
21
|
-
- uses: actions/checkout@v3
|
22
|
-
- name: "Set up Python"
|
23
|
-
uses: actions/setup-python@v4
|
24
|
-
with:
|
25
|
-
python-version: ${{ matrix.python-version }}
|
26
|
-
- name: "Install dependencies"
|
27
|
-
run: |
|
28
|
-
python -m pip install .[test,doc]
|
29
|
-
- name: "Lint code"
|
30
|
-
run: |
|
31
|
-
pre-commit run --all-files
|
32
|
-
- name: "Build sample"
|
33
|
-
run: |
|
34
|
-
make -C docs dirhtml
|
sphinx_biel-0.1.4/CHANGELOG.rst
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|