Skip to content

Commit 89569f2

Browse files
committed
chore: Changed publisher name
1 parent dad60ac commit 89569f2

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3434

3535
### Changed
3636

37+
- Changed all instances of the publisher to `fortran-lang`
3738
- Updated grammar unittests to include scope injections
3839
- Merged Language Server's log channel to Modern Fortran's log channel
3940
- Merged all Fortran intrinsics into a single `json` file

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
![alt](assets/modern-fortran-logo.png)
22

33
[![GitHub Actions](https://github.com/fortran-lang/vscode-fortran-support/actions/workflows/main.yaml/badge.svg)](https://github.com/fortran-lang/vscode-fortran-support/actions)
4-
[![Downloads](https://vsmarketplacebadge.apphb.com/downloads-short/krvajalm.linter-gfortran.svg)](https://marketplace.visualstudio.com/items?itemName=krvajalm.linter-gfortran)
5-
[![Installs](https://vsmarketplacebadge.apphb.com/installs/krvajalm.linter-gfortran.svg)](https://marketplace.visualstudio.com/items?itemName=krvajalm.linter-gfortran)
6-
[![VS Marketplace](https://vsmarketplacebadge.apphb.com/version-short/krvajalm.linter-gfortran.svg)](https://marketplace.visualstudio.com/items?itemName=krvajalm.linter-gfortran)
4+
[![Downloads](https://vsmarketplacebadge.apphb.com/downloads-short/fortran-lang.linter-gfortran.svg)](https://marketplace.visualstudio.com/items?itemName=fortran-lang.linter-gfortran)
5+
[![Installs](https://vsmarketplacebadge.apphb.com/installs-short/fortran-lang.linter-gfortran.svg)](https://marketplace.visualstudio.com/items?itemName=fortran-lang.linter-gfortran)
6+
[![VS Marketplace](https://vsmarketplacebadge.apphb.com/version-short/fortran-lang.linter-gfortran.svg)](https://marketplace.visualstudio.com/items?itemName=fortran-lang.linter-gfortran)
77
[![MIT License](https://img.shields.io/npm/l/stack-overflow-copy-paste.svg?)](http://opensource.org/licenses/MIT)
88

99
![alt](assets/intro-demo.gif)
@@ -251,7 +251,7 @@ For debugging you need to have one of the following debuggers installed:
251251

252252
## Issues
253253

254-
Please report any issues and feature request on the GitHub repo [here](https://github.com/krvajalmiguelangel/vscode-fortran-support/issues/new)
254+
Please report any issues and feature request on the GitHub repo [here](https://github.com/fortran-langiguelangel/vscode-fortran-support/issues/new)
255255

256256
## Notice
257257

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Modern Fortran",
44
"description": "Modern Fortran language support, including syntax highlighting and error detection.",
55
"version": "3.0.2022042917",
6-
"publisher": "krvajalm",
6+
"publisher": "fortran-lang",
77
"license": "MIT",
88
"author": {
99
"name": "The Fortran Programming Language",

src/lib/tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { isString, isArrayOfString } from './helper';
77

88
export const LS_NAME = 'fortls';
99
export const EXTENSION_ID = 'fortran';
10-
export const EXTENSION_VSSTORE_ID = 'krvajalm.linter-gfortran';
10+
export const EXTENSION_VSSTORE_ID = 'fortran-lang.linter-gfortran';
1111
export const FORMATTERS = ['Disabled', 'findent', 'fprettify'];
1212

1313
// Platform-specific environment variable delimiter

0 commit comments

Comments
 (0)