Skip to content

Commit

Permalink
Release 2024.10.29
Browse files Browse the repository at this point in the history
  • Loading branch information
nain-F49FF806 committed Oct 29, 2024
1 parent 0c0325e commit c31f8e6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
applicationId = "alt.nainapps.sharepaste"
minSdk = 26
targetSdk = 35
versionCode = 1730223000
versionCode = 1730225000
versionName = "2024.10.29"
setProperty("archivesBaseName", "sharepaste.oo")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.rememberCoroutineScope
import androidx.compose.runtime.saveable.rememberSaveable
import androidx.compose.runtime.setValue
Expand Down Expand Up @@ -64,7 +63,6 @@ fun EncryptAndShareUI(
var openDiscussion by rememberSaveable { mutableStateOf(false) }
var errorString by rememberSaveable { mutableStateOf("") }
val coroutineScope = rememberCoroutineScope()
var textFieldHeight: Int? by remember { mutableStateOf(null) }

Column(
modifier =
Expand All @@ -76,6 +74,7 @@ fun EncryptAndShareUI(
horizontalAlignment = Alignment.CenterHorizontally
) {
val density = LocalDensity.current
var textFieldHeight: Int? by rememberSaveable { mutableStateOf(null) }
OutlinedTextField(
value = textToEncrypt,
onValueChange = { textToEncrypt = it },
Expand All @@ -88,7 +87,6 @@ fun EncryptAndShareUI(
},
singleLine = false,
minLines = 3,

modifier = Modifier
.fillMaxWidth()
.onSizeChanged { textFieldHeight = it.height },
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
##
## 2024.10.29

* Add Paste format toggle icon
* Use upstream pbcli
* Update dependencies
* Use upstream pbcli rust code
- which now include our uniffi bindings contribution!
* Allow changing paste format manually with cute format toggle icon
* Update and fix test

## 2024.10.21

Expand Down

0 comments on commit c31f8e6

Please sign in to comment.