Skip to content

Commit 50d8d2d

Browse files
committed
Update copyright year in LICENSE and standardize string quotes in welcome view
1 parent b287c27 commit 50d8d2d

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Pullflow
3+
Copyright (c) 2025 PullFlow, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

src/views/webviews/welcome/welcome.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { ExtensionContext, ViewColumn, Webview, window, Uri } from "vscode"
1+
import { ExtensionContext, ViewColumn, Webview, window, Uri } from 'vscode'
22

33
const WelcomeView = {
4-
title: "Welcome to PullFlow",
5-
type: "welcome-view",
4+
title: 'Welcome to PullFlow',
5+
type: 'welcome-view',
66
}
77

88
export const Welcome = {
@@ -13,17 +13,17 @@ export const Welcome = {
1313
WelcomeView.title,
1414
column
1515
)
16-
panel.iconPath = Uri.joinPath(context.extensionUri, "assets/pullflow.png")
16+
panel.iconPath = Uri.joinPath(context.extensionUri, 'assets/pullflow.png')
1717
panel.webview.html = Welcome.getHtml(panel.webview, context)
1818
panel.reveal(column)
1919
},
2020

2121
getHtml: (webview: Webview, context: ExtensionContext) => {
2222
const assetsPath = webview.asWebviewUri(
23-
Uri.joinPath(context.extensionUri, "assets")
23+
Uri.joinPath(context.extensionUri, 'assets')
2424
)
2525
const stylePath = webview.asWebviewUri(
26-
Uri.joinPath(context.extensionUri, "styles/welcome.css")
26+
Uri.joinPath(context.extensionUri, 'styles/welcome.css')
2727
)
2828

2929
return `<!DOCTYPE html>

0 commit comments

Comments
 (0)