{"id":20851659,"url":"https://github.com/emsk/redmine-notifier","last_synced_at":"2025-10-16T09:39:15.087Z","repository":{"id":2931969,"uuid":"47915491","full_name":"emsk/redmine-notifier","owner":"emsk","description":"Updated issues checker for Redmine","archived":false,"fork":false,"pushed_at":"2023-01-04T14:30:30.000Z","size":3870,"stargazers_count":33,"open_issues_count":18,"forks_count":5,"subscribers_count":8,"default_branch":"main","last_synced_at":"2024-04-14T22:20:23.755Z","etag":null,"topics":["electron","redmine"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/emsk.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-12-13T10:58:40.000Z","updated_at":"2023-04-25T07:27:53.000Z","dependencies_parsed_at":"2023-01-11T16:13:23.841Z","dependency_job_id":null,"html_url":"https://github.com/emsk/redmine-notifier","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emsk%2Fredmine-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emsk%2Fredmine-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emsk%2Fredmine-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emsk%2Fredmine-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emsk","download_url":"https://codeload.github.com/emsk/redmine-notifier/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253675616,"owners_count":21945945,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["electron","redmine"],"created_at":"2024-11-18T03:14:30.183Z","updated_at":"2025-10-16T09:39:10.067Z","avatar_url":"https://github.com/emsk.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Redmine Notifier\n\n[![Build Status](https://travis-ci.org/emsk/redmine-notifier.svg?branch=main)](https://travis-ci.org/emsk/redmine-notifier)\n[![Code Climate](https://codeclimate.com/github/emsk/redmine-notifier/badges/gpa.svg)](https://codeclimate.com/github/emsk/redmine-notifier)\n[![Inline docs](http://inch-ci.org/github/emsk/redmine-notifier.svg?branch=main)](http://inch-ci.org/github/emsk/redmine-notifier)\n[![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n\nRedmine Notifier is a simple updated issues checker that runs in the background.\nIt sends a desktop notification if there are any updates in issues.\n\n## Installation\n\nInstallers for macOS and Windows can be found on the [releases](../../releases) page.\n\nFor Windows, the app is installed to `C:\\Users\\[UserName]\\AppData\\Local\\redmine\\app-[AppVersion]\\Redmine Notifier.exe`.\n\n## Main Notifications\n\nThe number of issues that were updated after previous fetch is shown in parentheses.\nAlso, the subject is shown only about the latest issue.\n\n![Notification Mac 10.10](examples/notification_osx_10.10.png?raw=true)\n![Notification Win 10](examples/notification_win_10.png?raw=true)\n\n## Sub Notifications\n\nWhen Redmine Notifier is started, an icon appears in the menu bar or task tray.\nIf there is a notification in the most recent fetch, the icon is replaced by the notification icon.\n\n##### Menu Icon (macOS)\n\nNormal: ![Icon Mac Normal](examples/icon_osx_normal.png?raw=true) Notification: ![Icon Mac Notification](examples/icon_osx_notification.png?raw=true)\n\n##### Tray Icon (Windows)\n\nNormal: ![Icon Win Normal](examples/icon_win_normal.png?raw=true) Notification: ![Icon Win Notification](examples/icon_win_notification.png?raw=true)\n\n## Settings\n\nOpen the context menu and select \"Preferences\".\n\n![Settings](examples/redmine_notifier_settings.png?raw=true)\n\n## Development\n\nRedmine Notifier is powered by [Electron](http://electron.atom.io/), so we can develop it with web technologies.\n\n### Dependencies\n\n##### Production\n\n* [node-notifier](https://github.com/mikaelbr/node-notifier)\n* [notie](https://github.com/jaredreich/notie)\n\n##### Development\n\n* [ava](https://github.com/avajs/ava)\n* [electron](https://github.com/electron/electron)\n* [electron-builder](https://github.com/electron-userland/electron-builder)\n* [spectron](https://github.com/electron/spectron)\n* [stylelint](https://github.com/stylelint/stylelint)\n* [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard)\n* [textlint](https://github.com/textlint/textlint)\n* [textlint-rule-write-good](https://github.com/nodaguti/textlint-rule-write-good)\n* [xo](https://github.com/sindresorhus/xo)\n\nSee `dependencies` and `devDependencies` in [`package.json`](package.json).\n\n### Installing dependencies\n\n```sh\ncd /path/to/redmine-notifier\nyarn install\n```\n\n### Starting app\n\n```sh\nyarn start\n```\n\n### Building installers\n\n```sh\nyarn run pack\n```\n\n### Linting JavaScript, CSS, and Markdown files\n\n```sh\nyarn run lint\n```\n\n### Testing app\n\n```sh\nyarn test\n```\n\nSee `scripts` in [`package.json`](package.json) with regard to other commands.\n\n## Contributing\n\n1. Fork it ( https://github.com/emsk/redmine-notifier/fork )\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new Pull Request\n\n## Related\n\n* [Redmine Now](https://github.com/emsk/redmine-now) - A desktop app to know what's happening now on your Redmine\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femsk%2Fredmine-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femsk%2Fredmine-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femsk%2Fredmine-notifier/lists"}