Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

Notification of deployment #42

Closed
sebastus opened this issue Mar 3, 2017 · 2 comments
Closed

Notification of deployment #42

sebastus opened this issue Mar 3, 2017 · 2 comments

Comments

@sebastus
Copy link

sebastus commented Mar 3, 2017

The popup notification and the terminal notification both require clicking something to make them go away. The status bar notification is non-specific. I'd like it better if the status bar notification told me which file it was deploying. As it is, "Deployment finished" just stays down there all the time. I can't tell when the messages changes because it's always the same.

@mkloubert
Copy link
Owner

Since version 5.33.0 there is more information in the result item that apears in the status after a deployment:

2017-03-04 00_38_01-notification of deployment issue 42 mkloubert_vs-deploy

If you would like to disapear that button automatic, you can use the new setting hideDeployResultInStatusBarAfter now:

{
    "deploy": {
        // ...

        "hideDeployResultInStatusBarAfter": 30

        // ...
    }
}

In that example the button will disapear after 30 seconds.

If you do not want to show a popup after a successful deployment and/or open the terminal when a deployment starts, you can set the settings openOutputOnDeploy and showPopupOnSuccess to (false):

{
    "deploy": {
        // ...

        "openOutputOnDeploy": false,
        "showPopupOnSuccess": false

        // ...
    }
}

@sebastus
Copy link
Author

Love it! Thanks!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants