refactor: update splash screen colors and remove Weblate configuration

- Changed the dark splash screen color in pubspec.yaml and styles.xml to #0B0E14 for better aesthetics.
- Removed the weblate.yaml file to streamline localization management and eliminate unused configurations.
- Updated background images for night mode in Android and iOS to ensure consistency across platforms.
This commit is contained in:
cogwheel0
2025-10-05 01:07:05 +05:30
parent c98e4bf959
commit 3695b01232
6 changed files with 3 additions and 34 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 B

After

Width:  |  Height:  |  Size: 69 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 B

After

Width:  |  Height:  |  Size: 69 B

View File

@@ -6,7 +6,7 @@
<item name="android:windowFullscreen">false</item> <item name="android:windowFullscreen">false</item>
<item name="android:windowDrawsSystemBarBackgrounds">false</item> <item name="android:windowDrawsSystemBarBackgrounds">false</item>
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item> <item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
<item name="android:windowSplashScreenBackground">#000000</item> <item name="android:windowSplashScreenBackground">#0B0E14</item>
</style> </style>
<!-- Theme applied to the Android Window as soon as the process has started. <!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your This theme determines the color of the Android Window while your

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 B

After

Width:  |  Height:  |  Size: 69 B

View File

@@ -97,7 +97,7 @@ flutter:
flutter_native_splash: flutter_native_splash:
# Splash background matches the light theme; `color_dark` handles dark mode. # Splash background matches the light theme; `color_dark` handles dark mode.
color: "#FFFFFF" color: "#FFFFFF"
color_dark: "#000000" color_dark: "#0B0E14"
# Image to display on the splash screen # Image to display on the splash screen
image: assets/icons/icon.png image: assets/icons/icon.png
@@ -105,7 +105,7 @@ flutter_native_splash:
# Android specific settings # Android specific settings
android_12: android_12:
color: "#FFFFFF" color: "#FFFFFF"
color_dark: "#000000" color_dark: "#0B0E14"
# Web specific settings # Web specific settings
web: false web: false

View File

@@ -1,31 +0,0 @@
projects:
- name: Conduit
slug: conduit
components:
- name: Mobile App
slug: app
# Repository configuration
repository: https://github.com/cogwheel0/conduit.git
push: git@github.com:cogwheel0/conduit.git
branch: main
# Configure file discovery for Flutter ARB localization files.
filemask: lib/l10n/app_*.arb
template: lib/l10n/app_en.arb
new_base: lib/l10n/app_{language}.arb
base_language: en
file_format: arb
monolingual: true
# Prefer PRs from Weblate instead of direct pushes
pull_request: true
pull_request_title: "chore(l10n): {component} ({language_code})"
pull_request_body: |
Automated translation updates via Weblate for {component} ({language}).
- Source: {project}
- Component: {component}
- Language: {language} ({language_code})
This PR was generated automatically by Weblate.
commit_message: "chore(l10n): {component} ({language_code})"
# Optional: auto-add new languages when enabled in Weblate
add_new_languages: true