Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evgeniy-dammer/notificator
Notificator is a simple program that receives messages for a specific user and displays them in Windows Notification Center
https://github.com/evgeniy-dammer/notificator
csharp dotnet notification-client notificationcenter notifications notifier windows-10 winforms
Last synced: 12 days ago
JSON representation
Notificator is a simple program that receives messages for a specific user and displays them in Windows Notification Center
- Host: GitHub
- URL: https://github.com/evgeniy-dammer/notificator
- Owner: evgeniy-dammer
- Created: 2021-07-30T06:06:14.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-16T09:36:06.000Z (over 3 years ago)
- Last Synced: 2023-03-10T14:01:30.345Z (over 1 year ago)
- Topics: csharp, dotnet, notification-client, notificationcenter, notifications, notifier, windows-10, winforms
- Language: C#
- Homepage:
- Size: 296 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notificator :bell:
### Description
Notificator is a simple program that makes requests to a specific URL in the background, receives a JSON message and displays it in Windows Notification Center for a specific user.### Screenshot
### Launching project
This program was developed with `Visual Studio 2017`. The following `NuGet packages` have also been added:
- `Newtonsoft.Json` v13.0.1;
- `System.Runtime` v4.0.0;
- `System.Runtime.WindowsRuntime` v4.0.0;
- `Legacy2CPSWorkaround` v1.0.0;
- `Microsoft.Toolkit.Uwp.Notifications` v7.0.2.### Configuration
The program has two configurable parameters, which you can set in context menu `Settings`:
- `url` - URL, which returns a JSON message;
- `interval` - Request interval in milliseconds.
### JSON message structure
The message structure looks like this:
{
"success": true,
"data":
{
"title": "Header",
"date": 1627058574,
"message": "Some message for ...",
"url": "http://somesite.com/"
}
}