diff --git a/Makefile b/Makefile index e883380..bee6138 100755 --- a/Makefile +++ b/Makefile @@ -8,8 +8,8 @@ package: printf "Y\n" | vsce package install: - code --install-extension bar-helper-0.5.5.vsix - rm bar-helper-0.5.5.vsix + code --install-extension bar-helper-0.5.6.vsix + rm bar-helper-0.5.6.vsix package_and_install: compile package install diff --git a/package.json b/package.json index 01ab307..6fc40ec 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "bar-helper", "displayName": "Bar Helper", "description": "Run any command from the status bar.", - "version": "0.5.5", + "version": "0.5.6", "publisher": "andyduong1920", "repository": { "type": "git", diff --git a/src/editableArea/1_definition.ts b/src/editableArea/1_definition.ts index bfaec22..7c8fd25 100644 --- a/src/editableArea/1_definition.ts +++ b/src/editableArea/1_definition.ts @@ -31,11 +31,11 @@ export const runDBRemigrateItem = window.createStatusBarItem( ); export const gitPushItem = window.createStatusBarItem( StatusBarAlignment.Left, - -9 + -10 ); export const gitStatusItem = window.createStatusBarItem( StatusBarAlignment.Left, - -10 + -9 ); export const gitCheckoutDevelopPullItem = window.createStatusBarItem( StatusBarAlignment.Left, diff --git a/src/editableArea/3_commands.ts b/src/editableArea/3_commands.ts index b5597ec..fb2fba7 100644 --- a/src/editableArea/3_commands.ts +++ b/src/editableArea/3_commands.ts @@ -119,7 +119,7 @@ export const runGitStatusCommand = commands.registerCommand( export const runGitCheckoutDevelopPullItemCommand = commands.registerCommand( "barHelper.runGitCheckoutDevelopPull", () => { - Utils.sendToTerminal("gco develop && g pull"); + Utils.sendToTerminal("gco develop && ggpull"); } ); diff --git a/src/editableArea/4_behaviors.ts b/src/editableArea/4_behaviors.ts index a7c298e..b3d40c7 100644 --- a/src/editableArea/4_behaviors.ts +++ b/src/editableArea/4_behaviors.ts @@ -53,7 +53,7 @@ export const setupItemBehaviors = () => { ); Utils.setupItem( BarItems.gitStatusItem, - "ℹ️ gst ⌃i", + "💹 gst ⌃i", "git status", "barHelper.runGitStatus" );