Beta screen visual tweaks

This commit is contained in:
Stef Tervelde
2025-03-14 12:58:53 +01:00
parent 081c7eccf1
commit c904d55b69
3 changed files with 13 additions and 10 deletions
+5
View File
@@ -0,0 +1,5 @@
<svg width="900" height="900" viewBox="0 0 900 900" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M456.735 552.393L155.9 151.279" stroke="#A44D28" stroke-width="150.418"/>
<path d="M757.575 452.113C456.738 552.391 456.738 752.948 155.903 652.67" stroke="#FF7D45" stroke-width="150.418"/>
<path d="M556.832 552.392L456.555 51" stroke="#FFBEA2" stroke-width="150.418"/>
</svg>

After

Width:  |  Height:  |  Size: 386 B

+7 -9
View File
@@ -101,36 +101,34 @@ class WelcomeToBeta {
){
val locale = LocalLocale.current
Image(
painter = painterResource("logo.svg"),
painter = painterResource("bird.svg"),
contentDescription = locale["beta.logo"],
modifier = Modifier
.align(Alignment.CenterVertically)
.size(100.dp, 100.dp)
.offset(0.dp, (-25).dp)
)
Column(
modifier = Modifier
.fillMaxHeight(),
verticalArrangement = Arrangement
.spacedBy(
MaterialTheme.typography.subtitle1.lineHeight.value.dp,
10.dp,
alignment = Alignment.CenterVertically
)
) {
Text(
text = locale["beta.title"],
style = MaterialTheme.typography.subtitle1,
style = typography.subtitle1,
)
val text = locale["beta.message"]
.replace('$' + "version", getVersionName())
.replace('$' + "revision", getRevision().toString())
Markdown(
text,
colors = markdownColor(
text = colors.onSurface,
linkText = colors.primary,
),
typography = markdownTypography(text = typography.body1),
modifier = Modifier.background(Color.Transparent)
colors = markdownColor(),
typography = markdownTypography(text = typography.body1, link = typography.body1.copy(color = colors.primary)),
modifier = Modifier.background(Color.Transparent).padding(bottom = 10.dp)
)
Row {
Spacer(modifier = Modifier.weight(1f))
+1 -1
View File
@@ -618,7 +618,7 @@ update_check.updates_available.contributions = There are updates available for s
# Beta
beta.window.title = Welcome to Beta
beta.title = Thanks for testing this Processing Beta!
beta.message = This preview release lets us gather feedback and fix issues before the final version. Some features may not work as expected. If you encounter problems, [please post on the forum](https://discourse.processing.org) or [open a GitHub issue](https://github.com/processing/processing4/issues). \n\n [What's new in this release?](https://github.com/processing/processing4/releases/tag/processing-$revision-$version)
beta.message = This preview release lets us gather feedback and fix issues before the final version. **Some features may not work as expected.** If you encounter problems, [please post on the forum](https://discourse.processing.org) or [open a GitHub issue](https://github.com/processing/processing4/issues).
beta.button = Ok
# ---------------------------------------