bmarty
b179518962
Sync Strings from Localazy
2 weeks ago
Benoit Marty
8db9c22f97
Remove dependencies to other presenters to AnalyticsPreferencesPresenter.
4 weeks ago
bmarty
e25ba65170
Sync Strings from Localazy
4 weeks ago
bmarty
bb0a281342
Sync Strings from Localazy
2 months ago
Benoit Marty
f61df38e55
Migrate license to AGPL.
...
Run script `uv run license-editor --repository ../element-x-android`
2 months ago
bmarty
3e67448006
Sync Strings from Localazy
3 months ago
bmarty
76804d9e48
Sync Strings from Localazy
3 months ago
ElementBot
1f01bd73c4
Sync Strings ( #3232 )
...
Co-authored-by: bmarty <3940906+bmarty@users.noreply.github.com>
3 months ago
jmartinesp
dabaa2d265
Sync Strings from Localazy
4 months ago
Jorge Martin Espinosa
b0cebf5ca0
Improve screenshot testing with ComposablePreviewScanner ( #3125 )
...
* Use ComposablePreviewScanner to rework how screenshot testing works
* Add test sharding
* Update screenshots
* Fixes for Element Gallery
---------
Co-authored-by: ElementBot <benoitm+elementbot@element.io>
Co-authored-by: Benoit Marty <benoit@matrix.org>
4 months ago
bmarty
f3d286911c
Sync Strings from Localazy
5 months ago
bmarty
ca5bc71057
Sync Strings from Localazy
5 months ago
Benoit Marty
b3e0f6e843
Translations: pt -> pt-rBR
5 months ago
bmarty
83a8a631f2
Sync Strings from Localazy
6 months ago
bmarty
0910da0a14
Sync Strings from Localazy
6 months ago
bmarty
68fdaef8b8
Sync Strings from Localazy
6 months ago
bmarty
c021809479
Sync Strings from Localazy
8 months ago
bmarty
5c8be8f61f
Sync Strings from Localazy
8 months ago
Benoit Marty
b9933acf98
Sync Localazy strings - including post treatment.
...
./tools/localazy/downloadStrings.sh --all
8 months ago
Benoit Marty
a7e38f0925
Sync Localazy strings.
...
./tools/localazy/downloadStrings.sh --all
8 months ago
bmarty
03c95555e3
Sync Strings from Localazy
9 months ago
ElementBot
6bc080c279
Sync Strings ( #2230 )
...
Co-authored-by: bmarty <bmarty@users.noreply.github.com>
10 months ago
renovate[bot]
c8bd362397
Update plugin ktlint to v12.1.0 ( #2200 )
...
* Update plugin ktlint to v12.1.0
* Run `./gradlew ktlintFormat` and fix some issues manually.
* Fix other issues reproted by Ktlint
* Limit false positives, KtLint removes unnecessary curly brace in String templates.
* Remove useless Unit
* Minor improvements over ktlint changes
* Restore `AlertDialogContent` behaviour
* Update screenshots
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Benoit Marty <benoit@matrix.org>
Co-authored-by: Jorge Martín <jorgem@element.io>
Co-authored-by: ElementBot <benoitm+elementbot@element.io>
10 months ago
bmarty
e6f4a7364f
Sync Strings from Localazy
10 months ago
Benoit Marty
c8532a8dd6
Move Config object to the config module and rename to AnalyticsConfig
11 months ago
Benoit Marty
39cca2ce09
Sync localazy using fixed script
11 months ago
Benoit Marty
24d3981261
Run the script again.
11 months ago
bmarty
fced91addb
Sync Strings from Localazy
11 months ago
Benoit Marty
d9f5fdccbc
Localazy: move some strings to the `:features:analytics:api` module.
12 months ago
Benoit Marty
0e4c146e87
Detekt: Rename `DayNightPreviews` to `PreviewsDayNight` to follow naming convention.
...
MultiPreview annotations should start with `Previews` as prefix
1 year ago
Benoit Marty
2819448cd4
Use `DayNightPreview`
1 year ago
Benoit Marty
ed1c1b5048
Compact the code and reorder vals for code clarity
1 year ago
Benoit Marty
1b87565870
Remove unused lambda parameter. The link is opened by the LocalUriHandler now.
1 year ago
Jorge Martín
c3f49a2451
Split link text into a `ListSupportingText` component.
...
This also requires some internal changes to `ListSupportingText`, `ClickableLinkText` and `TimelineTextView` to match the behaviour and design.
1 year ago
Benoit Marty
ece82203eb
Fix style (typo and color) for supporting content.
1 year ago
Benoit Marty
7537772d94
format.
1 year ago
Benoit Marty
a86100003f
Remove preview Text.
1 year ago
Benoit Marty
79af05bc08
Use buildAnnotatedStringWithStyledPart and remove copied code.
1 year ago
Benoit Marty
ff47629f6c
Make the link open the policy url in the analytics setting screen.
1 year ago
Benoit Marty
1bf2dc1c4d
Fix rendering issue of the link.
1 year ago
Benoit Marty
24fc2e77b9
Format.
1 year ago
Benoit Marty
097efc26d2
Migrate AnalyticsPreferencesView from `PreferenceSwitch` to `ListItem`.
1 year ago
yostyle
69905afbd9
Rebase on develop and refactoring
1 year ago
yostyle
d1f147d675
Add view
1 year ago
Benoit Marty
6aa5239189
Enable detekt rule `PreviewPublic` and fix existing issues.
1 year ago
Marco Romano
ca695ca077
Revert "Auto generate dark mode previews and screenshots ( #776 )" ( #784 )
...
This reverts commit fd467c2451
.
1 year ago
Marco Romano
fd467c2451
Auto generate dark mode previews and screenshots ( #776 )
...
With this change, composable previews and screenshots should be created with just:
```
@ElementPreviews
@Composable
fun MyViewPreview() {
ElementPreview {
MyView()
}
}
```
- Adds `@ElementPreviews` which is a shorthand for:
```
@Preview(name = "D")
@Preview(name = "N", uiMode = Configuration.UI_MODE_NIGHT_YES)
```
Should be used in connection with the now public `fun ElementPreview()` composable.
- Adds ElementPreviews to previewAnnotations in dangerfile
- Screenshots of night mode previews are now rendered with night mode
- Replaces `ElementPreviewLight` and `ElementThemedPreview` with `ElementPreview`
- Deprecates `ElementPreviewDark` which should be removed.
- Remaining usages of `ElementPreviewDark` are now ignored during screenshot tests
1 year ago
Benoit Marty
43af57c170
Improve rendering of preference anaytics screen.
1 year ago
Benoit Marty
b6f977c032
Change hierarchy of settings.
1 year ago
Benoit Marty
011f7a1064
Rename `ElementX` to `Element X`. Only for user facing value. In the doc I prefer to keep `ElementX`.
1 year ago