-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from raxysstudios/v1.0
v1.1.1
- Loading branch information
Showing
63 changed files
with
837 additions
and
1,127 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,32 @@ | ||
# Andax | ||
|
||
Expandable parallel reference to the languages of the Caucasus in English. Currently includes Dictionary, with more modules to come soon. Legacy experimental implementation with 4 modules is available at https://ex.avzag.app/. | ||
Expandable parallel dictionary for the languages of the Caucasus in English. | ||
|
||
Google Play: https://play.google.com/store/apps/details?id=com.alkaitagi.avzag | ||
Web application: https://avzag.app/. | ||
Google Play: <https://play.google.com/store/apps/details?id=com.alkaitagi.bazur> | ||
Web application: <https://bazur.raxys.app/>. | ||
|
||
Built with Flutter & Firebase & Algolia. | ||
|
||
## Roadmap | ||
|
||
### 2021 | ||
|
||
- [x] September: start of beta-test. | ||
- [x] November: release of crowdsourcing functionality. | ||
- [x] December: general availability on Android & Web. | ||
|
||
### 2022 | ||
|
||
- [x] Spring: Home-screen map, iOS release. | ||
- [x] Summer: Deep-linking, word sharing. | ||
- [ ] Autumn: Word of the day, search UI improvements. | ||
- [ ] Winter: Material 3, UI & UX overhaul. | ||
|
||
## Getting Started | ||
|
||
```sh | ||
> git clone https://github.com/raxysstudios/avzag.git | ||
> cd avzag | ||
> git clone https://github.com/raxysstudios/bazur.git | ||
> cd bazur | ||
> pub get | ||
> flutter run -d chrome --web-port 80 | ||
``` |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<string name="app_name">🛠️ Avzag</string> | ||
<string name="app_name">🛠️ Bazur</string> | ||
</resources> |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<string name="app_name">Avzag</string> | ||
<string name="app_name">Bazur</string> | ||
</resources> |
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 |
---|---|---|
@@ -1,53 +1,30 @@ | ||
import 'package:avzag/shared/utils.dart'; | ||
import 'package:bazur/shared/utils.dart'; | ||
import 'package:cloud_firestore/cloud_firestore.dart'; | ||
|
||
class LanguageStats { | ||
final int dictionary; | ||
|
||
LanguageStats({ | ||
this.dictionary = 0, | ||
}); | ||
|
||
LanguageStats.fromJson(Map<String, Object?> json) | ||
: this( | ||
dictionary: json['dictionary'] as int, | ||
); | ||
|
||
Map<String, Object?> toJson() => { | ||
'dictionary': dictionary, | ||
}; | ||
} | ||
|
||
class Language { | ||
final String name; | ||
final String endonym; | ||
final String? flag; | ||
final String? contact; | ||
final List<String>? aliases; | ||
final GeoPoint? location; | ||
final LanguageStats? stats; | ||
final int dictionary; | ||
|
||
const Language({ | ||
required this.name, | ||
required this.endonym, | ||
this.flag, | ||
this.contact, | ||
this.aliases, | ||
this.location, | ||
this.stats, | ||
this.dictionary = 0, | ||
}); | ||
|
||
Language.fromJson(Map<String, Object?> json) | ||
: this( | ||
name: json['name'] as String, | ||
endonym: json['endonym'] as String, | ||
flag: json['flag'] as String?, | ||
contact: json['contact'] as String?, | ||
aliases: json2list(json['aliases']), | ||
location: | ||
json['location'] == null ? null : json['location'] as GeoPoint, | ||
stats: json['stats'] == null | ||
? null | ||
: LanguageStats.fromJson(json['stats'] as Map<String, Object?>), | ||
location: json['location'] as GeoPoint?, | ||
dictionary: json['dictionary'] as int? ?? 0, | ||
); | ||
} |
File renamed without changes.
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.