Skip to content

Commit a8715e3

Browse files
committed
file name corrections for vsix package
1 parent ca2df5d commit a8715e3

File tree

9 files changed

+32
-10
lines changed

9 files changed

+32
-10
lines changed

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Kentaro Ushiyama
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"displayName": "Code Counter Vizzu",
44
"description": "Source code statistics with animated vizualization.",
55
"version": "0.0.1",
6+
"repository": "https://github.com/tczagany/cc-vizzu.git",
67
"engines": {
78
"vscode": "^1.46.0"
89
},

src/data/VSCC_DataPrep.ts renamed to src/data/vscc_dataprep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Uri } from "vscode";
2-
import { Result } from "./VSCC_Result";
2+
import { Result } from "./vscc_result";
33

44
interface IStringIndex {
55
[key: string]: any
File renamed without changes.

src/data/VSCC_Result.ts renamed to src/data/vscc_result.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Uri } from "vscode";
2-
import { VSCCDataSource } from "./VSCC_DataSource";
3-
import { VSCCDataPrep } from "./VSCC_DataPrep";
2+
import { VSCCDataSource } from "./vscc_datasource";
3+
import { VSCCDataPrep } from "./vscc_dataprep";
44

55
export class Result {
66
public code: number = 0;

src/extension.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { commands, window, ExtensionContext, workspace, Uri } from "vscode";
22

3-
import { CCVizzuPanel } from "./panels/ccVizzuPanel";
4-
import { VSCCDataSource } from "./data/VSCC_DataSource";
5-
import { VSCCDataPrep } from "./data/VSCC_DataPrep";
6-
import { Summary } from "./data/VSCC_Result";
3+
import { CCVizzuPanel } from "./panels/ccvizzupanel";
4+
import { VSCCDataSource } from "./data/vscc_datasource";
5+
import { VSCCDataPrep } from "./data/vscc_dataprep";
6+
import { Summary } from "./data/vscc_result";
77

88
export function activate(context: ExtensionContext) {
99
const showCommand = commands.registerCommand("ccVizzu.show", () => {

src/panels/ccVizzuPanel.ts renamed to src/panels/ccvizzupanel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { commands, Disposable, Webview, WebviewPanel, window, Uri, ViewColumn, env } from "vscode";
2-
import { PageGenerator } from "./pageGen";
3-
import { Summary } from "../data/VSCC_Result";
2+
import { PageGenerator } from "./pagegen";
3+
import { Summary } from "../data/vscc_result";
44

55
export class CCVizzuPanel {
66
public static currentPanel: CCVizzuPanel | undefined;

src/panels/pageGen.ts renamed to src/panels/pagegen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Console } from "console";
22
import { Disposable, Webview, WebviewPanel, window, Uri, ViewColumn, workspace } from "vscode";
3-
import { getUri } from "../utilities/getUri";
3+
import { getUri } from "../utilities/geturi";
44

55
export class PageGenerator {
66
private _view: Webview;
File renamed without changes.

0 commit comments

Comments
 (0)