File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
java/org/thoughtcrime/securesms/preferences Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ dependencies {
154
154
testImplementation ' org.robolectric:shadows-multidex:4.4'
155
155
}
156
156
157
- def canonicalVersionCode = 227
157
+ def canonicalVersionCode = 228
158
158
def canonicalVersionName = " 1.11.11"
159
159
160
160
def postFixSize = 10
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ class SettingsActivity : PassphraseRequiredActionBarActivity() {
85
85
helpTranslateButton.setOnClickListener { helpTranslate() }
86
86
seedButton.setOnClickListener { showSeed() }
87
87
clearAllDataButton.setOnClickListener { clearAllData() }
88
- supportButton .setOnClickListener { shareLogs() }
88
+ debugLogButton .setOnClickListener { shareLogs() }
89
89
val isLightMode = UiModeUtilities .isDayUiMode(this )
90
90
oxenLogoImageView.setImageResource(if (isLightMode) R .drawable.oxen_light_mode else R .drawable.oxen_dark_mode)
91
91
versionTextView.text = String .format(getString(R .string.version_s), " ${BuildConfig .VERSION_NAME } (${BuildConfig .VERSION_CODE } )" )
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class ShareLogsDialog : BaseDialog() {
40
40
val persistentLogger = ApplicationContext .getInstance(context).persistentLogger
41
41
try {
42
42
val logs = persistentLogger.logs.get()
43
- val fileName = " ${Build .MANUFACTURER } -${Build .DEVICE } -API${Build .VERSION .SDK_INT } -v${BuildConfig .VERSION_NAME } .log "
43
+ val fileName = " ${Build .MANUFACTURER } -${Build .DEVICE } -API${Build .VERSION .SDK_INT } -v${BuildConfig .VERSION_NAME } .txt "
44
44
val logUri = BlobProvider ().forData(logs.toByteArray())
45
45
.withFileName(fileName)
46
46
.withMimeType(" text/plain" )
Original file line number Diff line number Diff line change 229
229
230
230
<TextView
231
231
android : padding =" @dimen/small_spacing"
232
- android : id =" @+id/supportButton "
232
+ android : id =" @+id/debugLogButton "
233
233
android : layout_width =" match_parent"
234
234
android : layout_height =" wrap_content"
235
235
android : layout_marginTop =" @dimen/medium_spacing"
Original file line number Diff line number Diff line change 899
899
<string name =" delete_message_for_everyone" >Delete for everyone</string >
900
900
<string name =" delete_message_for_me_and_recipient" >Delete for me and %s</string >
901
901
<string name =" activity_settings_survey_feedback" >Feedback/Survey</string >
902
- <string name =" activity_settings_support" >Support </string >
902
+ <string name =" activity_settings_support" >Debug Log </string >
903
903
<string name =" dialog_share_logs_title" >Share Logs</string >
904
904
<string name =" dialog_share_logs_explanation" >Would you like to export your application logs to be able to share for troubleshooting?</string >
905
905
You can’t perform that action at this time.
0 commit comments