dylang / grunt-notify

Automatic Notifications when Grunt tasks fail.
https://npmjs.org/package/grunt-notify
MIT License
921 stars 73 forks source link

Windows 10 support ? #108

Open stephane-r opened 8 years ago

stephane-r commented 8 years ago

Hi community,

Do you know if grunt-notify is worked on Windows 10 ? I've not notif with this config :

module.exports = {
    sass: {
        options: {
            title: '"Sass"',
            message: '"Compilé avec succès"'
        }
    },
    concat: {
        options: {
            title: '"JavaScript"',
            message: '"Compilé avec succès"'
        }
    },
    prod: {
        options: {
            title: '"Production"',
            message: '"Effectuée avec succès"'
        }
    }
};

Do you have idea ? Thank you !

bxyoung89 commented 8 years ago

Second this issue. I had a working config on windows 8. Recently updated and grunt-notify stopped working.

yahyazini commented 8 years ago

+1

stevenbriscoeca commented 8 years ago

To add to this issue,

I can see the notifications in the action center, but they aren't appearing

2015-08-25_09-52-57

bxyoung89 commented 8 years ago

Looks like you can toggle if the notifications from the action center show up or not. You just need to toggle the settings.

grunt notifications

Here's the workflow I used:

  1. Click on the action center icon (the word bubble thing).
  2. Click on "All Settings"
  3. Click on "System"
  4. Click on "Notifications & Actions"
  5. Click on the settings for "toast"
  6. Switch "Show notification banners" to on.

After doing that you should see a banner show up in the bottom right corner.

After discovering this, I think dylang should close the issue as notifications are now configurable in Windows 10.

stevenbriscoeca commented 8 years ago

Omg this worked...THANK YOU! :)

stephane-r commented 8 years ago

Hi,

This setting is already enabled on my Windows 10 :(

sans-titre-1

stevenbriscoeca commented 8 years ago

Click on the settings for "toast"

Thats the explorer...not toast

stephane-r commented 8 years ago

Sorry, not the good screenshot :) This :

sans-titre-1

bxyoung89 commented 8 years ago

I'd make sure you're getting notifications in the center at all like stephenbe's picture. If you're not, there's probably something not quite right with your use of grunt-notify. If they are showing up, maybe there's another setting you need to change. You might have all notifications muted or something like that.

yahyazini commented 8 years ago

Thanks @bxyoung89 that fixed it!

Ouro17 commented 8 years ago

Yep, as @bxyoung89 said, that way works, I didnt know that I can click on "toast" element, they should make it more clear, thank you!