-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix spelling exclude list and prep for release
- Loading branch information
1 parent
1f03dcf
commit 033af41
Showing
8 changed files
with
15 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
import webbrowser | ||
import re | ||
|
||
__version__ = "2.16.3" | ||
__version__ = "2.17.0" | ||
__pc_name__ = 'ScopeHunter' | ||
|
||
|
||
|