Skip to content

Commit

Permalink
Prep for 3.7.2 (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser authored Jul 26, 2020
1 parent 782c2ab commit cde156a
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 88 deletions.
5 changes: 3 additions & 2 deletions .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ template: 'facelessuser:master-labels:labels.yml:master'

brace_expansion: true
extended_glob: true
minus_negate: false

rules:
- labels: ['C: infrastructure']
patterns: ['*|-@(*.md|*.py|*.sublime-@(keymap|menu|settings|commands))', '.github/**']
patterns: ['*|!@(*.md|*.py|*.sublime-@(keymap|menu|settings|commands))', '.github/**']

- labels: ['C: source']
patterns: ['st[0-9]/mdpopups/**|**/*.sublime-@(keymap|menu|settings|commands)|-tests']
patterns: ['st[0-9]/mdpopups/**|**/*.sublime-@(keymap|menu|settings|commands)|!tests']

- labels: ['C: docs']
patterns: ['**/*.md|docs/**']
Expand Down
19 changes: 12 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,26 @@ on:
push:
branches:
- 'master'
tags:
- '**'
pull_request:
branches:
- '**'

jobs:
tests:

env:
TOXENV: py37
TOXENV: py38

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools tox
Expand All @@ -34,11 +39,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools tox
Expand All @@ -54,11 +59,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools tox
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
Expand Down
67 changes: 0 additions & 67 deletions .github/workflows/pullrequest.yml

This file was deleted.

10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[![Donate via PayPal][donate-image]][donate-link]
[![Discord][discord-image]][discord-link]
[![Build][github-ci-image]][github-ci-link]
![License][license-image]
# Sublime Markdown Popups

Sublime Markdown Popups (mdpopups) is a library for Sublime Text plugins. It utilizes the new plugin API found in ST3 Beta 3080+ for generating tooltip popups. It also provides API methods for generating and styling the new phantom elements introduced in ST3 Beta 3118+. Mdpopups utilizes Python Markdown with a couple of special extensions to convert Markdown to HTML that can be used to create the popups and/or phantoms. It also provides a number of other helpful API commands to aid in creating great tooltips and phantoms.

Mdpopups will use your color scheme to create popups/phantoms that fit your editors look.
Expand Down Expand Up @@ -32,8 +34,10 @@ The above copyright notice and this permission notice shall be included in all c

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

[github-ci-image]: https://github.com/facelessuser/sublime-markdown-popups/workflows/build/badge.svg
[github-ci-link]: https://github.com/facelessuser/sublime-markdown-popups/actions?workflow=build
[github-ci-image]: https://github.com/facelessuser/sublime-markdown-popups/workflows/build/badge.svg?branch=master&event=push
[github-ci-link]: https://github.com/facelessuser/sublime-markdown-popups/actions?query=workflow%3Abuild+branch%3Amaster
[discord-image]: https://img.shields.io/discord/678289859768745989?logo=discord&logoColor=aaaaaa&color=mediumpurple&labelColor=333333
[discord-link]: https://discord.gg/rZ2n3Dy
[discord-link]: https://discord.gg/TWs8Tgr
[license-image]: https://img.shields.io/badge/license-MIT-blue.svg?labelColor=333333
[donate-image]: https://img.shields.io/badge/Donate-PayPal-3fabd1?logo=paypal
[donate-link]: https://www.paypal.me/facelessuser
5 changes: 5 additions & 0 deletions docs/src/markdown/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 3.7.2

- **FIX**: Add Julia language to highlight list.
- **FIX**: Add built-in Typescript language to highlight list.

## 3.7.1

- **FIX**: Fix logic error when using legacy color matcher.
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.0
mkdocs_pymdownx_material_extras>=1.0.6
mkdocs-git-revision-date-localized-plugin
mkdocs-minify-plugin
pyspelling
8 changes: 4 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
site_name: Sublime Markdown Popups Documentation
site_url: https://facelessuser.github.io/sublime-markdown-popups
repo_url: https://github.com/facelessuser/sublime-markdown-popups
edit_uri: tree/master/docs/src/markdown
edit_uri: ""
site_description: Popup tooltips for Sublime generated with Markdown.
copyright: |
Copyright &copy; 2015 - 2020 <a href="https://github.com/facelessuser" target="_blank" rel="noopener">Isaac Muse</a>
Expand Down Expand Up @@ -80,8 +80,8 @@ markdown_extensions:
- pymdownx.caret:
- pymdownx.smartsymbols:
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.twemoji
emoji_generator: !!python/name:pymdownx.emoji.to_png
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.escapeall:
hardbreak: true
nbsp: true
Expand All @@ -101,7 +101,7 @@ extra:
- icon: fontawesome/brands/github
link: https://github.com/facelessuser
- icon: fontawesome/brands/discord
link: https://discord.gg/rZ2n3Dy
link: https://discord.gg/TWs8Tgr

plugins:
- search
Expand Down
2 changes: 1 addition & 1 deletion st3/mdpopups/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Version."""

_version_info = (3, 7, 1)
_version_info = (3, 7, 2)
__version__ = '.'.join([str(x) for x in _version_info])


Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
skipsdist=True
envlist =
py35,py36,py37,lint
py35,py36,py37,py38,lint

[testenv]
deps=
Expand Down

0 comments on commit cde156a

Please sign in to comment.