From abc199dd25aaea2ad7d0ab1dbd9a7c1577ebbfdf Mon Sep 17 00:00:00 2001
From: Ahsan Sarwar <41967492+AhsanSarwar45@users.noreply.github.com>
Date: Thu, 27 Jun 2024 15:12:02 +0500
Subject: [PATCH 1/3] Update README.md
---
README.md | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/README.md b/README.md
index dd20d79e..8be82c3a 100644
--- a/README.md
+++ b/README.md
@@ -10,14 +10,23 @@
![tests](https://github.com/vicolo-dev/chrono/actions/workflows/tests.yml/badge.svg)
[![codecov](https://codecov.io/gh/vicolo-dev/chrono/branch/master/graph/badge.svg?token=cKxMm8KVev)](https://codecov.io/gh/vicolo-dev/chrono)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/7dc1e51c1616482baa5392bc0826c50a)](https://app.codacy.com/gh/vicolo-dev/chrono/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
+
+
+
+
+
+
+
[](https://f-droid.org/packages/com.vicolo.chrono)
[](https://apt.izzysoft.de/fdroid/index/apk/com.vicolo.chrono)
[](https://github.com/vicolo-dev/chrono/releases/latest)
+
+
Its usable, but still WIP, so you might encounter some bugs. Make sure to test it out thorougly on your device before using it for critical alarms. Feel free to open an issue.
# Table of Content
@@ -30,6 +39,7 @@ Its usable, but still WIP, so you might encounter some bugs. Make sure to test i
## Features
- Modern and easy to use interface
+- Available in variety of [languages](#translations)
### Alarms
- Customizable schedules (Daily, Weekly, Specific week days, Specific dates, Date range)
- Configure melody/ringtone, rising volume and vibrations
@@ -73,6 +83,17 @@ Feel free to create issues regarding any issues you might be facing, any improve
Pull Requests are highly welcome. When contributing to this repository, please first discuss the change you wish to make via an issue. Also, please refer to [Effective Dart](https://dart.dev/effective-dart) as a guideline for the coding standards expected from pull requests.
### Translations
You can help translate the app into your preferred language using weblate at https://hosted.weblate.org/projects/chrono/.
+
+
+
+
+
+Current progress:
+
+
+
+
+
### Spread the word!
If you found the app useful, you can help the project by sharing it with friends and family.
### Donate
From d6746a18cb72bc0659172879af77481eeb8f8f74 Mon Sep 17 00:00:00 2001
From: Azeem
Date: Fri, 20 Sep 2024 00:04:01 +0500
Subject: [PATCH 2/3] Create FUNDING.yml
---
.github/FUNDING.yml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
create mode 100644 .github/FUNDING.yml
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 00000000..9c1919ed
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1,15 @@
+# These are supported funding model platforms
+
+github: vicolo-dev # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
+patreon: vicolo # Replace with a single Patreon username
+open_collective: # Replace with a single Open Collective username
+ko_fi: # Replace with a single Ko-fi username
+tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
+community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
+liberapay: # Replace with a single Liberapay username
+issuehunt: # Replace with a single IssueHunt username
+lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
+polar: # Replace with a single Polar username
+buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
+thanks_dev: # Replace with a single thanks.dev username
+custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
From 5e098369cf1bdd1596458f286b61067a7fc9104e Mon Sep 17 00:00:00 2001
From: Sunny
Date: Fri, 8 Nov 2024 08:34:51 +0100
Subject: [PATCH 3/3] Fix minor typo
---
lib/alarm/data/alarm_events_sort_options.dart | 4 ++--
lib/developer/data/log_sort_options.dart | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/alarm/data/alarm_events_sort_options.dart b/lib/alarm/data/alarm_events_sort_options.dart
index fcbd93a6..9e945a64 100644
--- a/lib/alarm/data/alarm_events_sort_options.dart
+++ b/lib/alarm/data/alarm_events_sort_options.dart
@@ -4,9 +4,9 @@ import 'package:clock_app/common/types/list_filter.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
final List> alarmEventSortOptions = [
- ListSortOption((context) => "Earlies start date", sortStartDateAscending),
+ ListSortOption((context) => "Earliest start date", sortStartDateAscending),
ListSortOption((context) => "Latest start date", sortStartDateDescending),
- ListSortOption((context) => "Earlies event date", sortEventDateAscending),
+ ListSortOption((context) => "Earliest event date", sortEventDateAscending),
ListSortOption((context) => "Latest event date", sortEventDateDescending),
];
diff --git a/lib/developer/data/log_sort_options.dart b/lib/developer/data/log_sort_options.dart
index f398cadb..ad279586 100644
--- a/lib/developer/data/log_sort_options.dart
+++ b/lib/developer/data/log_sort_options.dart
@@ -3,7 +3,7 @@ import 'package:clock_app/developer/types/log.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
final List> logSortOptions = [
- ListSortOption((context) => "Earlies first", sortDateAscending),
+ ListSortOption((context) => "Earliest first", sortDateAscending),
ListSortOption((context) => "Latest first", sortDateDescending),
];