Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
7Eltantawy committed Feb 16, 2024
1 parent 530a0c2 commit 31604c6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mudawanat_aleibadat/lib/src/core/constants/constants.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const String kHiveBoxName = "mudawanat_aleibadat";
const String kAppVersion = "0.4.0";
const String kAppVersion = "0.4.01";
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ class DailyDeedsRepo {
date INTEGER PRIMARY KEY,
lastUpdated INTEGER,
fasting INTEGER,
-- additional
fajrPre INTEGER,
dhuhrPre INTEGER,
dhuhrAfter INTEGER,
Expand All @@ -75,11 +77,15 @@ class DailyDeedsRepo {
ishaaAfter INTEGER,
doha INTEGER,
nightPrayer INTEGER,
-- obligatory
fajr INTEGER,
dhuhr INTEGER,
asr INTEGER,
maghrib INTEGER,
ishaa INTEGER,
-- awrad
quran INTEGER,
azkar INTEGER
)
Expand All @@ -95,7 +101,8 @@ class DailyDeedsRepo {
await db.execute('''
ALTER TABLE daily_deeds
ADD COLUMN lastUpdated INTEGER;
''');
await db.execute('''
UPDATE daily_deeds
SET lastUpdated = date;
''');
Expand Down
2 changes: 1 addition & 1 deletion mudawanat_aleibadat/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: "Track your daily deeds."

publish_to: "none"

version: 0.4.0+6
version: 0.4.01+7

environment:
sdk: ">=3.2.6 <4.0.0"
Expand Down

0 comments on commit 31604c6

Please sign in to comment.