Skip to content

Commit

Permalink
Merge branch 'v1.0' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
alkaitagi committed Jul 11, 2022
2 parents 137ebea + 9a3e14b commit 4f976b6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="avzag.raxys.app" />
<data android:scheme="http" android:host="bazur.raxys.app" />
<data android:scheme="https" />
</intent-filter>
</activity>
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/dictionary/services/sharing.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ String textifyArticle(Word word) {
if (word.note?.isNotEmpty ?? false) note(word.note!),
if (word.forms.isNotEmpty) ...samples(word.forms),
for (final d in word.definitions) ...[
'\n💡${word.definitions.indexOf(d) + 1} ${d.translation.titled}',
'\n💡${word.definitions.indexOf(d) + 1}. ${d.translation.titled}',
if (d.tags.isNotEmpty) tags(d.tags),
if (d.note?.isNotEmpty ?? false) note(d.note!),
if (d.examples.isNotEmpty) ...samples(d.examples),
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/home/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class _HomeScreenState extends State<HomeScreen> {
catalogue = await FirebaseFirestore.instance
.collection('languages')
.orderBy(
alpha ? 'name' : 'stats.dictionary',
alpha ? 'name' : 'dictionary',
descending: !alpha,
)
.withConverter(
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: bazur
description: Extensible parallel dictionary
publish_to: "none"
version: 1.1.1+71
version: 1.1.3+73

environment:
sdk: ">=2.13.0 <3.0.0"
Expand Down

0 comments on commit 4f976b6

Please sign in to comment.