sphinx_biel 0.1.5__tar.gz → 0.1.7__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.
@@ -0,0 +1,64 @@
1
+ =========
2
+ Changelog
3
+ =========
4
+
5
+ All notable changes to this project will be documented in this file.
6
+
7
+
8
+ [0.1.7] - 15 September 2025
9
+ ===========================
10
+
11
+ Added
12
+ -----
13
+
14
+ * New ``hide_sources`` field for hiding sources.
15
+
16
+
17
+ [0.1.6] - 29 August 2025
18
+ ========================
19
+
20
+ Added
21
+ -----
22
+
23
+ * New ``ai_icon`` field for configuring the AI icon type.
24
+ * New ``hide_avatars`` field for hiding avatar display.
25
+
26
+ [1.0.5] - 22 June 2025
27
+ =======================
28
+
29
+ Added
30
+ -----
31
+
32
+ * New ``api_key`` field for configuration.
33
+
34
+ [1.0.4] - 24 May 2025
35
+ ======================
36
+
37
+ Changed
38
+ -------
39
+
40
+ * 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``.
41
+
42
+ [1.3.3] - 16 April 2025
43
+ ========================
44
+
45
+ Added
46
+ -----
47
+
48
+ * 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``.
49
+
50
+ [0.1.2] - 24 February 2025
51
+ ===========================
52
+
53
+ Changed
54
+ -------
55
+
56
+ * Open source code release.
57
+
58
+ [0.1.0] - 03 August 2023
59
+ ========================
60
+
61
+ Added
62
+ -----
63
+
64
+ * Initial code release.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sphinx_biel
3
- Version: 0.1.5
3
+ Version: 0.1.7
4
4
  Summary: ASK AI chatbot for Sphinx.
5
5
  Author-email: TechDocs Studio <info@techdocs.studio>
6
6
  Description-Content-Type: text/x-rst
@@ -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.5"
8
+ __version__ = "0.1.7"
9
9
 
10
10
  from sphinx.application import Sphinx
11
11
 
@@ -18,6 +18,8 @@ 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',
22
24
  'api_key': None,
23
25
 
@@ -28,6 +30,7 @@ class BielExtension:
28
30
  'hide_close_button': None,
29
31
  'hide_expand_button': None,
30
32
  'hide_refresh_button': None,
33
+ 'hide_sources': None,
31
34
  'hide_feedback': None,
32
35
  'modal_position': None,
33
36
  'show_terms_modal': 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
@@ -1,14 +0,0 @@
1
- =========
2
- Changelog
3
- =========
4
-
5
- All notable changes to this project will be documented in this file.
6
-
7
-
8
- [0.1.0] - 03 August 2023
9
- ========================
10
-
11
- Added
12
- -----
13
-
14
- * Initial code release
File without changes
File without changes
File without changes
File without changes
File without changes