File tree Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 1
- ## Release 0.8.0 (development release)
1
+ ## Release 0.7.1
2
2
3
3
### Contributors
4
4
5
5
This release contains contributions from (in alphabetical order):
6
6
7
+ - [ Alan Martin] ( https://github.com/alan-emartin )
8
+
9
+ ### Bug fixes
10
+
11
+ * Fixed an issue with the ` command_palette_enabled ` and ` search_on_pennylane ` options
12
+ having falsey values, big thanks to [ Mikhail Andrenkov] ( https://github.com/Mandrenkov ) .
13
+ [ (#60 )] ( https://github.com/XanaduAI/xanadu-sphinx-theme/pull/60 )
14
+
7
15
## Release 0.7.0
8
16
9
17
### Contributors
Original file line number Diff line number Diff line change 3
3
using the following format: <major>.<minor>.<patch>[-<pre-release>].
4
4
"""
5
5
6
- __version__ = "0.8.0-dev "
6
+ __version__ = "0.7.1 "
Original file line number Diff line number Diff line change 80
80
{% endfor %}
81
81
</ ul >
82
82
< ul class ="navbar-right-links desktop ">
83
- {% if theme_command_palette_enabled %}
83
+ {% if theme_command_palette_enabled|lower == 'true' %}
84
84
<!-- Command Palette Button - Desktop -->
85
85
< button
86
86
type ="button "
181
181
182
182
< div class ="navbar-links mobile ">
183
183
< ul >
184
- {% if theme_command_palette_enabled %}
184
+ {% if theme_command_palette_enabled|lower == 'true' %}
185
185
<!-- Command Palette Button - Mobile -->
186
186
< li class ="navbar-link mobile ">
187
187
< button
228
228
</ ul >
229
229
</ div >
230
230
231
- {% if theme_command_palette_enabled %}
231
+ {% if theme_command_palette_enabled|lower == 'true' %}
232
232
<!-- Initialize Command Palette Widget -->
233
233
< pennylane-help > </ pennylane-help >
234
234
< script type ="module " src ="https://widget.cloud.pennylane.ai/command-palette/assets/js/widget.js "> </ script >
Original file line number Diff line number Diff line change 1
- {% if theme_search_on_pennylane_ai %}
1
+ {% if theme_search_on_pennylane_ai|lower == 'true' %}
2
2
<!-- If JavaScript is enabled, redirect users to https://pennylane.ai/search. -->
3
3
< script type ="text/javascript ">
4
4
const search_version = window . location . pathname . includes ( "/latest/" ) ? "latest" : "stable" ;
You can’t perform that action at this time.
0 commit comments