Compare commits

...

3 Commits

Author SHA1 Message Date
dom
8ad130567e Release 2.0.2
Signed-off-by: dom <githubaccount56556@proton.me>
2026-03-31 18:25:39 +08:00
dom
7eb21bc5a2 build
Signed-off-by: dom <githubaccount56556@proton.me>
2026-03-31 18:24:02 +08:00
dom
ea4316a847 opt ui
Signed-off-by: dom <githubaccount56556@proton.me>
2026-03-31 16:57:12 +08:00
3 changed files with 18 additions and 9 deletions

View File

@@ -181,21 +181,23 @@ class AuthorPanel extends StatelessWidget {
Positioned( Positioned(
top: 0, top: 0,
right: 0, right: 0,
height: height, bottom: 0,
child: CachedNetworkImage( child: Center(
height: height, child: CachedNetworkImage(
memCacheHeight: height.cacheSize(context), height: height,
imageUrl: ImageUtils.safeThumbnailUrl( memCacheHeight: height.cacheSize(context),
moduleAuthor.decorate!.cardUrl, imageUrl: ImageUtils.safeThumbnailUrl(
moduleAuthor.decorate!.cardUrl,
),
placeholder: (_, _) => const SizedBox.shrink(),
), ),
placeholder: (_, _) => const SizedBox.shrink(),
), ),
), ),
if (moduleAuthor.decorate!.fan?.numStr?.isNotEmpty == true) if (moduleAuthor.decorate!.fan?.numStr?.isNotEmpty == true)
Positioned( Positioned(
top: 0, top: 0,
bottom: 0,
right: height, right: height,
height: height,
child: Center( child: Center(
child: Text( child: Text(
moduleAuthor.decorate!.fan!.numStr!.toString(), moduleAuthor.decorate!.fan!.numStr!.toString(),

View File

@@ -73,3 +73,10 @@ foreach ($patch in $patches) {
Write-Host "$patch applied" Write-Host "$patch applied"
} }
} }
# TODO: remove
if ($platform.ToLower() -eq "android") {
"69e31205362b4e59b7eb89b24797e687b4b67afe" | Set-Content -Path .\bin\internal\engine.version
Remove-Item -Path ".\bin\cache" -Recurse -Force
flutter --version
}

View File

@@ -17,7 +17,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# In Windows, build-name is used as the major, minor, and patch parts # In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix. # of the product and file versions while build-number is used as the build suffix.
# update when release # update when release
version: 2.0.1+1 version: 2.0.2+1
environment: environment:
sdk: ">=3.10.0" sdk: ">=3.10.0"