| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 6bf7384 commit bd8133c
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,7 +14,7 @@ android { | |||
| 14 | 14 | defaultConfig { | |
| 15 | 15 | applicationId = "com.httpsms" | |
| 16 | 16 | minSdk = 28 | |
| 17 | - targetSdk = 35 | ||
| 17 | + targetSdk = 36 | ||
| 18 | 18 | versionCode = 1 | |
| 19 | 19 | versionName = gitHash.getOrElse("unknown") | |
| 20 | 20 | testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -31,7 +31,7 @@ | |||
| 31 | 31 | android:roundIcon="@mipmap/ic_launcher_round" | |
| 32 | 32 | android:supportsRtl="true" | |
| 33 | 33 | android:theme="@style/Theme.HttpSMS" | |
| 34 | - tools:targetApi="31"> | ||
| 34 | + tools:targetApi="36"> | ||
| 35 | 35 | <activity | |
| 36 | 36 | android:name=".MainActivity" | |
| 37 | 37 | android:screenOrientation="portrait" | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,6 +16,7 @@ | |||
| 16 | 16 | <v-col cols="12" md="8" offset-md="2" xl="6" offset-xl="3"> | |
| 17 | 17 | <v-form @submit.prevent="sendMessage"> | |
| 18 | 18 | <v-text-field | |
| 19 | + persistent-placeholder | ||
| 19 | 20 | v-model="formPhoneNumber" | |
| 20 | 21 | :disabled="sending" | |
| 21 | 22 | :error="errors.has('to')" | |
@@ -25,6 +26,7 @@ | |||
| 25 | 26 | label="Phone Number" | |
| 26 | 27 | ></v-text-field> | |
| 27 | 28 | <v-textarea | |
| 29 | + persistent-placeholder | ||
| 28 | 30 | v-model="formContent" | |
| 29 | 31 | :error="errors.has('content')" | |
| 30 | 32 | :error-messages="errors.get('content')" | |
@@ -34,14 +36,18 @@ | |||
| 34 | 36 | label="Content" | |
| 35 | 37 | ></v-textarea> | |
| 36 | 38 | <v-textarea | |
| 39 | + persistent-placeholder | ||
| 40 | + persistent-hint | ||
| 37 | 41 | v-model="formAttachments" | |
| 38 | 42 | :error="errors.has('attachments')" | |
| 39 | 43 | :error-messages="errors.get('attachments')" | |
| 40 | 44 | :disabled="sending" | |
| 41 | 45 | outlined | |
| 42 | 46 | rows="2" | |
| 47 | + class="mb-8" | ||
| 48 | + hint="Your message will be sent as an MMS when the comma separated list of attachment URL's are present" | ||
| 43 | 49 | placeholder="https://example.com/image.jpg, https://example.com/video.mp4" | |
| 44 | - label="Attachment URLs (comma separated, optional)" | ||
| 50 | + label="Attachment URLs (optional)" | ||
| 45 | 51 | ></v-textarea> | |
| 46 | 52 | <v-btn | |
| 47 | 53 | type="submit" | |
| Back | FazBrowse Home | New Git URL |
0 commit comments