Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix minor typo (earlies → earliest) #369

Merged
merged 4 commits into from
Nov 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -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']
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
<a href="https://hosted.weblate.org/engage/chrono/">
<img src="https://hosted.weblate.org/widget/chrono/app/svg-badge.svg" alt="Translation status" />
</a>
<span class="badge-patreon"><a href="https://patreon.com/vicolo" title="Donate to this project using Patreon"><img src="https://img.shields.io/badge/patreon-donate-orange.svg" alt="Patreon donate button" /></a></span>

<a href="https://hosted.weblate.org/engage/chrono/">
<img src="https://hosted.weblate.org/widget/chrono/app/287x66-grey.png" alt="Translation status" />
</a>

[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/packages/com.vicolo.chrono)
[<img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png" alt="Get it on IzzyOnDroid" height=80/>](https://apt.izzysoft.de/fdroid/index/apk/com.vicolo.chrono)
[<img src="https://i.ibb.co/q0mdc4Z/get-it-on-github.png" alt="Get it on Github" height=80/>](https://github.com/vicolo-dev/chrono/releases/latest)


</div>


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
Expand All @@ -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
Expand Down Expand Up @@ -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/.

<a href="https://hosted.weblate.org/engage/chrono/">
<img src="https://hosted.weblate.org/widget/chrono/app/287x66-grey.png" alt="Translation status" />
</a>

Current progress:

<a href="https://hosted.weblate.org/engage/chrono/">
<img src="https://hosted.weblate.org/widget/chrono/app/horizontal-auto.svg" alt="Translation status" />
</a>

### Spread the word!
If you found the app useful, you can help the project by sharing it with friends and family.
### Donate
Expand Down
4 changes: 2 additions & 2 deletions lib/alarm/data/alarm_events_sort_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import 'package:clock_app/common/types/list_filter.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';

final List<ListSortOption<AlarmEvent>> 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),
];

Expand Down
2 changes: 1 addition & 1 deletion lib/developer/data/log_sort_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'package:clock_app/developer/types/log.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';

final List<ListSortOption<Log>> logSortOptions = [
ListSortOption((context) => "Earlies first", sortDateAscending),
ListSortOption((context) => "Earliest first", sortDateAscending),
ListSortOption((context) => "Latest first", sortDateDescending),
];

Expand Down
Loading