afify / azan (public) (License: MIT) (since 2020-03-08) (hash sha1)
azan is a simple muslim prayers notifier for unix-like systems.
List of commits:
Subject Hash Author Date (UTC)
[fix] functions declaration missing const fb80f2f8b529debddc4af21d5c5994e33deb19bd Hassan Afify 2019-10-05 14:34:49
[refactor] Change variables to const ef8b891737823e8d584fa975c4d561a63801b3e4 Hassan Afify 2019-10-04 18:45:07
[refactor] function declaration parameter name bed4911ed9c5be310e710f945ed68d65228adba5 Hassan Afify 2019-10-04 18:57:40
[delete] sent presentation file 8166502f5dbfcf52d859b95d2fc069a6043ca756 Hassan Afify 2019-10-05 10:34:04
[update] Makefile b29c34f1d2ea1a5d48e649d68595772f1fbbc374 Hassan Afify 2019-10-04 19:03:58
[refactor] function declaration parameter name 4db440d3a9a86ae56d8f3f0196831ad7d699f77f Hassan Afify 2019-10-04 18:57:40
[refactor] Change variables to const 04d742ebb7431167d2f35512612d54b4375ff5f7 Hassan Afify 2019-10-04 18:45:07
[style] pointer asterisk position c47adc6974d903abf5ec68b73a828d788bfc4605 Hassan Afify 2019-10-04 13:32:18
[fix] testing branch Makefile configuration b683a683b7c003b333536e6a0a6e5b18fb8ef74d Hassan Afify 2019-10-04 14:41:18
[style] pointer asterisk position 684a938929a553d2c54049482e56521ea1d759b7 Hassan Afify 2019-10-04 13:32:18
[fix] option -a bug e645d6b8e355187aff53e9d77e717656996be61b Hassan Afify 2019-10-02 15:52:10
[fix] update config.def.h d70664ff8899be4120339a2578aeb555100601ab Hassan Afify 2019-10-01 19:55:21
[refactor] remove azan.h, upgrade functions 8d457954d6afea2679ad40a0c4874ef967c0f8a2 Hassan Afify 2019-10-01 19:13:58
[fix] Remove send-notification feature 982a2f0cdcbae2d5d95b83e1f33cbf19c5fae0f0 Hassan Afify 2019-09-30 15:35:55
[doc] update README and man page, remove .github 9f329d7a6433208b32b17b33f17527e306208b5b Hassan Afify 2019-09-30 06:39:56
Update issue templates 03092fd9858d1f42bc0c6a06eeed834be3f34c2b Hassan Afify 2019-09-28 15:45:11
[fix] read cache file function 93c03a6cd5d7e8b0f83057ea707544727aa3ed49 Hassan Afify 2019-09-28 07:46:50
[fix] print next fajr bug 9c2a2bf932fb536c93a78eaaefa0fb8605f57d3e Hassan Afify 2019-09-27 04:55:14
[fix] check failed stat, clean code, Makefile 111e4834d9311854fa0af5b075c8534eba646487 Hassan Afify 2019-09-26 18:29:57
[doc] update README f5ff97da3e92639d79e1c9cff46ac0995139a3b6 Hassan Afify 2019-09-25 18:10:18
Commit fb80f2f8b529debddc4af21d5c5994e33deb19bd - [fix] functions declaration missing const
Author: Hassan Afify
Author date (UTC): 2019-10-05 14:34
Committer name: Hassan Afify
Committer date (UTC): 2019-10-05 14:34
Parent(s): 4a71a55deba06c36155f4e8858667ece636fe2ad
Signing key: 0F6CD1196B2A5658
Tree: f8297fd38ed764b20167d2da05ef9f2198c2d6da
File Lines added Lines deleted
azan.c 10 10
File azan.c changed (mode: 100644) (index 9de199d..1d0f200)
... ... static time_t convert_today_double_to_timet(const double, const int);
31 31 static double convert_gregorian_to_julian(int, int, int); static double convert_gregorian_to_julian(int, int, int);
32 32 static double convert_degrees_to_radians(const double); static double convert_degrees_to_radians(const double);
33 33 static double convert_radians_to_degrees(const double); static double convert_radians_to_degrees(const double);
34 static double T(const double, const double);
35 static double A(const double, const double);
36 static double normalize(const double, const double);
37 static double get_equation_time(const double, double*);
38 static double get_sunrise(const double, const double);
39 static double get_fajr(const double, const double);
40 static double get_duhr(const double);
41 static double get_asr(const double, const double);
42 static double get_maghrib(double, const double);
43 static double get_isha(const double, const double, const double);
34 static const double T(const double, const double);
35 static const double A(const double, const double);
36 static const double normalize(const double, const double);
37 static const double get_equation_time(const double, double*);
38 static const double get_sunrise(const double, const double);
39 static const double get_fajr(const double, const double);
40 static const double get_duhr(const double);
41 static const double get_asr(const double, const double);
42 static const double get_maghrib(const double, const double);
43 static const double get_isha(const double, const double, const double);
44 44 static int file_exist(const char*); static int file_exist(const char*);
45 45 static int create_cache_file(const time_t, const char*); static int create_cache_file(const time_t, const char*);
46 46 static time_t *read_azan_cache_file(const char*); static time_t *read_azan_cache_file(const char*);
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/afify/azan

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/afify/azan

Clone this repository using git:
git clone git://git.rocketgit.com/user/afify/azan

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main