Review of "Reminder Alarm Clock" version 45

Details Page Preview

The reminder alarm clock will remind you of an important event at the appointed time.

Extension Homepage
https://github.com/nE0sIghT/ReminderAlarmClock

No comments.

Diff Against

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

All Versions

Previous Reviews on this Version

JustPerfection active
Please remove unnecessary `log()`s.
Yuri Konotopov posted a review
Thanks! I will drop them with next version
JustPerfection posted a review
btw, you can also use default sound player if you want to play sound. ```js let player = global.display.get_sound_player(); let file = Gio.File.new_for_path('PATH TO THE FILE'); player.play_from_file(file, 'title', null); ``` or play audio form theme: ``` player.play_from_theme('sound name', 'title', null); ``` I'm asking that because `Gst.init()` is not good for extensions since that belongs to GNOME Shell process.
Yuri Konotopov posted a review
Thanks for hint! I will drop gstreamer usage