-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: prepare for 0.2.1 (#48) * fix(functions): stats contacts regression * fix: measurement creation for new contacts * fix: no decimals in lower android APIs * refactor: homepage landscape mode * chore: ui clean up * fix: material color * chore: update TASKS * release: prepare for 1.0 (#49) * chore: base template setup * feat: initial proposal for rate limit template * feat: first draft access denied template * chore(models): account status * chore: rework templates * refactor(redux): account status * refactor(home): with status templates * feat: implement premium accounts * feat: implement notice * chore: update notice on move to premium * feat: added common settings * chore: code clean up * chore: update TASKS * release: pre 1.0.0 ✨ * chore(functions): default account data * chore: code clean up * chore: added get_version * feat: had to bump to 1.0.1 * feat: ok, so no more 1.0.1 still on the road map to 1.0.0 * chore: update README
- Loading branch information
Showing
36 changed files
with
744 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ | |
/captures | ||
GeneratedPluginRegistrant.java | ||
google-services.json | ||
key.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
class SettingsModel { | ||
String premiumNotice; | ||
|
||
SettingsModel({ | ||
this.premiumNotice, | ||
}); | ||
|
||
factory SettingsModel.fromJson(Map<String, dynamic> json) { | ||
assert(json != null); | ||
return new SettingsModel( | ||
premiumNotice: json['premiumNotice'], | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.