Skip to content

Commit 78dbd7d

Browse files
authored
Merge pull request #622 from fortran-lang/gnikit/issue612
2 parents 0142b35 + d9ffd59 commit 78dbd7d

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99

1010
### Added
1111

12+
- Added language icons for Free and Fixed form Fortran
13+
([#612](https://github.com/fortran-lang/vscode-fortran-support/issues/612))
1214
- Added capability for linter options to update automatically when settings change
1315
([#623](https://github.com/fortran-lang/vscode-fortran-support/pull/623))
1416
- Added unittests for `spawnAsPromise` to increase test coverage

package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,11 @@
8484
".fypp",
8585
".FYPP"
8686
],
87-
"configuration": "./language-configuration.json"
87+
"configuration": "./language-configuration.json",
88+
"icon": {
89+
"light": "./assets/png/icon.png",
90+
"dark": "./assets/png/icon.png"
91+
}
8892
},
8993
{
9094
"id": "FortranFixedForm",
@@ -99,7 +103,11 @@
99103
".for",
100104
".FOR"
101105
],
102-
"configuration": "./language-configuration.json"
106+
"configuration": "./language-configuration.json",
107+
"icon": {
108+
"light": "./assets/png/icon.png",
109+
"dark": "./assets/png/icon.png"
110+
}
103111
}
104112
],
105113
"grammars": [

0 commit comments

Comments
 (0)