Skip to content

Commit eacca60

Browse files
authored
Merge pull request #614 from syphon-org/dev
[release] v0.2.11
2 parents 2797e91 + 7309b4f commit eacca60

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1268
-841
lines changed

.fvm/fvm_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"flutterSdkVersion": "2.8.1",
2+
"flutterSdkVersion": "2.10.3",
33
"flavors": {}
44
}

analysis_options.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ linter:
1717
prefer_for_elements_to_map_fromIterable: false # that syntax is challenging, will change if becomes standard
1818
prefer_conditional_assignment: false
1919
sized_box_for_whitespace: false
20+
always_use_package_imports: false
21+
22+
use_build_context_synchronously: false # powers most of the navigation...
2023

2124
# Enabled
2225
prefer_single_quotes: true

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ apply plugin: 'kotlin-android'
3232
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
3333

3434
android {
35-
compileSdkVersion 30
35+
compileSdkVersion 31
3636

3737
sourceSets {
3838
main.java.srcDirs += 'src/main/kotlin'
@@ -45,7 +45,7 @@ android {
4545
defaultConfig {
4646
applicationId "org.tether.tether"
4747
minSdkVersion 18
48-
targetSdkVersion 30
48+
targetSdkVersion 31
4949
versionCode flutterVersionCode.toInteger()
5050
versionName flutterVersionName
5151
multiDexEnabled true

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
android:launchMode="singleTop"
3737
android:theme="@style/LaunchTheme"
3838
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
39+
android:exported="true"
3940
android:hardwareAccelerated="true"
4041
android:windowSoftInputMode="adjustResize">
4142
<!-- Specifies an Android theme to apply to this Activity as soon as

android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public static void registerWith(@NonNull FlutterEngine flutterEngine) {
3131
Log.e(TAG, "Error registering plugin device_info, io.flutter.plugins.deviceinfo.DeviceInfoPlugin", e);
3232
}
3333
try {
34-
flutterEngine.getPlugins().add(new com.fintays.emoji_picker_flutter.EmojiPickerFlutterPlugin());
34+
flutterEngine.getPlugins().add(new com.fintasys.emoji_picker_flutter.EmojiPickerFlutterPlugin());
3535
} catch(Exception e) {
36-
Log.e(TAG, "Error registering plugin emoji_picker_flutter, com.fintays.emoji_picker_flutter.EmojiPickerFlutterPlugin", e);
36+
Log.e(TAG, "Error registering plugin emoji_picker_flutter, com.fintasys.emoji_picker_flutter.EmojiPickerFlutterPlugin", e);
3737
}
3838
try {
3939
flutterEngine.getPlugins().add(new com.mr.flutter.plugin.filepicker.FilePickerPlugin());
@@ -93,7 +93,7 @@ public static void registerWith(@NonNull FlutterEngine flutterEngine) {
9393
try {
9494
flutterEngine.getPlugins().add(new io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin());
9595
} catch(Exception e) {
96-
Log.e(TAG, "Error registering plugin shared_preferences, io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin", e);
96+
Log.e(TAG, "Error registering plugin shared_preferences_android, io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin", e);
9797
}
9898
try {
9999
flutterEngine.getPlugins().add(new com.tekartik.sqflite.SqflitePlugin());
@@ -113,7 +113,7 @@ public static void registerWith(@NonNull FlutterEngine flutterEngine) {
113113
try {
114114
flutterEngine.getPlugins().add(new io.flutter.plugins.urllauncher.UrlLauncherPlugin());
115115
} catch(Exception e) {
116-
Log.e(TAG, "Error registering plugin url_launcher, io.flutter.plugins.urllauncher.UrlLauncherPlugin", e);
116+
Log.e(TAG, "Error registering plugin url_launcher_android, io.flutter.plugins.urllauncher.UrlLauncherPlugin", e);
117117
}
118118
try {
119119
flutterEngine.getPlugins().add(new io.flutter.plugins.webviewflutter.WebViewFlutterPlugin());

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.3.50'
2+
ext.kotlin_version = '1.6.10'
33
repositories {
44
google()
55
jcenter()

assets/payloads/fix-batch-names.txt

Lines changed: 0 additions & 115 deletions
This file was deleted.

assets/translations/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@
190190
"prompt-confirm-deactivate": "Enter your password below to confirm deactivation",
191191
"placeholder-topic": "No Topic Description",
192192
"content-thanks": "Thanks for trying out {}!\n\n",
193+
"content-support-dialog": "The Syphon community is here to help you however we can.\n\nFeel free to join our Support chat or send us an email. Please be aware email can take anywhere from 1-5+ business days for a reply!",
193194
"content-password-recommendation": "Try thinking up 3 or more random\nwords you'll easily remember",
194195
"content-intro-section-one": "{} works by using an encrypted \nand decentralized network \ncalled ",
195196
"content-intro-section-two": "Matrix enables you to message others",

docs/various-issue-batch-names.md

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
* Alizarin
2+
* Amaranth
3+
* Amber
4+
* Amethyst
5+
* Apricot
6+
* Aqua
7+
* Auburn
8+
* Azure
9+
* Beige
10+
* Bistre
11+
* Black
12+
* Blue
13+
* Brass
14+
* Bronze
15+
* Brown
16+
* Buff
17+
* Burgundy
18+
* Cardinal
19+
* Carmine
20+
* Celadon
21+
* Cerise
22+
* Cerulean
23+
* Champagne
24+
* Charcoal
25+
* Chartreuse
26+
* Chestnut
27+
* Chocolate
28+
* Cinnabar
29+
* Cinnamon
30+
* Cobalt
31+
* Copper
32+
* Coral
33+
* Corn
34+
* Cornflower
35+
* Cream
36+
* Crimson
37+
* Cyan
38+
* Dandelion
39+
* Denim
40+
* Ecru
41+
* Emerald
42+
* Eggplant
43+
* Firebrick
44+
* Flax
45+
* Fuchsia
46+
* Gamboge
47+
* Gold
48+
* Goldenrod
49+
* Green
50+
* Grey
51+
* Harlequin
52+
* Heliotrope
53+
* Indigo
54+
* Ivory
55+
* Jade
56+
* Khaki
57+
* Lavender
58+
* Lemon
59+
* Lilac
60+
* Lime
61+
* Linen
62+
* Magenta
63+
* Magnolia
64+
* Malachite
65+
* Maroon
66+
* Mauve
67+
* Mustard
68+
* Myrtle
69+
* Ochre
70+
* Olive
71+
* Olivine
72+
* Orange
73+
* Orchid
74+
* Peach
75+
* Pear
76+
* Periwinkle
77+
* Persimmon
78+
* Pink
79+
* Platinum
80+
* Plum
81+
* Puce
82+
* Pumpkin
83+
* Purple
84+
* Razzmatazz
85+
* Red
86+
* Rose
87+
* Ruby
88+
* Russet
89+
* Rust
90+
* Saffron
91+
* Salmon
92+
* Sangria
93+
* Sapphire
94+
* Scarlet
95+
* Seashell
96+
* Sepia
97+
* Silver
98+
* Smalt
99+
* Tan
100+
* Tangerine
101+
* Taupe
102+
* Teal
103+
* Thistle
104+
* Tomato
105+
* Turquoise
106+
* Ultramarine
107+
* Vermilion
108+
* Violet
109+
* Viridian
110+
* Wheat
111+
* White
112+
* Wisteria
113+
* Xanthic
114+
* Yellow
115+
* Zucchini
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
0.2.11
2+
3+
🔥 Hot Fixes
4+
- Crypto Storage performance issues
5+
- Fixed Wordle
6+
7+
🔮 New Features
8+
- Session Key Imports / Exports
9+
- Email and other 3pid auth support
10+
- Fullscreen Image View
11+
- Incoming Read Receipt Support
12+
- Toggle autocorrect setting
13+
- System Brightness Mode
14+
- Additional Help Options
15+
16+
🐛 Bug Fixes
17+
- fixed missing several translations
18+
- fixed various notification issues
19+
- fixed issues with deleting devices
20+
- fixed issues deactivating accounts
21+
- fixed showing TOS more than once
22+
23+
💡 Improvements
24+
- Hide Send Button
25+
26+
📐 Refactoring
27+
- Lots!

0 commit comments

Comments
 (0)