This commit is contained in:
Thibault Deckers 2024-05-03 00:38:48 +02:00
parent c21f89b9e8
commit 2ed9815c38
15 changed files with 8 additions and 26 deletions

View file

@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
### Added
- Collection: `select all` available as quick action
- Persian translation (thanks امیر جهانگرد, slasb37, mimvahedi, Alireza Rashidi)
## <a id="v1.11.0"></a>[v1.11.0] - 2024-05-01

View file

@ -60,15 +60,6 @@ android {
disable 'InvalidPackage'
}
packagingOptions {
jniLibs {
// The Amazon Developer console mistakenly considers the app to not be 64-bit compatible
// if there are some libs in `lib/armeabi-v7a` unmatched by libs in `lib/arm64-v8a`,
// so we exclude the extra `neon` libs bundled by `FFmpegKit`.
excludes += ['lib/armeabi-v7a/*_neon.so']
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 278 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 495 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 KiB

View file

@ -83,6 +83,10 @@ class Contributors {
Contributor('wanzh', 'wanzh66666@gmail.com'),
Contributor('ID J', 'tabby4442@gmail.com'),
Contributor('randint', 'lancameb@hotmail.com'),
Contributor('امیر جهانگرد', 'ijahangard.a@gmail.com'),
Contributor('slasb37', 'p84haghi@gmail.com'),
Contributor('mimvahedi', 'vahedi0vahedi@gmail.com'),
Contributor('Alireza Rashidi', 'alirezarashidigoorabi@gmail.com'),
// Contributor('Alvi Khan', 'aveenalvi@gmail.com'), // Bengali
// Contributor('Htet Oo Hlaing', 'htetoh2006@outlook.com'), // Burmese
// Contributor('Khant', 'khant@users.noreply.hosted.weblate.org'), // Burmese
@ -96,10 +100,6 @@ class Contributors {
// Contributor('Rasti K5', 'rasti.khdhr@gmail.com'), // Kurdish (Central)
// Contributor('Raman', 'xysed@tutanota.com'), // Malayalam
// Contributor('Subham Jena', 'subhamjena8465@gmail.com'), // Odia
// Contributor('امیر جهانگرد', 'ijahangard.a@gmail.com'), // Persian
// Contributor('slasb37', 'p84haghi@gmail.com'), // Persian
// Contributor('mimvahedi', 'vahedi0vahedi@gmail.com'), // Persian
// Contributor('Alireza Rashidi', 'alirezarashidigoorabi@gmail.com'), // Persian
// Contributor('Prasanta-Hembram', 'Prasantahembram720@gmail.com'), // Santali
// Contributor('mytja', 'mamnju21@gmail.com'), // Slovenian
// Contributor('Shift18', 'bribable.lawyer@posteo.net'), // Swedish

View file

@ -6,6 +6,7 @@ import 'package:aves/widgets/about/title.dart';
import 'package:aves/widgets/common/basic/text/change_highlight.dart';
import 'package:aves/widgets/common/extensions/build_context.dart';
import 'package:collection/collection.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
class AboutTranslators extends StatelessWidget {
@ -108,7 +109,7 @@ class _RandomTextSpanHighlighterState extends State<_RandomTextSpanHighlighter>
children: [
...widget.spans.expandIndexed((i, v) => [
if (i != 0) const TextSpan(text: AText.separator),
TextSpan(text: v, style: i == _highlightedIndex ? _animatedStyle.value : _baseStyle),
TextSpan(text: '${Unicode.FSI}$v${Unicode.PDI}', style: i == _highlightedIndex ? _animatedStyle.value : _baseStyle),
])
],
),

View file

@ -61,7 +61,6 @@ class AvesApp extends StatefulWidget {
'bn', // Bengali
'ckb', // Kurdish (Central)
'da', // Danish
'fa', // Persian
'fi', // Finnish
'gl', // Galician
'he', // Hebrew

View file

@ -12,6 +12,7 @@ class SupportedLocales {
'en': 'English',
'es': 'Español (México)',
'eu': 'Euskara',
'fa': 'فارسی',
'fr': 'Français',
'hu': 'Magyar',
'id': 'Bahasa Indonesia',

View file

@ -7,7 +7,6 @@ fi
# - scaled down versions for IzzyOnDroid
# - framed versions for Google Play
# - framed and scaled down versions for README (English only)
# - framed and scaled down versions for Amazon (English only)
# expects:
# - ImageMagick 6
@ -82,13 +81,3 @@ for source in framed/en/*; do
convert -resize 250x "$source" "$target"
fi
done
# amazon: scale down
for source in framed/en/*; do
if [[ -f "$source" ]]; then
target=${source/framed/amazon}
echo "$source -> $target"
mkdir -p "$(dirname "$target")"
convert -resize x1920 "$source" -gravity center -background transparent -extent 1200x1920 "$target"
fi
done