-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"Tags" => "Snips" to de-conflict confusion with CTags plugins
If Tab (Ctrl+Tab) inserted in "Substitution Text" box, use tab widths from Notepad++, Fix #28 Replace all indents with Tab in default database Add "Convert Tabs (N++ setting)" option in Settings to convert any "Substitution Text" Tab based on Notepad++ settings for current language when inserted into current editor Add fixed-width font option for Substitution Text, Fix #29 Add use Notepad++ colors option for Tags and Substitution Text Add resize ability for Settings dialog / Substitution Text, Fix #30 Add option to disable confirm prompts before Settings close, Fix #31
- Loading branch information
Showing
21 changed files
with
1,330 additions
and
1,841 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: CI_build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
strategy: | ||
max-parallel: 6 | ||
matrix: | ||
build_configuration: [Release, Debug] | ||
build_platform: [x64, Win32] | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Add msbuild to PATH | ||
uses: microsoft/setup-msbuild@v1 | ||
|
||
- name: MSBuild of plugin dll | ||
working-directory: .\ | ||
run: msbuild QuickText.vcxproj /m /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}" /p:PlatformToolset="v142" /target:zip | ||
env: | ||
ZIPCMD: 7z a -tzip | ||
|
||
- name: Archive | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: QuickText-${{ matrix.build_configuration }}-${{ matrix.build_platform }} | ||
path: ${{ matrix.build_configuration }}\${{ matrix.build_platform }}\QuickText.dll | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') && matrix.build_configuration == 'Release' | ||
with: | ||
body: ${{ github.event.commits[0].message }} | ||
files: ${{ matrix.build_configuration }}\${{ matrix.build_platform }}\QuickText-v${{ github.ref_name }}-${{ matrix.build_platform }}.zip | ||
|
||
- name: SHA256 | ||
if: startsWith(github.ref, 'refs/tags/') && matrix.build_configuration == 'Release' | ||
run: sha256sum.exe ${{ matrix.build_configuration }}\${{ matrix.build_platform }}\QuickText-v${{ github.ref_name }}-${{ matrix.build_platform }}.zip |
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,12 +1,13 @@ | ||
Debug | ||
Release | ||
tags | ||
.vs | ||
*.suo | ||
*.exp | ||
*.lib | ||
*.iobj | ||
*.ipdb | ||
*.zip | ||
bin/* | ||
bin64/* | ||
tags | ||
Win32/* | ||
x64/* | ||
arm64/* |
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
Oops, something went wrong.