Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ A clear and concise description of what you expected to happen.
**Smartphone (please complete the following information):**
- Device: [e.g. Pixel 3A]
- OS: [e.g. Android 11, Custom Rom]
- App Version [e.g. 4.0.0]
- App Version [e.g. 4.1.0]

**Screenshots**
If applicable, add screenshots to help explain your problem.
Expand Down
135 changes: 82 additions & 53 deletions data/src/main/assets/changelog.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,85 @@

[
{
"versionCode": 2227,
"versionName": "4.0.10-beta",
"added": [
"Send delayed sms immediately",
"Fully select message backgrounds in compose screen",
"Disable auto hyperlink (warn link on press)"
],
"fixed": [
"Scheduled messages click doesnt schedule",
"Fix update Attachment.kt",
"Fix 'take a photo' not working",
"Fix mms image compression bug not compressing",
"Fix bug that disabled download/view of mms attachments",
"Fix only images attached to forwarded messages",
"Fix strings in French Translation"
]
},
{
[
{
"versionCode": 2228,
"versionName": "4.1.0",
"added": [
"Icon to F-Droid",
"Context menu to save, share, forward, open externally",
"Speech-to-text option and new button",
"Quick voice message option",
"Allow editing of scheduled messages",
"Enable a delete/clear menu icon on compose screen",
"Scheduled message save attachments locally",
"Check to see if STT provider is available and if not abort process"
],
"fixed": [
"Gracefully handle a failure to get contact attachment data",
"Mms attachment view/share is suboptimal and other small fixups",
"Size of the icon.png",
"Npe in messagesadapter with out messages",
"Change from leave a review on Google Play to leave a star on github",
"Ingest attachments in standard manner",
"Race condition crash when deleting a message",
"Use bluetooth sco source device, if available, to record audio",
"Wrong string when long-pressing detail button",
"Bring scheduled messages activity into ui alignment with the rest of the app",
"Update attachment icon retrieve and manifest query to enable",
"upgrade glide library version",
"Remove extraneous controls on compose (sim and mic) when no reply possible",
"Copyright Date",
"Backup and Restore being unable to read file",
"Replace QUIK hero image in README.md repo"
]
},
{
"versionCode": 2227,
"versionName": "4.0.10-beta",
"added": [
"Send delayed sms immediately",
"Fully select message backgrounds in compose screen",
"Disable auto hyperlink (warn link on press)"
],
"fixed": [
"Scheduled messages click doesnt schedule",
"Fix update Attachment.kt",
"Fix 'take a photo' not working",
"Fix mms image compression bug not compressing",
"Fix bug that disabled download/view of mms attachments",
"Fix only images attached to forwarded messages",
"Fix strings in French Translation"
]
},
{
"versionCode": 2226,
"versionName": "4.0.9",
"added": [
"Basic speech to text for compose (and qkreply)",
"Text to speech",
"Add 'super' font size setting",
"Basic speech to text for compose (and qkreply) take 2",
"Make unread conversations float at the top of conversation lists",
"Select and copy a text part",
"Add 'super' font size setting - take 2",
"Main widget launch appropriate app activities",
"Change convo name from main convo activity",
"Play audio attachments",
"Select all on conversations and compose screens. New compose 'show status' option",
"Build on pull request",
"Update French translation",
"Changes to allow attaching *any* type of file",
"Update French translation"
],
"fixed": [
"Bug fix for motion events being used after recycled",
"Disable reply ability to non-replyable messages/conversations",
"Sort blocked messages by lastmessage.date desc",
"Fix fr strings from pr 226. Fixes build",
"Fix pr 225 render issue",
"Fix unblock number bug",
"Silent notifications if no recipients are a contact"
]
"added": [
"Basic speech to text for compose (and qkreply)",
"Text to speech",
"Add 'super' font size setting",
"Basic speech to text for compose (and qkreply) take 2",
"Make unread conversations float at the top of conversation lists",
"Select and copy a text part",
"Add 'super' font size setting - take 2",
"Main widget launch appropriate app activities",
"Change convo name from main convo activity",
"Play audio attachments",
"Select all on conversations and compose screens. New compose 'show status' option",
"Build on pull request",
"Update French translation",
"Changes to allow attaching *any* type of file",
"Update French translation"
],
"fixed": [
"Bug fix for motion events being used after recycled",
"Disable reply ability to non-replyable messages/conversations",
"Sort blocked messages by lastmessage.date desc",
"Fix fr strings from pr 226. Fixes build",
"Fix pr 225 render issue",
"Fix unblock number bug",
"Silent notifications if no recipients are a contact"
]
},
{
{
"versionCode": 2225,
"versionName": "4.0.8",
"fixed": [
Expand Down Expand Up @@ -78,10 +109,8 @@
{
"versionCode": 2222,
"versionName": "4.0.5",
"fixed": [
],
"removed": [
]
"fixed": [],
"removed": []
},
{
"versionCode": 2221,
Expand Down Expand Up @@ -389,4 +418,4 @@
"Search hint gets cut off after rotating screen"
]
}
]
]
6 changes: 3 additions & 3 deletions presentation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ android {
applicationId 'dev.octoshrimpy.quik'
minSdkVersion 23
targetSdkVersion 33
versionCode 2227
versionName '4.0.10'
versionCode 2228
versionName '4.1.0'
setProperty("archivesBaseName", "QUIK-v${versionName}")
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

setProperty("archivesBaseName", "QUIK-v${versionName}")
versionNameSuffix '-beta'
// versionNameSuffix '-beta'
}

signingConfigs {
Expand Down
2 changes: 1 addition & 1 deletion presentation/src/main/res/layout/settings_controller.xml
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
android:layout_height="wrap_content"
app:icon="@drawable/ic_info_black_24dp"
app:title="@string/settings_about_title"
tools:summary="Version 3.0.7" />
tools:summary="@string/settings_version" />

</LinearLayout>

Expand Down
Loading