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)
[release] v0.1 a1a2a57e74f8af49595253c067ff79de52b533e7 Hassan Afify 2019-09-25 06:01:46
[fix] [Valgrind] Memory leaks, stack errors. f06c1192c98f0405b727b9ca4346ed7262476c33 Hassan Afify 2019-09-24 16:02:56
[fix] create_cache bug, clean Makefile *.log 7d998c3f864fe07102b3fa07f83ea754159a9927 Hassan Afify 2019-09-24 05:38:39
[feat] argument options, next_fajr 4cd6ef1633f3e5cd3afe36be70e9c718911e701d Hassan Afify 2019-09-23 09:38:57
[doc] Update CONTRIBUTING, README & man page a16565d0b498313a8df232d3e2f5e7c1367dc191 Hassan Afify 2019-09-22 10:23:25
[doc] Update CONTRIBUTING, README & man page 0b978479fbe5d6e626a55a5ac78231393a267025 Hassan Afify 2019-09-22 10:23:25
[feat] Edit Makefile, Add config.def.h, config.mk c9e13a7b6dcc00894620f5788c04f4afba0f59d4 Hassan Afify 2019-09-21 17:11:34
[fix] Replace CODE_STYLE with CONTRIBUTING.md be2b91ef8d73aea536bc45446808633561d8afd9 Hassan Afify 2019-09-21 11:14:30
[feat] Edit Makefile, azan.c 538877a4311572caa1ddb88ffd0bac5e0b4379bc Hassan Afify 2019-09-20 12:59:05
[feat] Edit Makefile f41f74a524feb96228eb35a77a336862d5ca958c Hassan Afify 2019-09-19 05:04:00
[feat] Self Calcutation 1be712f454adda33c8a182a4478a3abf5dba6745 Hassan Afify 2019-09-17 08:11:15
[init] Initial Commit 2654768d0412e07cf7aa4b78a41b125aeceab82e Hassan Afify 2019-09-04 01:44:23
Commit a1a2a57e74f8af49595253c067ff79de52b533e7 - [release] v0.1
Author: Hassan Afify
Author date (UTC): 2019-09-25 06:01
Committer name: Hassan Afify
Committer date (UTC): 2019-09-25 06:01
Parent(s): f06c1192c98f0405b727b9ca4346ed7262476c33
Signing key: 0F6CD1196B2A5658
Tree: a6f9f22044524548fa7719b970028b8b62cdcf7b
File Lines added Lines deleted
Makefile 4 3
config.mk 1 1
File Makefile changed (mode: 100644) (index 2735d65..ca3bdb4)
... ... config.h:
18 18 cp config.def.h config.h cp config.def.h config.h
19 19
20 20 .c.o: .c.o:
21 $(CC) $(STCFLAGS) -g -c $<
21 $(CC) $(STCFLAGS) -c $<
22 22
23 23 azan.o: config.h azan.h azan.o: config.h azan.h
24 24
25 25 $(OBJ): config.h config.mk $(OBJ): config.h config.mk
26 26
27 27 azan: $(OBJ) azan: $(OBJ)
28 $(CC) -o $@ $(OBJ) $(STLDFLAGS)
28 $(CC) -g -o $@ $(OBJ) $(STLDFLAGS)
29 29
30 30 clean: clean:
31 31 rm -f $(OBJ) azan *.log rm -f $(OBJ) azan *.log
 
... ... uninstall:
45 45 check: valgrind splint check: valgrind splint
46 46
47 47 valgrind: azan valgrind: azan
48 valgrind --track-origins=yes -v --read-var-info=yes --leak-check=full --log-file=valgrind.log ./azan
48 valgrind --dsymutil=yes --track-origins=yes --log-file=valgrind.log ./azan
49 # -v --read-var-info=yes --leak-check=full
49 50
50 51 splint: azan.c splint: azan.c
51 52 splint $(SRC) > splint.log splint $(SRC) > splint.log
File config.mk changed (mode: 100644) (index 80e7685..b23d04d)
1 1 # azan version # azan version
2 VERSION = 0.0.2
2 VERSION = 0.1
3 3
4 4 # Customize below to fit your system # Customize below to fit your system
5 5
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