-
Notifications
You must be signed in to change notification settings - Fork 72
Comparing changes
Open a pull request
base repository: executablebooks/sphinx-tabs
base: v3.1.0
head repository: executablebooks/sphinx-tabs
compare: v3.3.1
- 15 commits
- 27 files changed
- 9 contributors
Commits on Aug 4, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 23b56be - Browse repository at this point
Copy the full SHA 23b56beView commit details -
🔧 MAINTAIN: Remove manual pre-commit from CI (#131)
* 🔧 MAINTAIN: Remove manual pre-commit from CI * Remove dependency on pre-commit in publish Action
Configuration menu - View commit details
-
Copy full SHA for 7b1cad6 - Browse repository at this point
Copy the full SHA 7b1cad6View commit details -
🔧 MAINTAIN: update pre-commit version and hooks (#130)
* [pre-commit.ci] pre-commit autoupdate updates: - git://github.com/pre-commit/pre-commit-hooks: v2.2.3 → v4.0.1 - [github.com/mgedmin/check-manifest: 0.39 → 0.46](mgedmin/check-manifest@0.39...0.46) - [github.com/psf/black: stable → 21.7b0](psf/black@stable...21.7b0) - [github.com/PyCQA/pylint: pylint-2.4.2 → v2.9.5](pylint-dev/pylint@pylint-2.4.2...v2.9.5) * Change exception raising to use 'from' syntax * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Bump pre-commit version Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: foster999 <foster.dev999@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7bd3fdb - Browse repository at this point
Copy the full SHA 7bd3fdbView commit details -
👌 IMPROVE: Use Sphinx HTML assets policy to decide whether include as…
…sets (#132) * 👌 IMPROVE: Use Sphinx HTML assets policy to decide whether include assets Sphinx v4.1.0 will include `Sphinx.registry.html_assets_policy` that defines the policy to whether include or not HTML assets in pages where the extension is not used. This PR makes usage of this policy to decide if sphinx-tabs assets should be included or not in the page that's being rendered. Reference: sphinx-doc/sphinx#9115 * Update test for conditional assets * Run pre-commit Co-authored-by: Manuel Kaufmann <humitos@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7f2146a - Browse repository at this point
Copy the full SHA 7f2146aView commit details -
Configuration menu - View commit details
-
Copy full SHA for f3cf8a9 - Browse repository at this point
Copy the full SHA f3cf8a9View commit details
Commits on Aug 5, 2021
-
Fix test_other_with_assets_new_style w/Sphinx 4.0 (#133)
Make the test work with Sphinx 4.0.x. Fix the typo so that the regression file is actually found.
Configuration menu - View commit details
-
Copy full SHA for 0f185f4 - Browse repository at this point
Copy the full SHA 0f185f4View commit details
Commits on Aug 20, 2021
-
🧪 TESTS: Add testing for Python 3.9 and pygments versions (#135)
* Include testing for python 3.9 * Remove pygments output from regression test HTML * Add pygments version paramtrization to Actions CI * Change CI sphinx version from pre-release * Add new regression outputs for Sphinx 4 * Change test to use independent root
Configuration menu - View commit details
-
Copy full SHA for ade8d9c - Browse repository at this point
Copy the full SHA ade8d9cView commit details
Commits on Oct 1, 2021
-
Configuration menu - View commit details
-
Copy full SHA for e15bc85 - Browse repository at this point
Copy the full SHA e15bc85View commit details
Commits on Feb 17, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 16e6ee4 - Browse repository at this point
Copy the full SHA 16e6ee4View commit details
Commits on Feb 21, 2022
-
Configuration menu - View commit details
-
Copy full SHA for a5a8761 - Browse repository at this point
Copy the full SHA a5a8761View commit details
Commits on Mar 9, 2022
-
[pre-commit.ci] pre-commit autoupdate (#136)
* [pre-commit.ci] pre-commit autoupdate updates: - git://github.com/pre-commit/pre-commit-hooks: v4.0.1 → v4.1.0 - [github.com/mgedmin/check-manifest: 0.46 → 0.47](mgedmin/check-manifest@0.46...0.47) - [github.com/psf/black: 21.7b0 → 22.1.0](psf/black@21.7b0...22.1.0) - [github.com/PyCQA/pylint: v2.9.5 → v2.12.2](pylint-dev/pylint@v2.9.5...v2.12.2) * Update .pre-commit-config.yaml to trigger Actions * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: David Foster <31405412+foster999@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 709a43a - Browse repository at this point
Copy the full SHA 709a43aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 53b6a63 - Browse repository at this point
Copy the full SHA 53b6a63View commit details
Commits on Mar 16, 2022
-
[fix] don't append CSS files to the end of html_static_path list (#153)
html_static_path is a list of paths that contain custom static files. They are copied to the output’s _static directory **after** the theme’s static files, so a file named default.css will overwrite the theme’s default.css [1] Without this patch a tabs.css can't be overwritten by the `conf.py` file: html_static_path = [ 'static/tabs.css', ] The /static folder from sphinx-tabs needs to be added in front of html_static_path since the last item in the list will be written last to /_static. [1] https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_static_path Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Configuration menu - View commit details
-
Copy full SHA for 154f273 - Browse repository at this point
Copy the full SHA 154f273View commit details -
[fix] prefers-color-scheme: use dark theme if body[data-theme="auto"] (…
…#154) Before this patch the CSS implementation assumes that "dark" is supported by the theme if the `data-theme` attribute of the <body> tag is unset. Since most themes are using "light" colors (compare https://sphinx-themes.org) and do not set `data-theme` it is better to assume light is the default, even when the browser setting `prefers-color-scheme: dark`! BTW: remove duplication of styles from dark/light theme that are already set in the common style. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Configuration menu - View commit details
-
Copy full SHA for 5b2f4ee - Browse repository at this point
Copy the full SHA 5b2f4eeView commit details
Commits on Mar 17, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 0b04c8e - Browse repository at this point
Copy the full SHA 0b04c8eView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v3.1.0...v3.3.1