Skip to content

Commit

Permalink
Fix spelling exclude list and prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Feb 11, 2022
1 parent 1f03dcf commit 033af41
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 24 deletions.
3 changes: 1 addition & 2 deletions .pyspelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,9 @@ matrix:
- alt
ignores:
- 'code, pre'
- 'a:is(.magiclink-compare, .magiclink-commit, .magiclink-repository)'
- '.magiclink-compare, .magiclink-commit, .magiclink-repository, .md-social__link'
- 'span.keys'
- '.MathJax_Preview, .md-nav__link, .md-footer-custom-text, .md-source__repository, .headerlink, .md-icon'
- '.md-footer-social__link'
- pyspelling.filters.url:

- name: markdown
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ScopeHunter

## 2.17.0

- **NEW**: Update context backtrace to support changes to API in 4127.

## 2.16.3

- **FIX**: Remove unnecessary dependencies.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/markdown/about/license.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Scope Hunter is released under the MIT license.

Copyright (c) 2012 - 2021 Isaac Muse <[email protected]>
Copyright (c) 2012 - 2022 Isaac Muse <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion docs/src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mkdocs_pymdownx_material_extras>=1.4
mkdocs_pymdownx_material_extras>=1.6
mkdocs-git-revision-date-localized-plugin
mkdocs-minify-plugin
pyspelling
2 changes: 1 addition & 1 deletion messages.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"2.16.0": "messages/recent.md"
"2.17.0": "messages/recent.md"
}
16 changes: 3 additions & 13 deletions messages/recent.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,9 @@
# ScopeHunter 2.16.0
# ScopeHunter 2.17.0

New release!

See `Preferences->Package Settings->ScopeHunter->Changelog` for more info on previous releases.

## 2.16
## 2.17.0

- **NEW**: Due to Sublime schemes ever evolving, there were a few things (like "forward fill" scopes) that we didn't
have support for. These implementation details are hard to reverse engineer, so to make support easier moving forward,
we now use Sublime's `View.style()` to get the style at a given point instead of manually parsing the scheme
ourselves. This means we no longer provide the original defined colors from the scheme file, but instead only the end
result after overlaying transparent colors etc. Because of this,
`show_simulated_alpha_colors` option has been removed.
- **NEW**: Because we are no longer parsing the scheme files ourselves anymore, we can no longer provide contributing
scopes to individual style components. The related `selectors` option has been removed.
- **FIX**: Fix issue with Sublime 4095 `auto` light/dark color scheme resolution.
- **FIX**: Reduce dependencies by relying on the `coloraide` in `mdpopups` which we already include.
- **FIX**: Remove old `tooltip_theme` option that hasn't been used in quite some time.
- **NEW**: Update context backtrace to support changes to API in 4127.
8 changes: 3 additions & 5 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repo_url: https://github.com/facelessuser/ScopeHunter
edit_uri: tree/master/docs/src/markdown
site_description: Syntax Scope Viewer in Sublime Text.
copyright: |
Copyright &copy; 2012 - 2021 <a href="https://github.com/facelessuser" target="_blank" rel="noopener">Isaac Muse</a>
Copyright &copy; 2012 - 2022 <a href="https://github.com/facelessuser" target="_blank" rel="noopener">Isaac Muse</a>
docs_dir: docs/src/markdown
theme:
Expand All @@ -22,6 +22,7 @@ theme:
features:
- navigation.tabs
- navigation.top
- navigation.instant

nav:
- Home:
Expand Down Expand Up @@ -49,10 +50,6 @@ markdown_extensions:
- pymdownx.superfences:
- pymdownx.highlight:
extend_pygments_lang:
- name: php-inline
lang: php
options:
startinline: true
- name: pycon3
lang: pycon
options:
Expand Down Expand Up @@ -84,6 +81,7 @@ markdown_extensions:
separator: "\uff0b"
- pymdownx.details:
- pymdownx.tabbed:
alternate_style: true
- pymdownx.saneheaders:

extra:
Expand Down
2 changes: 1 addition & 1 deletion support.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import webbrowser
import re

__version__ = "2.16.3"
__version__ = "2.17.0"
__pc_name__ = 'ScopeHunter'


Expand Down

0 comments on commit 033af41

Please sign in to comment.