Skip to content

Commit c60ccb7

Browse files
authored
Merge pull request #284 from krvajal/feature/path-interpolation-simple
Feature/path interpolation simple
2 parents def5fd6 + 9e0c876 commit c60ccb7

File tree

13 files changed

+235
-83
lines changed

13 files changed

+235
-83
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Create a report to help us improve
44
title: ''
55
labels: bug
66
assignees: ''
7-
87
---
98

109
**Describe the bug**

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Suggest an idea for this project
44
title: ''
55
labels: feature-request
66
assignees: ''
7-
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/ISSUE_TEMPLATE/other-issue.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Any other issue not covered by the above templates
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---
98

109
**Describe the issue**

.github/ISSUE_TEMPLATE/syntax-highlighting.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Create a bug report for erroneous syntax highlighting
44
title: ''
55
labels: syntax-highlight
66
assignees: ''
7-
87
---
98

109
**Describe the bug**

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [2.6.1]
11+
12+
### Fixed
13+
14+
- Fixes log channel not initialising when extension fails to activate
15+
([#286](https://github.com/krvajal/vscode-fortran-support/issues/286))
16+
17+
## [2.6.0]
18+
19+
### Added
20+
21+
- Adds support for variable and path interpolation along with glob expressions
22+
([#231](https://github.com/krvajal/vscode-fortran-support/issues/231))
23+
([#86](https://github.com/krvajal/vscode-fortran-support/issues/86))
24+
- Adds explicit option `linterModOutput` for module output
25+
([#176](https://github.com/krvajal/vscode-fortran-support/issues/176))
26+
1027
## [2.5.0]
1128

1229
### Added
@@ -319,7 +336,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
319336

320337
- Initial release
321338

322-
[unreleased]: https://github.com/krvajal/vscode-fortran-support/compare/v2.5.0...HEAD
339+
[unreleased]: https://github.com/krvajal/vscode-fortran-support/compare/v2.6.1...HEAD
340+
[2.6.1]: https://github.com/krvajal/vscode-fortran-support/compare/v2.6.0...v2.6.1
341+
[2.6.0]: https://github.com/krvajal/vscode-fortran-support/compare/v2.5.0...v2.6.0
323342
[2.5.0]: https://github.com/krvajal/vscode-fortran-support/compare/v2.4.3...v2.5.0
324343
[2.4.3]: https://github.com/krvajal/vscode-fortran-support/compare/v2.4.2...v2.4.3
325344
[2.4.2]: https://github.com/krvajal/vscode-fortran-support/compare/v2.4.1...v2.4.2

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,9 @@ Two formatters are supported [`findent`](https://github.com/gnikit/findent-pypi)
144144
and [`fprettify`](https://github.com/pseewald/fprettify). Both of them can be
145145
installed with `pip` automatically through the extension.
146146

147-
findent | fprettify
148-
:-------------------------:|:-------------------------:
149-
![](./images/findent-demo.gif) | ![](./images/fprettify-demo.gif)
147+
| findent | fprettify |
148+
| :----------------------------: | :------------------------------: |
149+
| ![](./images/findent-demo.gif) | ![](./images/fprettify-demo.gif) |
150150

151151
The formatter is controlled by the user option
152152

0 commit comments

Comments
 (0)