You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.3 KiB
1.3 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[0.5.0] - 2024-11-24
Added
notifyType
when subscribing, includingDIRECT_NOTIFICATION
with a hard-coded messageSECONDS_BETWEEN_NOTIFICATIONS
environment variable for length of notification loop
Changed
- DB changes:
alter table subscription add column notify_type varchar(32);
update subscription set notify_type = 'DAILY_CHECK';
alter table subscription add column created_date datetime;
alter table subscription add column message varchar(100);
[0.4.0] - 2024-03-31 - 400d9e6eb0
Added
- Different times for users to receive notifications
- Ping endpoint
Changed
- Notification loop runs every 5 minutes.
- DB changes:
alter table subscription add column notify_time varchar(5);
update subscription set notify_time = '13:13';
create table settings (id integer primary key, prev_notify_end_time varchar(29) not null, running_notify_end_time varchar(29));
insert into settings (id, prev_notify_end_time) values (0, '2024-01-01');
[0.1.0]
- First release with subscriptions and daily notifications.