Skip to content

Commit f0170c8

Browse files
authored
Merge pull request #510 from fortran-lang/feature/svg2png
Makes note, warnings onliners
2 parents 3eac8fd + 155c808 commit f0170c8

32 files changed

+155
-114
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3535

3636
### Changed
3737

38+
- Changed images from SVG to PNG because `vsce` does not support SVG
39+
([#510](https://github.com/fortran-lang/vscode-fortran-support/pull/510))
3840
- Changed need for matching begin-end scope names, in the following constructs:
3941
Functions, Modules, Programs, Module Procedures, Subroutines, Submodules.
4042
For a more detailed explanation as to why see the issue

README.md

+38-29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="assets/modern-fortran-logo.svg" width=800/>
2+
<img src="assets/png/modern-fortran-logo.png" width=800/>
33
</p>
44

55
<div align="center">
@@ -12,8 +12,21 @@
1212

1313
</div>
1414

15+
<div align="center">
16+
<a href="#key-features">Key Features</a> •
17+
<a href="#get-started--seek-support">Get Started</a> •
18+
<a href="#language-server-integration">LSP</a> •
19+
<a href="#linting">Lint</a> •
20+
<a href="#debugging">Debug</a> •
21+
<a href="#formatting">Format</a> •
22+
<a href="#snippets">Snippets</a> •
23+
<a href="#support-us">Donate</a>
24+
<br>
25+
<br>
26+
</div>
27+
1528
<p align="center">
16-
<img src="assets/intro-demo.gif"/>
29+
<img src="assets/gif/intro-demo.gif"/>
1730
</p>
1831

1932
## Key Features
@@ -30,18 +43,18 @@
3043

3144
## Get Started & Seek Support
3245

33-
<p float="left">
34-
<a href="https://fortran-lang.org/learn/"><img src="./assets/readme.tutorial.svg"/></a>
35-
<a href="https://github.com/fortran-lang/vscode-fortran-support/discussions"><img src="./assets/readme.github.svg"/></a>
36-
<a href="https://fortran-lang.discourse.group/"><img src="./assets/readme.discourse.svg"/></a>
46+
<p float="center">
47+
<a href="https://fortran-lang.org/learn/"><img src="assets/png/readme.tutorial.png"/></a>
48+
<a href="https://github.com/fortran-lang/vscode-fortran-support/discussions"><img src="assets/png/readme.github.png"/></a>
49+
<a href="https://fortran-lang.discourse.group/"><img src="assets/png/readme.discourse.png"/></a>
3750
</p>
3851

3952
### Useful Tools
4053

4154
<p float="center">
42-
<a href="https://gnikit.github.io/fortls"><img src="./assets/readme.fortls.svg"/></a>
43-
<a href="https://fpm.fortran-lang.org"><img src="./assets/readme.fpm.svg"/></a>
44-
<a href="https://github.com/fortran-lang/stdlib"><img src="./assets/readme.stdlib.svg"/></a>
55+
<a href="https://gnikit.github.io/fortls"><img src="assets/png/readme.fortls.png"/></a>
56+
<a href="https://fpm.fortran-lang.org"><img src="assets/png/readme.fpm.png"/></a>
57+
<a href="https://github.com/fortran-lang/stdlib"><img src="assets/png/readme.stdlib.png"/></a>
4558
</p>
4659

4760
## Language Server integration
@@ -70,35 +83,32 @@ without the user having to compile.
7083

7184
Using an invalid if expression
7285

73-
![alt](assets/lint-demo.gif)
86+
![alt](assets/gif/lint-demo.gif)
7487

7588
Using incorrect type and rank as function argument
7689

77-
![alt](assets/lint-demo2.gif)
90+
![alt](assets/gif/lint-demo2.gif)
7891

79-
| 📝️ Note |
80-
| ------------------------------------------ |
81-
| Save your file to generate linting results |
92+
| 📝️ Note | Save your file to generate linting results |
93+
| -------- | ------------------------------------------ |
8294

8395
Linting results can be improved by providing additional options to the compiler.
8496

8597
### Including directories
8698

8799
You can control the include paths to be used by the linter with the `fortran.linter.includePaths` option.
88100

89-
| ❗️ Important |
90-
| ------------------------------------------------------------------------------------------------------------------ |
91-
| For the best linting results `linter.includePaths` should match the included paths for your project's compilation. |
101+
| ❗️ Important | For the best linting results `linter.includePaths` should match the included paths for your project's compilation. |
102+
| ------------- | ------------------------------------------------------------------------------------------------------------------ |
92103

93104
```json
94105
{
95106
"fortran.linter.includePaths": ["/usr/include/**", "${workspaceFolder}/include/**"]
96107
}
97108
```
98109

99-
| ❗️ Important |
100-
| -------------------------------------------------------------------------------- |
101-
| If a glob pattern is used only directories matching the pattern will be included |
110+
| ❗️ Important | If a glob pattern is used only directories matching the pattern will be included |
111+
| ------------- | -------------------------------------------------------------------------------- |
102112

103113
### Additional linting options
104114

@@ -140,7 +150,7 @@ you can point the extension to another linter with the `fortran.linter.compilerP
140150

141151
## Debugging
142152

143-
![alt](assets/gdb_ani.gif)
153+
![alt](assets/gif/gdb_ani.gif)
144154

145155
The extension uses the debugger from Microsoft's
146156
[C/C++ extension](https://github.com/Microsoft/vscode-cpptools)
@@ -203,9 +213,9 @@ installed with `pip` automatically through the extension.
203213
<details>
204214
<summary><b>Demo: formatters in action</b></summary>
205215

206-
| findent | fprettify |
207-
| :-------------------------------: | :---------------------------------: |
208-
| ![alt](./assets/findent-demo.gif) | ![alt](./assets/fprettify-demo.gif) |
216+
| findent | fprettify |
217+
| :-----------------------------------: | :-------------------------------------: |
218+
| ![alt](./assets/gif/findent-demo.gif) | ![alt](./assets/gif/fprettify-demo.gif) |
209219

210220
</details>
211221

@@ -234,9 +244,8 @@ If the formatter is not present in the `PATH` its location can be input with
234244
}
235245
```
236246

237-
| :memo: Note |
238-
| ---------------------------------------------------------------------- |
239-
| `findent` can also be used to generate dependency files for a project. |
247+
| 📝️ Note | `findent` can also be used to generate dependency files for a project. |
248+
| -------- | ---------------------------------------------------------------------- |
240249

241250
## Snippets
242251

@@ -293,8 +302,8 @@ For debugging you need to have one of the following debuggers installed:
293302

294303
You can support further development of the extension by fiscal donations:
295304

296-
<a href="https://numfocus.org/donate-to-lfortran"><img src="./assets/readme.lfortran.svg" width=90></a> to our [**LFortan**](https://numfocus.org/donate-to-lfortran) project on NumFOCUS
305+
<a href="https://numfocus.org/donate-to-lfortran"><img src="./assets/png/readme.lfortran.png"></a> to our [**LFortan**](https://numfocus.org/donate-to-lfortran) project on NumFOCUS
297306

298307
Or
299308

300-
<a href="https://github.com/fortran-lang/vscode-fortran-support"><img src="./assets/readme.github.sponsor.svg" width=120></a> directly sponsoring developers through [**GitHub Sponsors**](https://github.com/fortran-lang/vscode-fortran-support)
309+
<a href="https://github.com/fortran-lang/vscode-fortran-support"><img src="./assets/png/readme.github.sponsor.png"></a> directly sponsoring developers through [**GitHub Sponsors**](https://github.com/fortran-lang/vscode-fortran-support)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

assets/png/modern-fortran-logo.png

18.9 KB
Loading

assets/png/readme.discourse.png

6.77 KB
Loading

assets/png/readme.fortls.png

8.7 KB
Loading

assets/png/readme.fpm.png

7.59 KB
Loading

assets/png/readme.github.png

7.17 KB
Loading

assets/png/readme.github.sponsor.png

3.11 KB
Loading

assets/png/readme.lfortran.png

3.56 KB
Loading

assets/png/readme.stdlib.png

7.44 KB
Loading

assets/png/readme.tutorial.png

4.62 KB
Loading

assets/readme.github.sponsor.svg

-56
This file was deleted.
File renamed without changes.

assets/modern-fortran-logo.svg assets/svg/modern-fortran-logo.svg

+9-8
Loading
File renamed without changes.
File renamed without changes.
File renamed without changes.

assets/svg/readme.github.sponsor.svg

+60
Loading
File renamed without changes.

0 commit comments

Comments
 (0)