sphinx_biel 0.1.6__tar.gz → 0.1.8__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.
@@ -5,6 +5,25 @@ Changelog
5
5
  All notable changes to this project will be documented in this file.
6
6
 
7
7
 
8
+ [0.1.7] - 11 November 2025
9
+
10
+ Added
11
+ -----
12
+
13
+ * New ``hide_think_mode_button`` field for hiding the think mode button.
14
+ * New ``hide_tooltips`` field for hiding the tooltips.
15
+ * New ``think_mode_enabled`` field for enabling the think mode.
16
+ * New ``think_mode_button_text`` field for configuring the think mode button text.
17
+
18
+ [0.1.7] - 15 September 2025
19
+ ===========================
20
+
21
+ Added
22
+ -----
23
+
24
+ * New ``hide_sources`` field for hiding sources.
25
+
26
+
8
27
  [0.1.6] - 29 August 2025
9
28
  ========================
10
29
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sphinx_biel
3
- Version: 0.1.6
3
+ Version: 0.1.8
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.6"
8
+ __version__ = "0.1.8"
9
9
 
10
10
  from sphinx.application import Sphinx
11
11
 
@@ -30,17 +30,26 @@ class BielExtension:
30
30
  'hide_close_button': None,
31
31
  'hide_expand_button': None,
32
32
  'hide_refresh_button': None,
33
+ 'hide_sources': None,
33
34
  'hide_feedback': None,
35
+ 'hide_think_mode_button': None,
36
+ 'hide_tooltips': None,
34
37
  'modal_position': None,
35
38
  'show_terms_modal': None,
39
+ 'think_mode_enabled': None,
36
40
 
37
41
  # biel-bot text
42
+ 'assistant_label': None,
43
+ 'close_button_text': None,
44
+ 'collapse_button_text': None,
38
45
  'error_message_4_0_3': None,
39
46
  'error_message_4_0_4': None,
40
47
  'error_message_default': None,
48
+ 'expand_button_text': None,
41
49
  'footer_text': None,
42
50
  'header_title': 'Biel.ai chatbot',
43
51
  'input_placeholder_text': None,
52
+ 'refresh_button_text': None,
44
53
  'send_button_text': None,
45
54
  'sources_text': None,
46
55
  'suggested_questions': None,
@@ -48,6 +57,7 @@ class BielExtension:
48
57
  'terms_checkbox_text': None,
49
58
  'terms_description': None,
50
59
  'terms_title': None,
60
+ 'think_mode_button_text': None,
51
61
  'welcome_message': None,
52
62
  }
53
63
 
File without changes
File without changes
File without changes
File without changes
File without changes