Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions vscode/powershellprotools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"onView:customView",
"onView:historyView",
"onView:sessionsView",
"onView:newsView",
"onView:jobView",
"onCommand:powershell.showWinFormDesigner",
"onCommand:powershell.generateWinForm",
Expand Down Expand Up @@ -146,11 +145,6 @@
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "newsView.refresh",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "providerView.refresh",
"title": "Refresh",
Expand Down Expand Up @@ -365,11 +359,6 @@
"command": "jobView.refresh",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "newsView.open",
"title": "Open",
"icon": "$(link-external)"
}
],
"configuration": [
Expand Down Expand Up @@ -430,11 +419,6 @@
"type": "boolean",
"default": true,
"markdownDescription": "Whether to clear the terminal after loading PowerShell Pro Tools. Set to false to see any errors loading the module."
},
"poshProTools.disableNewsNotification": {
"type": "boolean",
"default": false,
"markdownDescription": "Disables the notification when Ironman Software publishes news."
}
}
},
Expand Down Expand Up @@ -659,10 +643,6 @@
{
"id": "infoView",
"name": "Help and Information"
},
{
"id": "newsView",
"name": "What's New?"
}
]
},
Expand Down Expand Up @@ -690,11 +670,6 @@
"when": "view == moduleView",
"group": "navigation"
},
{
"command": "newsView.refresh",
"when": "view == newsView",
"group": "navigation"
},
{
"command": "providerView.refresh",
"when": "view == providerView",
Expand Down
42 changes: 0 additions & 42 deletions vscode/powershellprotools/src/commands/news.ts

This file was deleted.

2 changes: 0 additions & 2 deletions vscode/powershellprotools/src/container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import { HistoryTreeViewCommands } from './commands/history';
import { SessionCommands } from './commands/sessions';
import { JobTreeViewCommands } from './commands/jobs';
import { PerformanceService } from './services/performanceService';
import { NewsTreeViewCommands } from './commands/news';

export class Container {
static initialize(context: ExtensionContext, powershellService: PowerShellService) {
Expand All @@ -41,7 +40,6 @@ export class Container {
this._commands.push(new HistoryTreeViewCommands());
this._commands.push(new SessionCommands());
this._commands.push(new JobTreeViewCommands());
this._commands.push(new NewsTreeViewCommands());
this.RegisterCommands();

//this._codeLensProvider = new PowerShellCodeLensProvider();
Expand Down
4 changes: 0 additions & 4 deletions vscode/powershellprotools/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ import { SessionTreeViewProvider } from './treeView/sessionTreeView';
import { JobTreeViewProvider } from './treeView/jobTreeView';
import { PowerShellRenameProvider } from './services/renameProvider';
import { registerWelcomeCommands } from './commands/welcomeCommand';
import { NewsViewProvider } from './treeView/newsTreeView';
import { notifyAboutNews } from './commands/news';

const version = "PowerShellProTools.Version";

Expand All @@ -50,7 +48,6 @@ export interface IPowerShellExtensionClient {


export async function activate(context: vscode.ExtensionContext) {
notifyAboutNews(context);
var service = powerShellService = new PowerShellService(context);
context.subscriptions.push(showDataGrid(context));
context.subscriptions.push(packageAsExe());
Expand Down Expand Up @@ -128,7 +125,6 @@ async function finishActivation(context: vscode.ExtensionContext) {
vscode.window.createTreeView<vscode.TreeItem>('astView', { treeDataProvider: new AstTreeViewProvider() });
vscode.window.createTreeView<vscode.TreeItem>('hostProcessView', { treeDataProvider: new HostProcessViewProvider() });
vscode.window.createTreeView<vscode.TreeItem>('moduleView', { treeDataProvider: new ModuleViewProvider() });
vscode.window.createTreeView<vscode.TreeItem>('newsView', { treeDataProvider: new NewsViewProvider() });
vscode.window.createTreeView<vscode.TreeItem>('providerView', { treeDataProvider: new ProviderViewProvider() });
vscode.window.createTreeView<vscode.TreeItem>('quickScriptView', { treeDataProvider: new QuickScriptViewProvider() });
vscode.window.createTreeView<vscode.TreeItem>('variableView', { treeDataProvider: new VariableViewProvider() });
Expand Down
2 changes: 0 additions & 2 deletions vscode/powershellprotools/src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export interface ISettings {
signOnSaveCertificate: string;
excludeAutomaticVariables: boolean;
clearScreenAfterLoad: boolean;
disableNewsNotification: boolean;
statusBar: {
performanceVisibility: boolean;
performanceAlignment: string;
Expand Down Expand Up @@ -47,7 +46,6 @@ export function load(): ISettings {
signOnSaveCertificate: configuration.get<string>("signOnSaveCertificate", ""),
excludeAutomaticVariables: configuration.get<boolean>("excludeAutomaticVariables", false),
clearScreenAfterLoad: configuration.get<boolean>("clearScreenAfterLoad", true),
disableNewsNotification: configuration.get<boolean>("disableNewsNotification", false),
statusBar: {
performanceVisibility: configuration.get<boolean>("statusBar.performanceVisibility", true),
performanceAlignment: configuration.get<string>("statusBar.performanceAlignment", "left"),
Expand Down
31 changes: 0 additions & 31 deletions vscode/powershellprotools/src/treeView/newsTreeView.ts

This file was deleted.

Loading