3fda5649c3
Build Docker images with Sentry / Build release image with Sentry (push) Failing after 1m59s
Release / Release (android, ubuntu-latest) (push) Failing after 38m31s
Release / Release (ios, macos-14) (push) Has been cancelled
Integration tests / Run integration tests for mobile apps (push) Failing after 15s
Build dev binaries / Build app (ios, macos-14) (push) Waiting to run
Build dev binaries / Build app (android, ubuntu-latest) (push) Failing after 34m13s
Tier 1+2 - web/UI user-facing:
- Replace all visible "Twake Mail" / "Linagora" with "Workavia Mail"
- Swap 3 logo SVGs (icon kept, wordmark replaced via SVG <text>)
- Splash: replace icon_twp.png with HTML <div>Workavia</div>
- Remove power_by_linagora.svg, replace with AGPL SourceLinkWidget
- Patch web/index.html, manifest.json, login/logout-callback HTMLs
- Patch all 16 ARB locales + scribe ARB + app_localizations.dart
- Patch 4 web/i18n/*.json (FR/EN/DE/VI smart banner titles)
- App grid reduced to "Mail" + "Calendar"
- User-Agent: Twake-Mail -> Workavia-Mail
Tier 3+4 - mobile native:
- Bundle ID: com.linagora.{android,ios}.teammail -> com.workavia.mail
- URL schemes consolidated: teammail.mobile/twakemail.mobile -> workaviamail.mobile
- Android: applicationId, namespace, AndroidManifest, strings.xml
- Android: move Kotlin sources com.linagora.android.tmail -> com.workavia.mail
- Android: empty branding.xml + android12branding.xml (vector text not patchable)
- iOS: Info.plist (CFBundleDisplayName/Name, schemes), Runner.entitlements
- iOS: TwakeMailNSE + TeamMailShareExtension entitlements + Info.plist
- iOS: Runner.xcodeproj (12x PRODUCT_BUNDLE_IDENTIFIER, 9x APP_GROUP_ID)
- iOS: TokenRefreshManager.swift redirect URLs
- iOS: fastlane Appfile + Matchfile
- Dart: oidc_constant, app_config keychain, notification MethodChannel
Known follow-ups (require user action):
- Apple Team ID KUT463DS29 (still Linagora) -> needs Workavia team for App Store
- Android branding.xml emptied: need PNG/path-converted wordmark for splash
- iOS sub-bundle paths (TwakeMailNSE/, TeamMailShareExtension/) on disk unchanged
- iOS App Store URL emptied; Play Store ID points to com.workavia.mail
69 lines
1.3 KiB
CSS
69 lines
1.3 KiB
CSS
.smart-banner {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 9999999; /* always above Flutter canvas */
|
|
left: 14px;
|
|
right: 14px;
|
|
border-radius: 10px;
|
|
background: linear-gradient(0deg, #FFFBFE 0%, #FFFBFE 100%), linear-gradient(0deg, rgba(122.19, 184.06, 255, 0.09) 0%, rgba(122.19, 184.06, 255, 0.09) 100%);
|
|
box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.16);
|
|
}
|
|
|
|
.banner-content {
|
|
padding-bottom: 18px;
|
|
display: block;
|
|
display: flex;
|
|
justify-content: left;
|
|
align-items: center;
|
|
}
|
|
|
|
.workavia-mail-icon {
|
|
margin-left: 12px;
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.button {
|
|
border: none;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
margin: 4px 2px;
|
|
cursor: pointer;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.close-icon {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 8px;
|
|
}
|
|
|
|
.open-button {
|
|
color: #007AFF;
|
|
font-size: 17px;
|
|
font-family: Inter;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
word-wrap: break-word;
|
|
margin-right: 24px;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.banner-title {
|
|
font-family: Inter;
|
|
word-wrap: break-word;
|
|
color: black;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 20px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.banner-description {
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
line-height: 16px;
|
|
font-family: Inter;
|
|
word-wrap: break-word;
|
|
color: black;
|
|
} |