Compare commits
3 Commits
69b446ee17
...
cb152ef78a
| Author | SHA1 | Date |
|---|---|---|
|
|
cb152ef78a | |
|
|
23ba95d326 | |
|
|
4f2f438b84 |
|
|
@ -95,9 +95,9 @@ class SakeBasicInfoSection extends ConsumerWidget {
|
||||||
child: Container(
|
child: Container(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 4),
|
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 4),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: badgeColor.withValues(alpha: 0.1),
|
color: badgeColor!.withValues(alpha: 0.1),
|
||||||
borderRadius: BorderRadius.circular(20),
|
borderRadius: BorderRadius.circular(20),
|
||||||
border: Border.all(color: badgeColor.withValues(alpha: 0.4)),
|
border: Border.all(color: badgeColor!.withValues(alpha: 0.4)),
|
||||||
),
|
),
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
# 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.
|
||||||
version: 1.0.34+41
|
version: 1.0.35+42
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.10.1
|
sdk: ^3.10.1
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,6 @@ $relName = "Ponshu Room $version ($dateStr)"
|
||||||
# APKの埋め込みバージョンと pubspec.yaml が一致するか確認
|
# APKの埋め込みバージョンと pubspec.yaml が一致するか確認
|
||||||
Write-Host " Checking APK version matches pubspec ($version+$buildNum)..." -ForegroundColor Gray
|
Write-Host " Checking APK version matches pubspec ($version+$buildNum)..." -ForegroundColor Gray
|
||||||
$firstApk = $apkFiles | Select-Object -First 1
|
$firstApk = $apkFiles | Select-Object -First 1
|
||||||
$apkInfo = & flutter.bat --version 2>$null
|
|
||||||
# aapt2 でバージョン確認(利用可能な場合)
|
# aapt2 でバージョン確認(利用可能な場合)
|
||||||
$aapt2 = Get-ChildItem "$env:LOCALAPPDATA\Android\Sdk\build-tools" -Recurse -Filter "aapt2.exe" -ErrorAction SilentlyContinue | Sort-Object FullName -Descending | Select-Object -First 1 -ExpandProperty FullName
|
$aapt2 = Get-ChildItem "$env:LOCALAPPDATA\Android\Sdk\build-tools" -Recurse -Filter "aapt2.exe" -ErrorAction SilentlyContinue | Sort-Object FullName -Descending | Select-Object -First 1 -ExpandProperty FullName
|
||||||
if ($aapt2) {
|
if ($aapt2) {
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
{
|
{
|
||||||
"date": "2026-04-12",
|
"date": "2026-04-15",
|
||||||
"name": "Ponshu Room 1.0.31 (2026-04-12)",
|
"name": "Ponshu Room 1.0.35 (2026-04-15)",
|
||||||
"version": "v1.0.31",
|
"version": "v1.0.35",
|
||||||
"apks": {
|
"apks": {
|
||||||
"eiji": {
|
"eiji": {
|
||||||
"lite": {
|
"lite": {
|
||||||
"url": "https://posimai-lab.tail72e846.ts.net/mai/ponshu-room-lite/releases/download/v1.0.31/ponshu_room_consumer_eiji.apk",
|
"url": "https://posimai-lab.tail72e846.ts.net/mai/ponshu-room-lite/releases/download/v1.0.35/ponshu_room_consumer_eiji.apk",
|
||||||
"size_mb": 89.1,
|
"size_mb": 89.1,
|
||||||
"filename": "ponshu_room_consumer_eiji.apk"
|
"filename": "ponshu_room_consumer_eiji.apk"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"maita": {
|
"maita": {
|
||||||
"lite": {
|
"lite": {
|
||||||
"url": "https://posimai-lab.tail72e846.ts.net/mai/ponshu-room-lite/releases/download/v1.0.31/ponshu_room_consumer_maita.apk",
|
"url": "https://posimai-lab.tail72e846.ts.net/mai/ponshu-room-lite/releases/download/v1.0.35/ponshu_room_consumer_maita.apk",
|
||||||
"size_mb": 89.1,
|
"size_mb": 89.1,
|
||||||
"filename": "ponshu_room_consumer_maita.apk"
|
"filename": "ponshu_room_consumer_maita.apk"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue