From 4e81c68bed69a680b9bfaa1539bf51aa7a7ebc0b Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 06:17:41 +0000 Subject: [PATCH 1/9] docs: define modern modular architecture for Aurora Store - Create ARCHITECTURE.md detailing Clean Architecture, tech stack, and modularization strategy. - Implement a skeleton project structure in 'aurora-next/' representing the new design. - Include modules for core-domain, core-data, core-network, core-database, core-installer, core-auth, core-navigation, and features. - Define common domain models, use case interfaces, and navigation contracts. - Establish patterns for unidirectional data flow (UDF) and typed error handling. --- ARCHITECTURE.md | 110 ++++++++++++++++++ .../com/aurora/next/auth/AuthManager.kt | 19 +++ .../aurora/next/domain/error/AppException.kt | 14 +++ .../com/aurora/next/domain/model/App.kt | 13 +++ .../domain/usecase/GetAppDetailsUseCase.kt | 8 ++ .../com/aurora/next/installer/AppInstaller.kt | 15 +++ .../aurora/next/navigation/AppDestination.kt | 23 ++++ 7 files changed, 202 insertions(+) create mode 100644 ARCHITECTURE.md create mode 100644 aurora-next/core-auth/src/main/kotlin/com/aurora/next/auth/AuthManager.kt create mode 100644 aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/error/AppException.kt create mode 100644 aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/model/App.kt create mode 100644 aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppDetailsUseCase.kt create mode 100644 aurora-next/core-installer/src/main/kotlin/com/aurora/next/installer/AppInstaller.kt create mode 100644 aurora-next/core-navigation/src/main/kotlin/com/aurora/next/navigation/AppDestination.kt diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md new file mode 100644 index 000000000..b79f81aa1 --- /dev/null +++ b/ARCHITECTURE.md @@ -0,0 +1,110 @@ +# App Store Architecture (Aurora-inspired) + +This document outlines a modern, clean, and modular architecture for an Android app store, similar to Aurora Store but optimized for current best practices. + +## Core Principles + +- **Clean Architecture**: Separation of concerns into Data, Domain, and Presentation layers. +- **Unidirectional Data Flow (UDF)**: Ensuring predictable state management. +- **Modularization**: Decoupling features and core components for better maintainability and build times. +- **Reactive Programming**: Extensive use of Coroutines and Kotlin Flow. + +## Tech Stack + +- **UI**: Jetpack Compose +- **Dependency Injection**: Hilt +- **Async & Streams**: Kotlin Coroutines & Flow +- **Persistence**: Room Database, DataStore (for simple settings) +- **Network**: Retrofit / OkHttp +- **Background Tasks**: WorkManager +- **Image Loading**: Coil +- **Testing**: JUnit, MockK, Turbine (for Flow testing), Espresso / Compose Test Rule + +## High-Level Architecture + +The project is divided into several modules: + +### 1. Presentation Layer (UI & ViewModels) + +- **:ui-common**: Shared Compose components (stateless), themes (colors, typography), and UI utilities. **Must not** contain business logic or ViewModels. +- **:feature-home**: Main discovery screen, categorized app lists. +- **:feature-details**: Detailed app information, screenshots, reviews, and trackers. +- **:feature-search**: Search functionality and suggestions. +- **:feature-updates**: List of installed apps with available updates. +- **:feature-downloads**: Download manager UI. Observes download states from `:core-data`. +- **:feature-settings**: App configurations, account management, and spoofing. + +### 2. Domain Layer (Business Logic) + +- **:core-domain**: Definitions of models, UseCases (e.g., `GetAppDetailsUseCase`, `InstallAppUseCase`), and typed Error types (`AppException`). This layer is pure Kotlin/Java and contains no Android dependencies. + +### 3. Data Layer (Implementation) + +- **:core-data**: Repositories implementing Domain interfaces. Orchestrates data from local and remote sources. Owns the mapping between Data DTOs/Entities and Domain Models. +- **:core-network**: API clients and network models (DTOs). +- **:core-database**: Room DAO and Entity definitions. +- **:core-installer**: Abstractions and implementations for app installation (Session, Root, Shizuku). +- **:core-auth**: Management of Google/Anonymous accounts, token refreshing, and auth state (`Flow`). + +### 4. Navigation + +- **:core-navigation**: Defines the navigation contract, route classes (e.g., using Type-Safe Navigation), and deep link handling. Prevents feature modules from depending on each other. + +## Component Interaction + +```mermaid +graph TD + subgraph UI [Presentation Layer] + Compose[Jetpack Compose UI] + VM[ViewModel] + end + + subgraph Domain [Domain Layer] + UC[UseCases] + Models[Domain Models] + end + + subgraph Data [Data Layer] + Repo[Repository] + Auth[Auth Service] + Local[Room Database] + Remote[Network API] + Installer[Installer Service] + end + + Compose --> VM + VM --> UC + UC --> Repo + UC --> Installer + Repo --> Local + Repo --> Remote + Repo --> Auth +``` + +## Data Flow (UDF) + +1. **User Action**: User interacts with a Compose component (e.g., clicks "Install"). +2. **ViewModel Event**: The UI notifies the ViewModel. +3. **UseCase Execution**: The ViewModel invokes a UseCase. +4. **Operation Coordination**: The UseCase coordinates between Repository (for metadata/URLs) and Installer (for the actual installation). +5. **State Update**: Data flows back as `Flow>`. The ViewModel transforms this into a UI State (StateFlow). +6. **UI Re-composition**: Compose observes the UI State and updates the interface. + +## Error Handling + +A sealed `AppResult` and `AppException` strategy is used in the Domain layer to ensure typed, predictable error handling across the app. + +## App Installation Strategy + +The `:core-installer` module provides a unified interface `AppInstaller`. Different implementations handle various environments: + +- **SessionInstaller**: Uses Android's PackageInstaller (Standard/Native). +- **RootInstaller**: Uses su commands for silent installation. +- **ShizukuInstaller**: Leverages the Shizuku API for rootless silent installation. + +## Background Operations + +**WorkManager** is used for: +- Long-running downloads (managed by `:core-data`). +- Periodic update checks. +- Metadata caching. diff --git a/aurora-next/core-auth/src/main/kotlin/com/aurora/next/auth/AuthManager.kt b/aurora-next/core-auth/src/main/kotlin/com/aurora/next/auth/AuthManager.kt new file mode 100644 index 000000000..1d3c177a1 --- /dev/null +++ b/aurora-next/core-auth/src/main/kotlin/com/aurora/next/auth/AuthManager.kt @@ -0,0 +1,19 @@ +package com.aurora.next.auth + +import kotlinx.coroutines.flow.StateFlow + +interface AuthManager { + val authState: StateFlow + suspend fun loginAnonymous() + suspend fun loginGoogle(email: String, token: String) + suspend fun logout() +} + +sealed class AuthState { + object Unauthenticated : AuthState() + object Authenticating : AuthState() + data class Authenticated(val account: Account) : AuthState() +} + +data class Account(val email: String, val token: String, val type: AccountType) +enum class AccountType { GOOGLE, ANONYMOUS } diff --git a/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/error/AppException.kt b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/error/AppException.kt new file mode 100644 index 000000000..ec02c336e --- /dev/null +++ b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/error/AppException.kt @@ -0,0 +1,14 @@ +package com.aurora.next.domain.error + +sealed class AppException : Exception() { + object NetworkUnavailable : AppException() + data class InstallationFailed(val code: Int, val message: String) : AppException() + object AuthExpired : AppException() + data class Unknown(override val message: String) : AppException() +} + +sealed class AppResult { + data class Success(val data: T) : AppResult() + data class Error(val exception: AppException) : AppResult() + object Loading : AppResult() +} diff --git a/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/model/App.kt b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/model/App.kt new file mode 100644 index 000000000..5696107b7 --- /dev/null +++ b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/model/App.kt @@ -0,0 +1,13 @@ +package com.aurora.next.domain.model + +data class App( + val id: String, + val name: String, + val packageName: String, + val description: String, + val iconUrl: String, + val version: String, + val size: Long, + val isInstalled: Boolean = false, + val hasUpdate: Boolean = false +) diff --git a/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppDetailsUseCase.kt b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppDetailsUseCase.kt new file mode 100644 index 000000000..2286b990b --- /dev/null +++ b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppDetailsUseCase.kt @@ -0,0 +1,8 @@ +package com.aurora.next.domain.usecase + +import com.aurora.next.domain.model.App +import kotlinx.coroutines.flow.Flow + +interface GetAppDetailsUseCase { + operator fun invoke(packageName: String): Flow +} diff --git a/aurora-next/core-installer/src/main/kotlin/com/aurora/next/installer/AppInstaller.kt b/aurora-next/core-installer/src/main/kotlin/com/aurora/next/installer/AppInstaller.kt new file mode 100644 index 000000000..278745bc7 --- /dev/null +++ b/aurora-next/core-installer/src/main/kotlin/com/aurora/next/installer/AppInstaller.kt @@ -0,0 +1,15 @@ +package com.aurora.next.installer + +import kotlinx.coroutines.flow.Flow + +interface AppInstaller { + fun install(packagePath: String): Flow + fun uninstall(packageName: String): Flow +} + +sealed class InstallStatus { + object Idle : InstallStatus() + data class Progress(val percentage: Float) : InstallStatus() + object Success : InstallStatus() + data class Failure(val error: String) : InstallStatus() +} diff --git a/aurora-next/core-navigation/src/main/kotlin/com/aurora/next/navigation/AppDestination.kt b/aurora-next/core-navigation/src/main/kotlin/com/aurora/next/navigation/AppDestination.kt new file mode 100644 index 000000000..54438c3c6 --- /dev/null +++ b/aurora-next/core-navigation/src/main/kotlin/com/aurora/next/navigation/AppDestination.kt @@ -0,0 +1,23 @@ +package com.aurora.next.navigation + +import kotlinx.serialization.Serializable + +sealed interface AppDestination { + @Serializable + object Home : AppDestination + + @Serializable + data class Details(val packageName: String) : AppDestination + + @Serializable + object Search : AppDestination + + @Serializable + object Updates : AppDestination + + @Serializable + object Downloads : AppDestination + + @Serializable + object Settings : AppDestination +} From 496de608474146c8415479b9560f2c8467cf66da Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 06:51:02 +0000 Subject: [PATCH 2/9] feat: implement Aurora Next MVP architecture and features - Set up modular Gradle build system for 'aurora-next' modules. - Implement 'core-domain' with App model, GetAppsUseCase, GetAppDetailsUseCase, and typed AppException. - Implement 'core-network' with mock PlayApiService and Hilt DI. - Implement 'core-data' with AppRepository implementation and DTO mappers. - Implement 'core-navigation' with type-safe route definitions. - Implement 'feature-home' with HomeScreen and HomeViewModel for app discovery. - Implement 'feature-details' with DetailsScreen and DetailsViewModel for app information. - Implement 'app' module as the main entry point with NavHost and Hilt Application. - Ensure all modules are configured for Java 17/Kotlin 17 and build successfully. --- aurora-next/app/build.gradle.kts | 64 ++++++++++ aurora-next/app/src/main/AndroidManifest.xml | 22 ++++ .../kotlin/com/aurora/next/AuroraNextApp.kt | 7 + .../kotlin/com/aurora/next/MainActivity.kt | 53 ++++++++ .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 4093 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 4093 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2546 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2546 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 5806 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 5806 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 9047 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 9047 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 12890 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 12890 bytes .../app/src/main/res/values/strings.xml | 3 + aurora-next/build.gradle.kts | 1 + aurora-next/core-auth/build.gradle.kts | 25 ++++ aurora-next/core-data/build.gradle.kts | 26 ++++ .../com/aurora/next/data/di/DataModule.kt | 17 +++ .../com/aurora/next/data/mapper/AppMapper.kt | 14 ++ .../next/data/repository/AppRepositoryImpl.kt | 21 +++ aurora-next/core-domain/build.gradle.kts | 27 ++++ .../aurora/next/domain/error/AppException.kt | 2 +- .../next/domain/usecase/AppRepository.kt | 9 ++ .../domain/usecase/GetAppDetailsUseCase.kt | 8 +- .../next/domain/usecase/GetAppsUseCase.kt | 11 ++ aurora-next/core-installer/build.gradle.kts | 25 ++++ aurora-next/core-navigation/build.gradle.kts | 23 ++++ aurora-next/core-network/build.gradle.kts | 27 ++++ .../com/aurora/next/network/api/AppDto.kt | 17 +++ .../aurora/next/network/api/PlayApiService.kt | 8 ++ .../next/network/api/PlayApiServiceImpl.kt | 22 ++++ .../aurora/next/network/di/NetworkModule.kt | 17 +++ aurora-next/feature-details/build.gradle.kts | 44 +++++++ .../next/feature/details/ui/DetailsScreen.kt | 120 ++++++++++++++++++ .../details/viewmodel/DetailsViewModel.kt | 46 +++++++ aurora-next/feature-home/build.gradle.kts | 40 ++++++ .../aurora/next/feature/home/ui/HomeScreen.kt | 92 ++++++++++++++ .../feature/home/viewmodel/HomeViewModel.kt | 39 ++++++ settings.gradle.kts | 31 ++--- 40 files changed, 837 insertions(+), 24 deletions(-) create mode 100644 aurora-next/app/build.gradle.kts create mode 100644 aurora-next/app/src/main/AndroidManifest.xml create mode 100644 aurora-next/app/src/main/kotlin/com/aurora/next/AuroraNextApp.kt create mode 100644 aurora-next/app/src/main/kotlin/com/aurora/next/MainActivity.kt create mode 100644 aurora-next/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 aurora-next/app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 aurora-next/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 aurora-next/app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 aurora-next/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 aurora-next/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 aurora-next/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 aurora-next/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 aurora-next/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 aurora-next/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 aurora-next/app/src/main/res/values/strings.xml create mode 100644 aurora-next/build.gradle.kts create mode 100644 aurora-next/core-auth/build.gradle.kts create mode 100644 aurora-next/core-data/build.gradle.kts create mode 100644 aurora-next/core-data/src/main/kotlin/com/aurora/next/data/di/DataModule.kt create mode 100644 aurora-next/core-data/src/main/kotlin/com/aurora/next/data/mapper/AppMapper.kt create mode 100644 aurora-next/core-data/src/main/kotlin/com/aurora/next/data/repository/AppRepositoryImpl.kt create mode 100644 aurora-next/core-domain/build.gradle.kts create mode 100644 aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/AppRepository.kt create mode 100644 aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppsUseCase.kt create mode 100644 aurora-next/core-installer/build.gradle.kts create mode 100644 aurora-next/core-navigation/build.gradle.kts create mode 100644 aurora-next/core-network/build.gradle.kts create mode 100644 aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/AppDto.kt create mode 100644 aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/PlayApiService.kt create mode 100644 aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/PlayApiServiceImpl.kt create mode 100644 aurora-next/core-network/src/main/kotlin/com/aurora/next/network/di/NetworkModule.kt create mode 100644 aurora-next/feature-details/build.gradle.kts create mode 100644 aurora-next/feature-details/src/main/kotlin/com/aurora/next/feature/details/ui/DetailsScreen.kt create mode 100644 aurora-next/feature-details/src/main/kotlin/com/aurora/next/feature/details/viewmodel/DetailsViewModel.kt create mode 100644 aurora-next/feature-home/build.gradle.kts create mode 100644 aurora-next/feature-home/src/main/kotlin/com/aurora/next/feature/home/ui/HomeScreen.kt create mode 100644 aurora-next/feature-home/src/main/kotlin/com/aurora/next/feature/home/viewmodel/HomeViewModel.kt diff --git a/aurora-next/app/build.gradle.kts b/aurora-next/app/build.gradle.kts new file mode 100644 index 000000000..9975c8970 --- /dev/null +++ b/aurora-next/app/build.gradle.kts @@ -0,0 +1,64 @@ +plugins { + alias(libs.plugins.android.application) + alias(libs.plugins.jetbrains.kotlin.android) + alias(libs.plugins.jetbrains.kotlin.compose) + alias(libs.plugins.hilt.android.plugin) + id("com.google.devtools.ksp") +} + +android { + namespace = "com.aurora.next" + compileSdk = 35 + + defaultConfig { + applicationId = "com.aurora.next" + minSdk = 26 + targetSdk = 35 + versionCode = 1 + versionName = "1.0.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") + } + } + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + kotlinOptions { + jvmTarget = "17" + } + + buildFeatures { + compose = true + } +} + +dependencies { + implementation(project(":aurora-next:core-domain")) + implementation(project(":aurora-next:core-data")) + implementation(project(":aurora-next:core-network")) + implementation(project(":aurora-next:core-navigation")) + implementation(project(":aurora-next:feature-home")) + implementation(project(":aurora-next:feature-details")) + + implementation(libs.androidx.core.ktx) + implementation(libs.androidx.lifecycle.process) + implementation(libs.androidx.activity.compose) + implementation(platform(libs.androidx.compose.bom)) + implementation(libs.androidx.ui) + implementation(libs.androidx.ui.graphics) + implementation(libs.androidx.ui.tooling.preview) + implementation(libs.androidx.material3) + implementation(libs.hilt.android.core) + ksp(libs.hilt.android.compiler) + implementation("androidx.hilt:hilt-navigation-compose:1.2.0") + implementation(libs.androidx.navigation.ui.ktx) +} diff --git a/aurora-next/app/src/main/AndroidManifest.xml b/aurora-next/app/src/main/AndroidManifest.xml new file mode 100644 index 000000000..8aa693394 --- /dev/null +++ b/aurora-next/app/src/main/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + diff --git a/aurora-next/app/src/main/kotlin/com/aurora/next/AuroraNextApp.kt b/aurora-next/app/src/main/kotlin/com/aurora/next/AuroraNextApp.kt new file mode 100644 index 000000000..b1ff5229f --- /dev/null +++ b/aurora-next/app/src/main/kotlin/com/aurora/next/AuroraNextApp.kt @@ -0,0 +1,7 @@ +package com.aurora.next + +import android.app.Application +import dagger.hilt.android.HiltAndroidApp + +@HiltAndroidApp +class AuroraNextApp : Application() diff --git a/aurora-next/app/src/main/kotlin/com/aurora/next/MainActivity.kt b/aurora-next/app/src/main/kotlin/com/aurora/next/MainActivity.kt new file mode 100644 index 000000000..8c70af7dc --- /dev/null +++ b/aurora-next/app/src/main/kotlin/com/aurora/next/MainActivity.kt @@ -0,0 +1,53 @@ +package com.aurora.next + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Surface +import androidx.compose.ui.Modifier +import androidx.hilt.navigation.compose.hiltViewModel +import androidx.navigation.compose.NavHost +import androidx.navigation.compose.composable +import androidx.navigation.compose.rememberNavController +import com.aurora.next.feature.home.ui.HomeScreen +import com.aurora.next.feature.details.ui.DetailsScreen +import com.aurora.next.navigation.AppDestination +import dagger.hilt.android.AndroidEntryPoint + +@AndroidEntryPoint +class MainActivity : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + setContent { + MaterialTheme { + Surface( + modifier = Modifier.fillMaxSize(), + color = MaterialTheme.colorScheme.background + ) { + val navController = rememberNavController() + NavHost( + navController = navController, + startDestination = AppDestination.Home + ) { + composable { + HomeScreen( + viewModel = hiltViewModel(), + onAppClick = { packageName -> + navController.navigate(AppDestination.Details(packageName)) + } + ) + } + composable { + DetailsScreen( + viewModel = hiltViewModel(), + onBack = { navController.popBackStack() } + ) + } + } + } + } + } + } +} diff --git a/aurora-next/app/src/main/res/mipmap-hdpi/ic_launcher.png b/aurora-next/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..6852989938e8fcfd1f4b134bf48e8f7f5b655b30 GIT binary patch literal 4093 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 literal 0 HcmV?d00001 diff --git a/aurora-next/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/aurora-next/app/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..6852989938e8fcfd1f4b134bf48e8f7f5b655b30 GIT binary patch literal 4093 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 literal 0 HcmV?d00001 diff --git a/aurora-next/app/src/main/res/mipmap-mdpi/ic_launcher.png b/aurora-next/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..5769c31fc0c36b9d5755267a7a63c01a6eea48a2 GIT binary patch literal 2546 zcmVkt$f_qCr6n zZuE?xx*jWVVFG?ZfO3R9e4Y|-xhUW6L&lOh!%l>{-g%V? zm}mm9K*+ObQg{{!xs2~Z=UC?=`rT+e<;unoer$1WzfR#INyuXw9sq3-a?OlyLdQCj zA-af8drsIqJVg27oR~rmelO%&L{7jNAv?m_K`cUWyIL1V$&>2v*S(_<= zSlkYcMgyr-igN`wks;6yxH{QF$p}tFTZ+q2vNIy?2@rBk4NkSW-v-l@b@*S|ZK&01 ztBA#7;)(k>@?{&A#hV7aPtZl>$EX?u1J8_m$P0ExNpad}r`7L=0TYtrdXPk9{~j?^ zDwTEh>u=tLsPY!%ayeS=w&TMr*?>cddV%BuV#CC|2fWZ*nv&!61wO|@d z%5A`{;6)`kRdd-9I+q&iv9Y8GYd^_DX?i|Ht4~7w$#JyqK7l(s@=>+s1S(dYw#vB` zg~(25_R$j-3k{?2B{u|)l4|z=KSsUJTiqwg1YzbKykA;`bp$k(wM2H67o$xgfl{f& z-TQ6WR&KkWRaS%(>%V|v!%=i?I_6fsTm21IaOA8f%wF0IGh)J;bLj5u++O%6$8?vu zBajkrCb6u*&TSIx&bxvGmn$8TQ(19f9l*+3nY7{QX&{*7@pBgj{30I|A!6JBO7(brmIGbW0#HrmJJYoCA{_ z1eOL@PZe-Yo$d&v@^xqyEBXaOr|p75oDYNIQvc@Zboe?~M(V!V0|B)%=&i4(IS7Qj zQ}U800(1v0JS#;{Pmj+)G&c^xTsjg=`O`2+PWU`eq0r*vj}#u8J4)c~H*%&s2n5ah z=4WIR>u_I%%-FkIPHKF&Z$P9Eh2(Bz`2nd!Htj{@Vt?kaq4)7X98Usn0A~26TB5n^uJ&z zu7j~Ln|NU~m_k1o8#Y1Tu>y@j}thVUUU3&c9ltz{(Vz`==JP zm59?LIIwU9#oVWrnD^&{uL$CdU7nh`)frmSSt?x`SE@9)aJCU&9j`}Tem#y|k>kJO z9;*~o=R$XO4453P>#^m!4)50J@WE9Z31`_Z zs>bcJvmhypB2C}JxzyRILTaMgT@y);m9Wr5)1vwLG<-(%Iab<_XV3rWcRx*tQZ{-z zQf94k-&QEJgos9ub~n=5*$RzX=C*yH=Uz`o%Gj`$rU}pdW|GT;J+walKZ7 z>vf%jl51Bxap>PNq$L_X#(q>tLk+?9g01;H_N1q$a-;t=b9-=7jMhNi<}Q@dNJ6hl z?H;tOT&8ndd6GFMGp#%cQJsdFuWbmW*!cYFk-j`yd?x7aGn;75rS2P^hq^AyrX?x1 z8-a84Hd9PqA1(Hlrcmml=R<-j57WMcC}M_}gcUqv+q8;vDHa>nVn>Q>DA}-%NdV8Hj=di%3E~+y!t_5!%&L+BlMQzw@J%Ya> zur-*5)P#V5AHOnp_Wm{Df4x=`A1PDO6}0W(jNLmAh^5bi;DkuIDtvKm3DrS$QJp^3 z`JwOzYh(z2$=ZV3lrX${o>@{x2Vu-`WwB+j(LuqGjiDf z?BU8Iv{HnIem{!M6T5fl{~vzH%2Vubw4RTmCn;NX8GM}oA3(4`;JN8BlK=n!07*qo IM6N<$f;L?7!~g&Q literal 0 HcmV?d00001 diff --git a/aurora-next/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/aurora-next/app/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..5769c31fc0c36b9d5755267a7a63c01a6eea48a2 GIT binary patch literal 2546 zcmVkt$f_qCr6n zZuE?xx*jWVVFG?ZfO3R9e4Y|-xhUW6L&lOh!%l>{-g%V? zm}mm9K*+ObQg{{!xs2~Z=UC?=`rT+e<;unoer$1WzfR#INyuXw9sq3-a?OlyLdQCj zA-af8drsIqJVg27oR~rmelO%&L{7jNAv?m_K`cUWyIL1V$&>2v*S(_<= zSlkYcMgyr-igN`wks;6yxH{QF$p}tFTZ+q2vNIy?2@rBk4NkSW-v-l@b@*S|ZK&01 ztBA#7;)(k>@?{&A#hV7aPtZl>$EX?u1J8_m$P0ExNpad}r`7L=0TYtrdXPk9{~j?^ zDwTEh>u=tLsPY!%ayeS=w&TMr*?>cddV%BuV#CC|2fWZ*nv&!61wO|@d z%5A`{;6)`kRdd-9I+q&iv9Y8GYd^_DX?i|Ht4~7w$#JyqK7l(s@=>+s1S(dYw#vB` zg~(25_R$j-3k{?2B{u|)l4|z=KSsUJTiqwg1YzbKykA;`bp$k(wM2H67o$xgfl{f& z-TQ6WR&KkWRaS%(>%V|v!%=i?I_6fsTm21IaOA8f%wF0IGh)J;bLj5u++O%6$8?vu zBajkrCb6u*&TSIx&bxvGmn$8TQ(19f9l*+3nY7{QX&{*7@pBgj{30I|A!6JBO7(brmIGbW0#HrmJJYoCA{_ z1eOL@PZe-Yo$d&v@^xqyEBXaOr|p75oDYNIQvc@Zboe?~M(V!V0|B)%=&i4(IS7Qj zQ}U800(1v0JS#;{Pmj+)G&c^xTsjg=`O`2+PWU`eq0r*vj}#u8J4)c~H*%&s2n5ah z=4WIR>u_I%%-FkIPHKF&Z$P9Eh2(Bz`2nd!Htj{@Vt?kaq4)7X98Usn0A~26TB5n^uJ&z zu7j~Ln|NU~m_k1o8#Y1Tu>y@j}thVUUU3&c9ltz{(Vz`==JP zm59?LIIwU9#oVWrnD^&{uL$CdU7nh`)frmSSt?x`SE@9)aJCU&9j`}Tem#y|k>kJO z9;*~o=R$XO4453P>#^m!4)50J@WE9Z31`_Z zs>bcJvmhypB2C}JxzyRILTaMgT@y);m9Wr5)1vwLG<-(%Iab<_XV3rWcRx*tQZ{-z zQf94k-&QEJgos9ub~n=5*$RzX=C*yH=Uz`o%Gj`$rU}pdW|GT;J+walKZ7 z>vf%jl51Bxap>PNq$L_X#(q>tLk+?9g01;H_N1q$a-;t=b9-=7jMhNi<}Q@dNJ6hl z?H;tOT&8ndd6GFMGp#%cQJsdFuWbmW*!cYFk-j`yd?x7aGn;75rS2P^hq^AyrX?x1 z8-a84Hd9PqA1(Hlrcmml=R<-j57WMcC}M_}gcUqv+q8;vDHa>nVn>Q>DA}-%NdV8Hj=di%3E~+y!t_5!%&L+BlMQzw@J%Ya> zur-*5)P#V5AHOnp_Wm{Df4x=`A1PDO6}0W(jNLmAh^5bi;DkuIDtvKm3DrS$QJp^3 z`JwOzYh(z2$=ZV3lrX${o>@{x2Vu-`WwB+j(LuqGjiDf z?BU8Iv{HnIem{!M6T5fl{~vzH%2Vubw4RTmCn;NX8GM}oA3(4`;JN8BlK=n!07*qo IM6N<$f;L?7!~g&Q literal 0 HcmV?d00001 diff --git a/aurora-next/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/aurora-next/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..fff4e420e49f89cb0685bc44672b53f1db75b7bb GIT binary patch literal 5806 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 literal 0 HcmV?d00001 diff --git a/aurora-next/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/aurora-next/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..fff4e420e49f89cb0685bc44672b53f1db75b7bb GIT binary patch literal 5806 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 literal 0 HcmV?d00001 diff --git a/aurora-next/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/aurora-next/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..65ace096d96cdbdb33ebe78faf48d18d07e8f465 GIT binary patch literal 9047 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 JPDHLkV1m+dsF(l% literal 0 HcmV?d00001 diff --git a/aurora-next/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/aurora-next/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..65ace096d96cdbdb33ebe78faf48d18d07e8f465 GIT binary patch literal 9047 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 JPDHLkV1m+dsF(l% literal 0 HcmV?d00001 diff --git a/aurora-next/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/aurora-next/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..6b2ab3c26be8e38b5374463186124a6b305b4224 GIT binary patch literal 12890 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 Eg2b=eKmY&$ literal 0 HcmV?d00001 diff --git a/aurora-next/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/aurora-next/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..6b2ab3c26be8e38b5374463186124a6b305b4224 GIT binary patch literal 12890 zcmV-gGNsLlP)Aej3#Pgj~&Eeih@XX@iJx7}cduGn(TE-89P|Qsl>g@B z1U0S@P&S2{rsBPMa(eE(Vm?2C ze#b4`cP8Im)itrmz>a*+sO;&9=B`BmGyvrW@v>)$E|;kS8wF%81v-K@j~bM+37^9e zMfeV?q6YWf$u)4-Laqs~?M>Iuj*5}YRuw0Tm}n9S(VqZi6#>dsVp%Fc&w-8i!es*V zw;_hY$5l}jA@G{6;x*#67EZ2T9}{+zQ<)?F9VU_l408xD0#txrQ6M`c33&AgL9amt z83ORyaST-C3rrrBUzr1yh&~=pJmC(SycXrDio~_Ng8ofpD3nlhV?)MBoGY;Ek&a89nRZau#|^y54GvcJ_B4Ubt3be4 zC6nZ@MFoDWya^HNF=?c8$t{22BoPJvJ*5dJ&hu4Z&=*Mt6;a_Hj-hzMjU~$x)%gWC zg=ljH*!rZ!u2voNt`KrR8J5kVN&Y;LT{n5()M>?m`uFP~1l(sMEJna3|x zX(UvPp5xfFXi(-_KVR;&Cc5-*r5e710k!l?sN$*--UGZBs_qdxN=fn%&ohk-ek7AS zl95G`cu$xlDkaGyconQm`?|q4CU+z&i+&X54hmQ1*zxX?$0fJ_Ojo$gyuRe4L9n-T z#>Y$&m1vbm;XwvAwE+0QyuL)+EBHu|m+I}DHG@f_cLYC9y%Vqh4fFcC7!C5k+c{^W zwe{XAj0A51eplDzhQyN`RI2hYkm-iW1rm5UXB@JzdDNJZKm+i5yJmF|wKB;0-h2iu z-IGMT)ADxCzTsjYVa!ON#^jclV~zdCG~o=HYTLBobuBx=)W8&B~;OJ%44s(jzw~gOtX=U(QM3l%3{g8)G39 zIVvy-@;!eg9~b##x*!y*^i+Tf5s^cgE;dn9@ZMM0NI*4zC2v>x1P1gBj7&$H zSC)u@3YQq?gWn~0Sm6mS2L6gff*B5JY15}XA6=nHAb{V)IlVU-glGo-ic13g=`lSy z#%}8UeiecQN_GAxEa7E|G0FeHeR|?E8_PSL%Jn>fQ0nxuO={rll6Q@PpP85hZnm-n`FPTegKoY+lHTkoO!qT;+kC*y zJ`QXx?l^H1r)un$DJAJs$;~d_h)AE81*8 zNTF8|mgCRhCLWcB4)w391JZ{(DwAYp7n44(+oIXYu|4ghZO?8 zvb}m01?yM6V&kQvD&#Qr#gmDq2U|*33en{+DtkNUZe*)C6tnDi-Zi|5K9F{Pz@+latjZ zKzMjK$pv1)wV+7&?2}{$ex-!i#Wo5o%`ZFhQb@})#I$9#l6C*RHHo(hWZu8PFl29B z{{rIT64eGj<^WHgJOP3RK zI%T>r?_b!KEslk!Pt=z_Xi-s7ocE85i{mURN(P(1jUwa9@&VCu>?8_AgSGjU*)$>6 z*RJ;;>TlrfqPWRAJqv7>M=JQ84&yw!y5PsTf#=VkbKYMd09wf1Ncem~5(B@eB7{-E z*6LBn!0ul*;G5;NP!-De{toHP`zzVb?N1>-K0$5pV~+6R#S0>PVhe#^ursG3VD^j* z2L3`(APTI;Uz~#&Ec1$x;QfaVU0%c6S$>&mf5GJN#iB@vjEvPt`b0)Xa>=hM@T1}R zc5aU(`2ed52`v&B1#B$t-842fuT$nxfX>8Kc6Ur=l^>DKpP2%I7hh-uegrsr|DwPz zSXfvze7-QA5kOQCa+>xECXMsQZqdqRI6ItQ_pj>hl6#bSf8Ma8bMKz#8kIcJo;`b3 zr1Vj?z)RsU-#3jBfJOlihZLAL`Sw|YMg20H7Z9|+t6j{1f{m#w`u3!9_-5TJh=`DB zRPwxaBNA>0KUWLF zy=t%^oP$c`oZ!Ory%sj zOO3q$%P<*yIydn(@~v4G2d`d6sZD_J@EF*#DVoV3AsL<&>`$;+6ERvU?Gb|aceD;O z@pZ{d*6HNel}HbtB$)Z-J(&0RdHBrVpMaeJ{L1;)0AG}?Amj*m5Tem+Z*+750c~uN z5$KN{5fBv>t2PN9J&c4e7A98o{vfVZdb;(K)Um_%4nd5TiVUI&MpaLzw8gsH?@xg5 znFh1Ix(5pmoF`u1Uv0n_G7<%L1_eSwqGpY5{~d{fSss~1e!qD>=@8%-p*8_zvN$+% zG92c5WmWVjpm4Q~0ZX%hFA<}qkPI*9pMI#5^2aM3=4=jzCI08$3HY4!A>_IKI8-C)6BQ$aufKmvNSLdJ zH_L@>-$z44g!-k?(9mdDw<4~>&k0Poew;dd_|D-aE`#XgSJfE~DW6dJlcy`yA8+pz znEU%>;`QGh{L3x}z+cy|zP75vn;PAY-MIw|51j*_MG<`d@y2e_Y&d=56(@1jCBc=z z@QU0phpS8HVT0VHv1e8yR!gu!Zn;qX(f4-FKCDx<|Jm^{fA7V22R^keBvFov)vVF& z`jf}7CXgrJr>D+=@3JRqefQ7iCBvA%M3}0xbCF0xZ2!GT>iJq)+g(ry7AjA|?hlT`qi{C4T2&)}jzt z=Jp&`x)*J$+@HbDFKeVr?XFt(;M`64eql(l=T){9Zej4bTO`bPNdh08e)=p= zj!)0oS>BKAZ?ds_iOC>A{y5u3S&1gUq^!YS6p( z1_Ac`V+7Ej;gGgYC(57hnK1XaAa25{M8HqZv-MJdM&L)g^ymRB4=g(G_;T+-xUuLr zNLjm2Qug?Zeej*KaB{7O>c@mgd7{U{RyuY?SPaudnHAJu;u^4H#6>ouTGIb z&X+?SQen!(pg@9I1HLt4dDVB-|5eRL`*+X<{qHq13YPf$ml*h$2KvL`(!NED_NMf9& zYvoXUMnExU=wH(iyIs33f9pJ;5+#7XyM6q8sq25=&tJfjbABZT{tcJ>AuLj}WlbKu z4C5q|Mp5SSIoQ1XM|d!46~ukEQ&I%D|M?+UtW!}y&S4b0Lnn;>Zw+FXVz|;<*8hj1 z1ghcbkoKFD^}n}UCd}Jia`pbzM4w+KNvtN|kBy6ipRT^$cUXS>IGnOu3s0x5hqzCr zLxR{+SGp%9jx4xDnz%-z5nGB(DA&e(}Dpa|FN@ zBdpCYU$0xYYeRk=(YGJ~&7P~74&Kw!+eNPR1lZSA4l~_zVV083^vH%!e!RwkZw1!a z-_bUnI|FwgJm6MpP}i=7+=Vq4{od(wmmd8Of*sbwbLUME?!6TfR_=l1b^EnyiC^x8 zKWAThZOn@@Ust(g5@8#QyODi*EHp+8o0xc1d)ow9f7--bAN#oGrD|&e3@>KQvPAg% zPZ^x^i-n8lV+z}aD7btt6oQ_VfIWT$4?;sBEG$fILjnXpdi2hpeHB0Z!cBO2o*4NV z9vBRf*Fs9huHPf3`THV>-MRGm^)Xjr=g-B!(StJBxGuifmhZBf5VNy>m^P%}*0G4; zw@HL64IR3J=qJ7E&eL8_)z;&Wb3L=+?_Kc_6O#(*=^2ofmBmcLmYJCe2?=Qs;Fkc4 z=VoZR5)=mGM*K4aG2FlZ#+sTY!U6$mxY|a~)y~3Ka`^4XI7m)PW8l&;LuYl)Pe!75 zwzeukc~}V=Kk5*6hSqp10(9swvpROwx!WgxqmBOmg|kxN#q(qaC>@RltCz~O&{84K zZ;6;N=J>COVTxtV2tcv`%mHe9IHvB=MgqKXT>=+Q8JKj}_WdQ(!u|$w+8UhrmBGL=AItx16RI2HkP+5XuZtCbyYkN{pznP5HP z@?8UiW=;7SVGT;5lmOKS^jc=Bf^T z?X5c?mNg+jC0aMFK6vnt@B29CglU5SB=W%db20`b9krySWSHxftffg){vmnW$+shV z_MFobv8+iVED)f^xRHCidppZxv_Sy0U$@C1BZJldb3`mX*f!K#TAu(h%WJm0V?8IQm%1kXc*Z4Rz2^P&x z)iMD97s|>S_~C{zh~@tM=c+v$T!~H{*P1x`%pgL59IX+6Br@M_C|?9fdT{_!FLnX> z`Kq7@&;!MJJ&<2*3pr0$lp7LY@xt3BTk8a{w+_u6)c4!*h-DL#<+ao$K;;4goEStT zP`366fV;1xKzw}pD2FCI*$G(zbve+#W`qnm54|8OBVNZNTqgXyB}UuN1<(i(nlq^H zS7HLF^;|$@DuHTG7(Y+~Y3OJf3z8oH;CkEy#RTgxT0O=W!b0i29o4*8wzd`Zf_b28@qQK=2 zke&Qc=dLv^Ed##$S_ax)RjyznEJXG}*VzLR%ec3N#suioXO*#+bM|v>6M%dN@IR}Y zZ4ucaFF?M0A1J=q4)RkSRRdoDzsPbQc(>t!-;Br>uM0CIH$`n{_Y`NKJ>_Z6`r7ZzpH+ZN3EDHHrm3MgT4fTzn6* zqyN*X>%De0R!dKTy-omhn%3r59=C2jvNK}2O`D-L)Fy!NFbuIKo{s5Pr9gnCi<3zn zphImDnOTq%6bgz@2>9px4vM+NKKl{mhx@4pz6kt+<=z;rGf@DY6Ba9^vT>fLQwCU$ zKYxc{xCM{puKJo10F#Es9uCQ;r9gmrKACXydYtYMASMCiYySm>?{-kkBsOaYXY%!{ z`COnF;1^gm$a%GsoG(-QV`?e#7DV8-NK$Q+1?C@F2hPGDs=4)qJ6cy_Pd8I&f zbduyJy>d4nCwE{QC|rL8g&Q&VpLp~5IiC>ntu6%URo?)9YUf)(w(NqW>;K!nmxlfq zmPK)z_7X-7`5!Kj+pt|b>w0vb3-t-mwW~FTjRsa`7wu>S(E8HoSYZgd5-aJ%H~Z#O z9{7%1K;g6%6wX^I8I%Yy_ZyHO=*|PYDBzzFtTN;VPm}EASbTgkESaAy5d!cFV@V`K9=8WW&dGgGVr)gLuz`w$;zd9qaY2HU+;!sSp|66CHu01EpbKrx+| z!)D$%GHfXz10_W6A8S|*TYl=Vysl_0crD-$6$Hbs&^$T=JY3fu2NVe=jT(+=$iN{GT_ zkk8)<*`cq9XP-g&v4rnwRW+pjv|lCiv#2HkNl6h$=x^uLf=XE>=?W0onJ$K#oA4_!TH75u5xq zC@j#vDIkRPMxG2L3gr0R<*G&b?@tN^`DGK;;6J5oRUjv17J0uk77e=^D3e6{1MeK= zm;mQFPJIEx2X9}8*rgb*rYQl$a{-OVjQYpC;K?xUC&Hi2OXeyMk|01rGN1UGtpmk` z^}LyHAY|A;$si&GA%lGB-$chNgO@~s7e8_mr)c04J4x+qJ;;^?N}~N?_y43){uB~m z06UA2oW3S291*(>8-7$*lQ{sT*U*{*$j;?hQ-GN{i8Y`@`C0i4v;+ z=W$JNR%U^(TDP|P7_qDABv_$RsGgn?R)XqdLy`ORgcDLpgt6lA?>-q4{)wdJKDjTJzX7tfff_v`{G&mz1L$jWu_$3|%LkJOJAwaPtf;P7IOo zpR+4~0H1(=#7a<%T*VtlhSih|Yx2n;ch~~i&!XONP9mp5JXM4LgpwU63Gs#AT8#o{ zPGR{|TKeB<+AA;}vg>EWEX8hhO-rDKDnYGU4QznfwAskRwj{*lN+l2Y#3u#9Uumx` zBKyHhUiu7K4vL{GcpFBDFr3&3N`{fEc|wf;5_0|tER^^bX-N-3ey(-Vz^CBn>_k<_ zxxYj!2{9HSe%Kf*k@BZ#Z!oI|^8UTo_#kGDjQTfxn+i~&N)SyVnsj~Nsi&7yhGg;p ztUO%4q@_F{ISq2xALPNW$~ZEtpk!DHa<5;wSz`6tDbgY5F_BEC^os_*VE>UQaJB_x z#|M}B7$hbp!@}8;X@AIH65Yz|!mIYJ#tuNtzHJ4lP$JB0s5*_vzgxQ4ME)y<)@Z^0 z*rA=ai0pt6kfW|IiU49G@+aqvh5${C0Qn`8qJdArFIes^7b2fh%DDX@7G}9;ODX}z zZIR4I9X!M9f5a@O|Eub~-A?gBBCJ=#(9onY`Dtiv9=HI*j1(H<(AF$V0$EwNMI@y{ z#@wCoa>fq0GjA{4n7_YR3;x~@g2GZDC?-=QyK`?hq@So$Ebuuyh6!^+$bPlIOv|7D z?v+VoU*JLwa4`7etyupzeDA$pP57PSHBW$*6Jh=O^?PC^=sjF%mxP&EsmP#(v(n+- z-GnlI&?V0QKK#A^0c^OO2up)AU`cRhk+%GHCak!fS?p_yeDC!r2s&-?X7E$Xyf6eZ z)5>Nn5);y3(}s8n$sfM|XUfED30;ld%@M2h>UD1*(*JKofc!jw$SDK*XjvO)o5)jA zDTm_zQzwpod}zQ5@6BIOjvZQcw2mn2mhO1SDbxy@gk%iuUjne1(P4E3Q>1A z5$|03m9elF$*^d4iloY)ZuaqDW_l!$V6;7tRSvUnt^bws0KJ+91|5(9Ev+V8{EU96 zB-$dr|E6r(BGO6N|06^OpWMiRxi>Q3Xh@QUH#60GZBaJwdJ6n^dJg3LSG7psD~=YJ z>_jI>mX-c`LYFQ`r~QG-pS7YlsBa*tGomk;)q zdinE@?Xi-QKim>16EDYidf&keFJl#N(T4@z4>*T*sKfB;nwjH#R4BqexwpSzq6xM$Kmencvv_qLsFAp zwwCu`z=vObf!J))r0aWhNuR1E;r$DhL+jQx;$)Da;ox3wcJU9jy=bmr->#1@^L0FNv5K#Jg07ikkvMg9~D+BC^SGG9M zoArfsuqXdVVhF!04YT(ThksAZhJ+)Hxr7&ipL4h>r2c0F5ka3qYHI1u10*G-z$e~G z(rJC**Z)lEV(eyxn5tJhn{{SBa6uH{=3Ojx&yS4}! z$p_9yX2PDQ8L*4k-lv(c|5+yNep>qW_mgA@y6*>3*Ox=ejm3~~X9GmP41~<|(w`B( zb32w>saqoQC)e2~9L9{;dm6FGV-m4ha@C(ACdKp&YS(UqiAI~@1Gi20n4Th+LKIl> z8MZ}~?Nefz+O*6}ZpX>2GI}%=oy)#G(pmhLTmF2~b;XB0mv|!_~dV?_0Xw;}9E<4?B)S#W79u6s5FNtDh;@Dvs18XVS((vQ$kTS4^c+tKtrk&^ z4E6u7+hkHGf9CPp|7KplUMm(M_8K&3hl^j;E6wD$sARY{WgdQk&bAhJ{qTt#J_^XS zR1VDrztb@cv?V?N@jMY0&qaM z|Gpa>TYZ|ts ztCrL#EARhWNt9<`jW(DISWmpNAE%~;UHY`s9G6q3&j^%vd-gOD=KH2fBKdWg`W!|N z+jWAk{2=By?=LQWmKgzrWLO*p+V|)>V~pdJ7ct0GZT1L#;++Wrez=_y1Ms_8=%Ykf zxg=RSJwId5#=YNess&eXx2j{G#9V0!dhH~Tp5ff-z@MSJ~0 znc#OO9ugDN8JIPF_$Ms`?%qy<)nBAY;kn;D#FDK=2n_o82VC#RxL&=M*!J9*Vo$%U zy}znlpkB?Ijc{I|eYI-!Kd`X~xjDlzP3tWZvpllk#~bNCq3%$zZlennX6ckQc1=V}2>8clQN8 zy!YoY)<~)HqZIWnK4Iw<3fyaSdzMY=H9u@7Jnj*n8UK z;1Fz+(B|9#GhH;H-zN&jk2(-qv*vq!5mPm4)W-#H8&a&5S>0dVD4au?1GOE?2bigx?R888i}3-OCLb)GhnS(*F;tR1mGvZiye5V4X&rt2M)=fDx6#9P zt;g_2pDSe~V3rSlesS9%7}W2Z?-45$Ge)`~eTtJpb@H|Fwzh7CLPn>;??22OOa zq_{$Re>pB}HFo&lcN;WlH;|S*1>N63X~IjV2%xHCl*M_QU)3dQF; z83`&T_?@P`#F^e_Mn*%%A|?zBns*lIeyw(TmR3H%Jwj<<@E$(S)~#bl`$<;jS6*T1 z%g0ro%Ro_Kl3s36D>Ku>ksaDv;HqxjC?;A_jOe89S0^73mRN6XV9>G~COqA{cvxGS z2SzdyR1D+69|03gk3@GdwzoqJ)UIvRU60?`x+%p-4P7XCYAS_<`GIEW1e9i66&z~4rc^or~KmGsKVAx?^gNiw|Pwgv{xI1+U0 z>^9ZX?7}Pb4qnc=a#kWOU)3H2KbF7EObSrW{h=vh8LX}KGZU1*zVg#&HInx!QTR#+}bIXJN3&u z_*IohYtsiDC<&Tzk)TeU7X8PMJmhC*`2etYNZSkVGJCtmHf(vBHu)Be9P;~xI&};O z@ZfLSLj?YY6ay6o{Hh+J5tAT4C#Y7fTJKTAcI~#YxC49_DI4ag2eLv|NP(5;)N%Y@NKLvXn~es`L@Tow(=*6ZV#dpf2A_VJG$ zvG;!WPM+>~Z}1+`d)0y7yC$L;UIu;*+9qnyrYKwklG~1nXvwa)^df4@YSn7?9Wn5i z|5=*{W?)w#zguMi z4M$i|G?yr8Z~ z5@Ai*SR4)7wjEH zrj6;O0RtS95`POEaa!iN(FQ98DHxC?J9Ag}79CPaRThV*bfZiLX z_sc*M38hkTH0Y?W-=IgeYPEX`MCjdf{+zKR_g%3zzmkjF>+ow5iHX2gse2vxIexmlLnB*y=QmHr^2)RLfat}K5xdBH6j0z@5 zgwezIoF~#K)86V4S32d}bj9*WUSVYpNpSP9q=_xdmSz_+M-BVq0tLQ_Aa`&~acuc9 z&e!^4ug^-HT8sv$I~&pJLu)FFx?p8O$Pdtqb?xfmHfr#W!;{9IiL79@77ZpUg}TJ)AP}ngSDMI-w?(NO>aAlnc=F*9L&z z9&@9qldj3fk2>&ZP`__~X>BxWvKaWZjiD=@&22-+w27#~qg>u(;Ma0AP?kkaMfm|o z1PtS~YSr&05TRzx1_S!^T(r=1$nVD|jX4#GOLC+B<@Yzs%ddUw4k2Fm^87Ubm;d17 zrZ``M*E({@j^idD%wL3KAON2q8&2v7z!!9WQx$TDd3}jiiu7q2u8t@_Fe-=$dYyS9 zG^U9iPli@4hMM*3vud^Jus_ZUWWdDPeR?95NdN_2RGAQRErMOy!*ihLevdu*Sjpi) zKlXH_>5!dgKQdXdwx!`+9FB_G4zIhaX#+UrEQu`mpJX??lagjSzJ9Sp_ka zO;d0e7+pq^`z)1!Cy@(R+rvcPdSX!e1k)pr@ftqrwR9!9rinDErNFPvl{0Y+Xf0pR z_$|}`J_ElF6QK!B_Q5* zWn*29GB5I|3_QII(u=@_)4W732Hzx)%yfYz-W(Fq(u9(CY7 zA?6CTIf*2iToVXkQs2O6XxI0rJE2z{HgMbS(ZhEKn2kE}$inPg+?0t|GZ2jUPzWZO zNDg=V1dbq>czQWy(VZ$)MFTkpY$Ouub(AkCzi?+Aj66s-j6zcLd(Kr z(CaM7B&D38m&mjBsZ*!8u3$mP+1UC}#@EEdzc9AVQTQqC!Ke zf18UULwlMSb|NqDhM*!cf|C+_gs9a^1t|nGp&;#Bqeg>4O&fL^-K<%^2}VZ4EL*i0 zW!-+`;%^yC4r-;MvS+;?s-^7PH=wKXil z+gD-0uXt4>aa5?Tf(%WlL})>EvX~IYymv({jn6J~`kHv(=6&kbYuSg78ufZB5ky0) z#hnAs#h!oD$_x$T9z`OD1;Lg>Fp1ULctoHP? zThs4iC<1&V`km|2YfuI~^Y-jen+*D*oIxOj5Fr{d?=wCGzm90M9_rjuIh*G9grv zq6P(HO;N-!5Rs&=D1xXm;qP@s@2f2Wc}@Bms=%%a@C@|qC^J$h6GI?JH4#blMPyNB z;@61ZTeS$FGqAHma)c;~9F>b8iz-l8E(YWb@FjTsADDiES4^!q#sB~S07*qoM6N<$ Eg2b=eKmY&$ literal 0 HcmV?d00001 diff --git a/aurora-next/app/src/main/res/values/strings.xml b/aurora-next/app/src/main/res/values/strings.xml new file mode 100644 index 000000000..8f6a2710c --- /dev/null +++ b/aurora-next/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Aurora Next + diff --git a/aurora-next/build.gradle.kts b/aurora-next/build.gradle.kts new file mode 100644 index 000000000..b332042ca --- /dev/null +++ b/aurora-next/build.gradle.kts @@ -0,0 +1 @@ +// Root build file for aurora-next diff --git a/aurora-next/core-auth/build.gradle.kts b/aurora-next/core-auth/build.gradle.kts new file mode 100644 index 000000000..04b4375b9 --- /dev/null +++ b/aurora-next/core-auth/build.gradle.kts @@ -0,0 +1,25 @@ +plugins { + alias(libs.plugins.jetbrains.kotlin.android) + id("com.android.library") + alias(libs.plugins.hilt.android.plugin) + id("com.google.devtools.ksp") +} + +android { + namespace = "com.aurora.next.auth" + compileSdk = 35 + defaultConfig { minSdk = 26 } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + kotlinOptions { + jvmTarget = "17" + } +} + +dependencies { + implementation(project(":aurora-next:core-domain")) + implementation(libs.hilt.android.core) + ksp(libs.hilt.android.compiler) +} diff --git a/aurora-next/core-data/build.gradle.kts b/aurora-next/core-data/build.gradle.kts new file mode 100644 index 000000000..3aad0ece1 --- /dev/null +++ b/aurora-next/core-data/build.gradle.kts @@ -0,0 +1,26 @@ +plugins { + alias(libs.plugins.jetbrains.kotlin.android) + id("com.android.library") + alias(libs.plugins.hilt.android.plugin) + id("com.google.devtools.ksp") +} + +android { + namespace = "com.aurora.next.data" + compileSdk = 35 + defaultConfig { minSdk = 26 } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + kotlinOptions { + jvmTarget = "17" + } +} + +dependencies { + implementation(project(":aurora-next:core-domain")) + implementation(project(":aurora-next:core-network")) + implementation(libs.hilt.android.core) + ksp(libs.hilt.android.compiler) +} diff --git a/aurora-next/core-data/src/main/kotlin/com/aurora/next/data/di/DataModule.kt b/aurora-next/core-data/src/main/kotlin/com/aurora/next/data/di/DataModule.kt new file mode 100644 index 000000000..997150654 --- /dev/null +++ b/aurora-next/core-data/src/main/kotlin/com/aurora/next/data/di/DataModule.kt @@ -0,0 +1,17 @@ +package com.aurora.next.data.di + +import com.aurora.next.data.repository.AppRepositoryImpl +import com.aurora.next.domain.usecase.AppRepository +import dagger.Binds +import dagger.Module +import dagger.hilt.InstallIn +import dagger.hilt.components.SingletonComponent +import javax.inject.Singleton + +@Module +@InstallIn(SingletonComponent::class) +abstract class DataModule { + @Binds + @Singleton + abstract fun bindAppRepository(impl: AppRepositoryImpl): AppRepository +} diff --git a/aurora-next/core-data/src/main/kotlin/com/aurora/next/data/mapper/AppMapper.kt b/aurora-next/core-data/src/main/kotlin/com/aurora/next/data/mapper/AppMapper.kt new file mode 100644 index 000000000..e7f39dc8a --- /dev/null +++ b/aurora-next/core-data/src/main/kotlin/com/aurora/next/data/mapper/AppMapper.kt @@ -0,0 +1,14 @@ +package com.aurora.next.data.mapper + +import com.aurora.next.domain.model.App +import com.aurora.next.network.api.AppDto + +fun AppDto.toDomain(): App = App( + id = id, + name = name, + packageName = packageName, + description = description, + iconUrl = iconUrl, + version = version, + size = size +) diff --git a/aurora-next/core-data/src/main/kotlin/com/aurora/next/data/repository/AppRepositoryImpl.kt b/aurora-next/core-data/src/main/kotlin/com/aurora/next/data/repository/AppRepositoryImpl.kt new file mode 100644 index 000000000..efbfc1210 --- /dev/null +++ b/aurora-next/core-data/src/main/kotlin/com/aurora/next/data/repository/AppRepositoryImpl.kt @@ -0,0 +1,21 @@ +package com.aurora.next.data.repository + +import com.aurora.next.data.mapper.toDomain +import com.aurora.next.domain.model.App +import com.aurora.next.domain.usecase.AppRepository +import com.aurora.next.network.api.PlayApiService +import kotlinx.coroutines.flow.Flow +import kotlinx.coroutines.flow.map +import javax.inject.Inject + +class AppRepositoryImpl @Inject constructor( + private val api: PlayApiService +) : AppRepository { + override fun getApps(category: String): Flow> = api.getApps(category).map { list -> + list.map { it.toDomain() } + } + + override fun getAppDetails(packageName: String): Flow = api.getAppDetails(packageName).map { + it.toDomain() + } +} diff --git a/aurora-next/core-domain/build.gradle.kts b/aurora-next/core-domain/build.gradle.kts new file mode 100644 index 000000000..25fffa6ff --- /dev/null +++ b/aurora-next/core-domain/build.gradle.kts @@ -0,0 +1,27 @@ +plugins { + alias(libs.plugins.jetbrains.kotlin.android) + id("com.android.library") +} + +android { + namespace = "com.aurora.next.domain" + compileSdk = 35 + + defaultConfig { + minSdk = 26 + } + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + kotlinOptions { + jvmTarget = "17" + } +} + +dependencies { + implementation(libs.androidx.core.ktx) + implementation("javax.inject:javax.inject:1") +} diff --git a/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/error/AppException.kt b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/error/AppException.kt index ec02c336e..77cceb03b 100644 --- a/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/error/AppException.kt +++ b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/error/AppException.kt @@ -2,7 +2,7 @@ package com.aurora.next.domain.error sealed class AppException : Exception() { object NetworkUnavailable : AppException() - data class InstallationFailed(val code: Int, val message: String) : AppException() + data class InstallationFailed(val code: Int, override val message: String) : AppException() object AuthExpired : AppException() data class Unknown(override val message: String) : AppException() } diff --git a/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/AppRepository.kt b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/AppRepository.kt new file mode 100644 index 000000000..2c30918f8 --- /dev/null +++ b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/AppRepository.kt @@ -0,0 +1,9 @@ +package com.aurora.next.domain.usecase + +import com.aurora.next.domain.model.App +import kotlinx.coroutines.flow.Flow + +interface AppRepository { + fun getApps(category: String): Flow> + fun getAppDetails(packageName: String): Flow +} diff --git a/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppDetailsUseCase.kt b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppDetailsUseCase.kt index 2286b990b..5e6968d46 100644 --- a/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppDetailsUseCase.kt +++ b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppDetailsUseCase.kt @@ -1,8 +1,12 @@ package com.aurora.next.domain.usecase import com.aurora.next.domain.model.App +import com.aurora.next.domain.usecase.AppRepository import kotlinx.coroutines.flow.Flow +import javax.inject.Inject -interface GetAppDetailsUseCase { - operator fun invoke(packageName: String): Flow +class GetAppDetailsUseCase @Inject constructor( + private val repository: AppRepository +) { + operator fun invoke(packageName: String): Flow = repository.getAppDetails(packageName) } diff --git a/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppsUseCase.kt b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppsUseCase.kt new file mode 100644 index 000000000..14f50a1d7 --- /dev/null +++ b/aurora-next/core-domain/src/main/kotlin/com/aurora/next/domain/usecase/GetAppsUseCase.kt @@ -0,0 +1,11 @@ +package com.aurora.next.domain.usecase + +import com.aurora.next.domain.model.App +import kotlinx.coroutines.flow.Flow +import javax.inject.Inject + +class GetAppsUseCase @Inject constructor( + private val repository: AppRepository +) { + operator fun invoke(category: String): Flow> = repository.getApps(category) +} diff --git a/aurora-next/core-installer/build.gradle.kts b/aurora-next/core-installer/build.gradle.kts new file mode 100644 index 000000000..33cacecfa --- /dev/null +++ b/aurora-next/core-installer/build.gradle.kts @@ -0,0 +1,25 @@ +plugins { + alias(libs.plugins.jetbrains.kotlin.android) + id("com.android.library") + alias(libs.plugins.hilt.android.plugin) + id("com.google.devtools.ksp") +} + +android { + namespace = "com.aurora.next.installer" + compileSdk = 35 + defaultConfig { minSdk = 26 } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + kotlinOptions { + jvmTarget = "17" + } +} + +dependencies { + implementation(project(":aurora-next:core-domain")) + implementation(libs.hilt.android.core) + ksp(libs.hilt.android.compiler) +} diff --git a/aurora-next/core-navigation/build.gradle.kts b/aurora-next/core-navigation/build.gradle.kts new file mode 100644 index 000000000..240481519 --- /dev/null +++ b/aurora-next/core-navigation/build.gradle.kts @@ -0,0 +1,23 @@ +plugins { + alias(libs.plugins.jetbrains.kotlin.android) + id("com.android.library") + id("org.jetbrains.kotlin.plugin.serialization") version "2.1.0" +} + +android { + namespace = "com.aurora.next.navigation" + compileSdk = 35 + defaultConfig { minSdk = 26 } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + kotlinOptions { + jvmTarget = "17" + } +} + +dependencies { + implementation(libs.androidx.core.ktx) + implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3") +} diff --git a/aurora-next/core-network/build.gradle.kts b/aurora-next/core-network/build.gradle.kts new file mode 100644 index 000000000..6e2d84516 --- /dev/null +++ b/aurora-next/core-network/build.gradle.kts @@ -0,0 +1,27 @@ +plugins { + alias(libs.plugins.jetbrains.kotlin.android) + id("com.android.library") + alias(libs.plugins.hilt.android.plugin) + id("com.google.devtools.ksp") +} + +android { + namespace = "com.aurora.next.network" + compileSdk = 35 + defaultConfig { minSdk = 26 } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + kotlinOptions { + jvmTarget = "17" + } +} + +dependencies { + implementation(project(":aurora-next:core-domain")) + implementation(libs.squareup.okhttp) + implementation(libs.google.gson) + implementation(libs.hilt.android.core) + ksp(libs.hilt.android.compiler) +} diff --git a/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/AppDto.kt b/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/AppDto.kt new file mode 100644 index 000000000..d81f4501c --- /dev/null +++ b/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/AppDto.kt @@ -0,0 +1,17 @@ +package com.aurora.next.network.api + +import com.google.gson.annotations.SerializedName + +data class AppDto( + @SerializedName("id") val id: String, + @SerializedName("name") val name: String, + @SerializedName("packageName") val packageName: String, + @SerializedName("description") val description: String, + @SerializedName("iconUrl") val iconUrl: String, + @SerializedName("version") val version: String, + @SerializedName("size") val size: Long +) + +data class AppListResponse( + @SerializedName("apps") val apps: List +) diff --git a/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/PlayApiService.kt b/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/PlayApiService.kt new file mode 100644 index 000000000..b0f07392c --- /dev/null +++ b/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/PlayApiService.kt @@ -0,0 +1,8 @@ +package com.aurora.next.network.api + +import kotlinx.coroutines.flow.Flow + +interface PlayApiService { + fun getApps(category: String): Flow> + fun getAppDetails(packageName: String): Flow +} diff --git a/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/PlayApiServiceImpl.kt b/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/PlayApiServiceImpl.kt new file mode 100644 index 000000000..0007cae16 --- /dev/null +++ b/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/api/PlayApiServiceImpl.kt @@ -0,0 +1,22 @@ +package com.aurora.next.network.api + +import kotlinx.coroutines.delay +import kotlinx.coroutines.flow.Flow +import kotlinx.coroutines.flow.flow +import javax.inject.Inject + +class PlayApiServiceImpl @Inject constructor() : PlayApiService { + override fun getApps(category: String): Flow> = flow { + // Mocking API call + delay(1000) + emit(listOf( + AppDto("1", "Aurora Store", "com.aurora.store", "Open source Google Play client", "https://auroraoss.com/icon.png", "4.1.1", 1000000), + AppDto("2", "F-Droid", "org.fdroid.fdroid", "FOSS App Store", "https://f-droid.org/icon.png", "1.15.0", 5000000) + )) + } + + override fun getAppDetails(packageName: String): Flow = flow { + delay(500) + emit(AppDto("1", "Aurora Store", packageName, "Open source Google Play client", "https://auroraoss.com/icon.png", "4.1.1", 1000000)) + } +} diff --git a/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/di/NetworkModule.kt b/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/di/NetworkModule.kt new file mode 100644 index 000000000..6c773ca61 --- /dev/null +++ b/aurora-next/core-network/src/main/kotlin/com/aurora/next/network/di/NetworkModule.kt @@ -0,0 +1,17 @@ +package com.aurora.next.network.di + +import com.aurora.next.network.api.PlayApiService +import com.aurora.next.network.api.PlayApiServiceImpl +import dagger.Binds +import dagger.Module +import dagger.hilt.InstallIn +import dagger.hilt.components.SingletonComponent +import javax.inject.Singleton + +@Module +@InstallIn(SingletonComponent::class) +abstract class NetworkModule { + @Binds + @Singleton + abstract fun bindPlayApiService(impl: PlayApiServiceImpl): PlayApiService +} diff --git a/aurora-next/feature-details/build.gradle.kts b/aurora-next/feature-details/build.gradle.kts new file mode 100644 index 000000000..8acfa6090 --- /dev/null +++ b/aurora-next/feature-details/build.gradle.kts @@ -0,0 +1,44 @@ +plugins { + alias(libs.plugins.jetbrains.kotlin.android) + alias(libs.plugins.jetbrains.kotlin.compose) + id("com.android.library") + alias(libs.plugins.hilt.android.plugin) + id("com.google.devtools.ksp") +} + +android { + namespace = "com.aurora.next.feature.details" + compileSdk = 35 + defaultConfig { + minSdk = 26 + } + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + kotlinOptions { + jvmTarget = "17" + } + + buildFeatures { + compose = true + } +} + +dependencies { + implementation(project(":aurora-next:core-domain")) + implementation(project(":aurora-next:core-navigation")) + implementation(libs.androidx.activity.compose) + implementation(platform(libs.androidx.compose.bom)) + implementation(libs.androidx.ui) + implementation(libs.androidx.ui.graphics) + implementation(libs.androidx.ui.tooling.preview) + implementation(libs.androidx.material3) + implementation(libs.hilt.android.core) + ksp(libs.hilt.android.compiler) + implementation(libs.androidx.lifecycle.viewmodel.ktx) + implementation(libs.coil.compose) + implementation(libs.androidx.navigation.ui.ktx) +} diff --git a/aurora-next/feature-details/src/main/kotlin/com/aurora/next/feature/details/ui/DetailsScreen.kt b/aurora-next/feature-details/src/main/kotlin/com/aurora/next/feature/details/ui/DetailsScreen.kt new file mode 100644 index 000000000..66a300eb6 --- /dev/null +++ b/aurora-next/feature-details/src/main/kotlin/com/aurora/next/feature/details/ui/DetailsScreen.kt @@ -0,0 +1,120 @@ +package com.aurora.next.feature.details.ui + +import androidx.compose.foundation.layout.* +import androidx.compose.foundation.rememberScrollState +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.foundation.verticalScroll +import androidx.compose.material.icons.Icons +import androidx.compose.material.icons.automirrored.filled.ArrowBack +import androidx.compose.material3.* +import androidx.compose.runtime.Composable +import androidx.compose.runtime.collectAsState +import androidx.compose.runtime.getValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.layout.ContentScale +import androidx.compose.ui.unit.dp +import coil3.compose.AsyncImage +import com.aurora.next.domain.error.AppResult +import com.aurora.next.domain.model.App +import com.aurora.next.feature.details.viewmodel.DetailsViewModel + +@OptIn(ExperimentalMaterial3Api::class) +@Composable +fun DetailsScreen( + viewModel: DetailsViewModel, + onBack: () -> Unit +) { + val state by viewModel.uiState.collectAsState() + + Scaffold( + topBar = { + TopAppBar( + title = { Text("App Details") }, + navigationIcon = { + IconButton(onClick = onBack) { + Icon(Icons.AutoMirrored.Filled.ArrowBack, contentDescription = "Back") + } + } + ) + } + ) { padding -> + Box(modifier = Modifier.fillMaxSize().padding(padding)) { + when (val result = state) { + is AppResult.Loading -> { + CircularProgressIndicator(modifier = Modifier.align(Alignment.Center)) + } + is AppResult.Success -> { + AppDetailsContent(app = result.data) + } + is AppResult.Error -> { + Text( + text = "Error: ${result.exception.message}", + color = MaterialTheme.colorScheme.error, + modifier = Modifier.align(Alignment.Center) + ) + } + } + } + } +} + +@Composable +fun AppDetailsContent(app: App) { + Column( + modifier = Modifier + .fillMaxSize() + .verticalScroll(rememberScrollState()) + .padding(16.dp) + ) { + Row(verticalAlignment = Alignment.CenterVertically) { + AsyncImage( + model = app.iconUrl, + contentDescription = null, + modifier = Modifier + .size(96.dp) + .clip(RoundedCornerShape(16.dp)), + contentScale = ContentScale.Crop + ) + Spacer(modifier = Modifier.width(16.dp)) + Column { + Text(text = app.name, style = MaterialTheme.typography.headlineMedium) + Text(text = app.packageName, style = MaterialTheme.typography.bodyLarge, color = MaterialTheme.colorScheme.outline) + } + } + + Spacer(modifier = Modifier.height(24.dp)) + + Button( + onClick = { /* TODO: Install */ }, + modifier = Modifier.fillMaxWidth() + ) { + Text("Install") + } + + Spacer(modifier = Modifier.height(24.dp)) + + Text(text = "Description", style = MaterialTheme.typography.titleLarge) + Spacer(modifier = Modifier.height(8.dp)) + Text(text = app.description, style = MaterialTheme.typography.bodyMedium) + + Spacer(modifier = Modifier.height(24.dp)) + + Text(text = "Information", style = MaterialTheme.typography.titleLarge) + Spacer(modifier = Modifier.height(8.dp)) + InfoRow(label = "Version", value = app.version) + InfoRow(label = "Size", value = "${app.size / 1024 / 1024} MB") + } +} + +@Composable +fun InfoRow(label: String, value: String) { + Row( + modifier = Modifier.fillMaxWidth().padding(vertical = 4.dp), + horizontalArrangement = Arrangement.SpaceBetween + ) { + Text(text = label, style = MaterialTheme.typography.bodyLarge, color = MaterialTheme.colorScheme.outline) + Text(text = value, style = MaterialTheme.typography.bodyLarge) + } +} diff --git a/aurora-next/feature-details/src/main/kotlin/com/aurora/next/feature/details/viewmodel/DetailsViewModel.kt b/aurora-next/feature-details/src/main/kotlin/com/aurora/next/feature/details/viewmodel/DetailsViewModel.kt new file mode 100644 index 000000000..37c2457c1 --- /dev/null +++ b/aurora-next/feature-details/src/main/kotlin/com/aurora/next/feature/details/viewmodel/DetailsViewModel.kt @@ -0,0 +1,46 @@ +package com.aurora.next.feature.details.viewmodel + +import androidx.lifecycle.SavedStateHandle +import androidx.lifecycle.ViewModel +import androidx.lifecycle.viewModelScope +import androidx.navigation.toRoute +import com.aurora.next.domain.error.AppResult +import com.aurora.next.domain.model.App +import com.aurora.next.domain.usecase.GetAppDetailsUseCase +import com.aurora.next.navigation.AppDestination +import dagger.hilt.android.lifecycle.HiltViewModel +import kotlinx.coroutines.flow.MutableStateFlow +import kotlinx.coroutines.flow.StateFlow +import kotlinx.coroutines.flow.asStateFlow +import kotlinx.coroutines.flow.catch +import kotlinx.coroutines.flow.onStart +import kotlinx.coroutines.launch +import javax.inject.Inject + +@HiltViewModel +class DetailsViewModel @Inject constructor( + private val getAppDetailsUseCase: GetAppDetailsUseCase, + savedStateHandle: SavedStateHandle +) : ViewModel() { + + private val details = savedStateHandle.toRoute() + private val packageName = details.packageName + + private val _uiState = MutableStateFlow>(AppResult.Loading) + val uiState: StateFlow> = _uiState.asStateFlow() + + init { + fetchDetails() + } + + fun fetchDetails() { + viewModelScope.launch { + getAppDetailsUseCase(packageName) + .onStart { _uiState.value = AppResult.Loading } + .catch { _uiState.value = AppResult.Error(com.aurora.next.domain.error.AppException.Unknown(it.message ?: "Unknown error")) } + .collect { app -> + _uiState.value = AppResult.Success(app) + } + } + } +} diff --git a/aurora-next/feature-home/build.gradle.kts b/aurora-next/feature-home/build.gradle.kts new file mode 100644 index 000000000..e8dc30c0d --- /dev/null +++ b/aurora-next/feature-home/build.gradle.kts @@ -0,0 +1,40 @@ +plugins { + alias(libs.plugins.jetbrains.kotlin.android) + alias(libs.plugins.jetbrains.kotlin.compose) + id("com.android.library") + alias(libs.plugins.hilt.android.plugin) + id("com.google.devtools.ksp") +} + +android { + namespace = "com.aurora.next.feature.home" + compileSdk = 35 + defaultConfig { + minSdk = 26 + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + kotlinOptions { + jvmTarget = "17" + } + } + buildFeatures { + compose = true + } +} + +dependencies { + implementation(project(":aurora-next:core-domain")) + implementation(project(":aurora-next:core-navigation")) + implementation(libs.androidx.activity.compose) + implementation(platform(libs.androidx.compose.bom)) + implementation(libs.androidx.ui) + implementation(libs.androidx.ui.graphics) + implementation(libs.androidx.ui.tooling.preview) + implementation(libs.androidx.material3) + implementation(libs.hilt.android.core) + ksp(libs.hilt.android.compiler) + implementation(libs.androidx.lifecycle.viewmodel.ktx) + implementation(libs.coil.compose) +} diff --git a/aurora-next/feature-home/src/main/kotlin/com/aurora/next/feature/home/ui/HomeScreen.kt b/aurora-next/feature-home/src/main/kotlin/com/aurora/next/feature/home/ui/HomeScreen.kt new file mode 100644 index 000000000..0e31acb0d --- /dev/null +++ b/aurora-next/feature-home/src/main/kotlin/com/aurora/next/feature/home/ui/HomeScreen.kt @@ -0,0 +1,92 @@ +package com.aurora.next.feature.home.ui + +import androidx.compose.foundation.clickable +import androidx.compose.foundation.layout.* +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.items +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.material3.* +import androidx.compose.runtime.Composable +import androidx.compose.runtime.collectAsState +import androidx.compose.runtime.getValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.layout.ContentScale +import androidx.compose.ui.unit.dp +import coil3.compose.AsyncImage +import com.aurora.next.domain.error.AppResult +import com.aurora.next.domain.model.App +import com.aurora.next.feature.home.viewmodel.HomeViewModel + +@OptIn(ExperimentalMaterial3Api::class) +@Composable +fun HomeScreen( + viewModel: HomeViewModel, + onAppClick: (String) -> Unit +) { + val state by viewModel.uiState.collectAsState() + + Scaffold( + topBar = { + TopAppBar(title = { Text("Aurora Next") }) + } + ) { padding -> + Box(modifier = Modifier.fillMaxSize().padding(padding)) { + when (val result = state) { + is AppResult.Loading -> { + CircularProgressIndicator(modifier = Modifier.align(Alignment.Center)) + } + is AppResult.Success -> { + AppList(apps = result.data, onAppClick = onAppClick) + } + is AppResult.Error -> { + Text( + text = "Error: ${result.exception.message}", + color = MaterialTheme.colorScheme.error, + modifier = Modifier.align(Alignment.Center) + ) + } + } + } + } +} + +@Composable +fun AppList(apps: List, onAppClick: (String) -> Unit) { + LazyColumn(modifier = Modifier.fillMaxSize()) { + items(apps) { app -> + AppItem(app = app, onClick = { onAppClick(app.packageName) }) + } + } +} + +@Composable +fun AppItem(app: App, onClick: () -> Unit) { + Row( + modifier = Modifier + .fillMaxWidth() + .clickable(onClick = onClick) + .padding(16.dp), + verticalAlignment = Alignment.CenterVertically + ) { + AsyncImage( + model = app.iconUrl, + contentDescription = null, + modifier = Modifier + .size(64.dp) + .clip(RoundedCornerShape(12.dp)), + contentScale = ContentScale.Crop + ) + Spacer(modifier = Modifier.width(16.dp)) + Column { + Text(text = app.name, style = MaterialTheme.typography.titleLarge) + Text(text = app.packageName, style = MaterialTheme.typography.bodyMedium) + Text( + text = "${app.version} • ${app.size / 1024 / 1024} MB", + style = MaterialTheme.typography.labelMedium, + color = MaterialTheme.colorScheme.outline + ) + } + } +} diff --git a/aurora-next/feature-home/src/main/kotlin/com/aurora/next/feature/home/viewmodel/HomeViewModel.kt b/aurora-next/feature-home/src/main/kotlin/com/aurora/next/feature/home/viewmodel/HomeViewModel.kt new file mode 100644 index 000000000..1ea58502d --- /dev/null +++ b/aurora-next/feature-home/src/main/kotlin/com/aurora/next/feature/home/viewmodel/HomeViewModel.kt @@ -0,0 +1,39 @@ +package com.aurora.next.feature.home.viewmodel + +import androidx.lifecycle.ViewModel +import androidx.lifecycle.viewModelScope +import com.aurora.next.domain.error.AppResult +import com.aurora.next.domain.model.App +import com.aurora.next.domain.usecase.GetAppsUseCase +import dagger.hilt.android.lifecycle.HiltViewModel +import kotlinx.coroutines.flow.MutableStateFlow +import kotlinx.coroutines.flow.StateFlow +import kotlinx.coroutines.flow.asStateFlow +import kotlinx.coroutines.flow.catch +import kotlinx.coroutines.flow.onStart +import kotlinx.coroutines.launch +import javax.inject.Inject + +@HiltViewModel +class HomeViewModel @Inject constructor( + private val getAppsUseCase: GetAppsUseCase +) : ViewModel() { + + private val _uiState = MutableStateFlow>>(AppResult.Loading) + val uiState: StateFlow>> = _uiState.asStateFlow() + + init { + fetchApps() + } + + fun fetchApps() { + viewModelScope.launch { + getAppsUseCase("featured") + .onStart { _uiState.value = AppResult.Loading } + .catch { _uiState.value = AppResult.Error(com.aurora.next.domain.error.AppException.Unknown(it.message ?: "Unknown error")) } + .collect { apps -> + _uiState.value = AppResult.Success(apps) + } + } + } +} diff --git a/settings.gradle.kts b/settings.gradle.kts index fd017b0e2..5e37b99e9 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,23 +1,3 @@ -/* - * Aurora Store - * Copyright (C) 2021, Rahul Kumar Patel - * Copyright (C) 2022, The Calyx Institute - * - * Aurora Store is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * Aurora Store is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with Aurora Store. If not, see . - * - */ - pluginManagement { repositories { gradlePluginPortal() @@ -30,7 +10,6 @@ dependencyResolutionManagement { repositories { google() mavenCentral() - // libsu is only available via jitpack maven("https://jitpack.io/") { content { includeModule("com.github.topjohnwu.libsu", "core") @@ -39,4 +18,14 @@ dependencyResolutionManagement { } } include(":app") +include(":aurora-next:core-domain") +include(":aurora-next:core-data") +include(":aurora-next:core-network") +include(":aurora-next:core-auth") +include(":aurora-next:core-installer") +include(":aurora-next:core-navigation") +include(":aurora-next:feature-home") +include(":aurora-next:feature-details") +include(":aurora-next:app") + rootProject.name = "AuroraStore4" From 0b7377457f9560048660c410699337bca2dec65f Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 07:27:29 +0000 Subject: [PATCH 3/9] feat: add Next.js web storefront and Vercel deployment support - Initialize Next.js 15 project in the root for Vercel deployment. - Implement Web MVP with Home (featured/categories/search) and App Details pages. - Configure Tailwind CSS, Lucide icons, and responsive design. - Fix "No Next.js version detected" by adding proper package.json and dependencies. - Optimize build configuration in next.config.mjs (remotePatterns, etc.). - Ensure co-existence with existing Android MVP in 'aurora-next/' directory. - Verify successful web build via 'npm run build'. --- .gitignore | 6 +- app/app/[packageName]/page.tsx | 286 ++++ app/globals.css | 21 + app/layout.tsx | 24 + app/page.tsx | 115 ++ components/app-card.tsx | 99 ++ components/category-badge.tsx | 34 + components/home/app-grid-section.tsx | 57 + components/home/featured-banner.tsx | 57 + components/home/search-hero.tsx | 77 + components/navbar.tsx | 136 ++ components/star-rating.tsx | 32 + components/ui/empty.tsx | 11 + lib/format.ts | 18 + lib/mock-data.ts | 101 ++ lib/types.ts | 57 + lib/utils.ts | 6 + next-env.d.ts | 5 + next.config.mjs | 17 + next.config.ts | 7 + package-lock.json | 2144 ++++++++++++++++++++++++++ package.json | 28 + postcss.config.js | 6 + tailwind.config.ts | 19 + tsconfig.json | 28 + vercel.json | 5 + 26 files changed, 3395 insertions(+), 1 deletion(-) create mode 100644 app/app/[packageName]/page.tsx create mode 100644 app/globals.css create mode 100644 app/layout.tsx create mode 100644 app/page.tsx create mode 100644 components/app-card.tsx create mode 100644 components/category-badge.tsx create mode 100644 components/home/app-grid-section.tsx create mode 100644 components/home/featured-banner.tsx create mode 100644 components/home/search-hero.tsx create mode 100644 components/navbar.tsx create mode 100644 components/star-rating.tsx create mode 100644 components/ui/empty.tsx create mode 100644 lib/format.ts create mode 100644 lib/mock-data.ts create mode 100644 lib/types.ts create mode 100644 lib/utils.ts create mode 100644 next-env.d.ts create mode 100644 next.config.mjs create mode 100644 next.config.ts create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 postcss.config.js create mode 100644 tailwind.config.ts create mode 100644 tsconfig.json create mode 100644 vercel.json diff --git a/.gitignore b/.gitignore index 6452a1e7a..7abcc84e1 100644 --- a/.gitignore +++ b/.gitignore @@ -46,4 +46,8 @@ signing.properties *.keystore -.kotlin/* \ No newline at end of file +.kotlin/* +# Next.js +.next/ +out/ +node_modules/ diff --git a/app/app/[packageName]/page.tsx b/app/app/[packageName]/page.tsx new file mode 100644 index 000000000..c9b64da43 --- /dev/null +++ b/app/app/[packageName]/page.tsx @@ -0,0 +1,286 @@ +import { notFound } from 'next/navigation' +import type { Metadata } from 'next' +import Image from 'next/image' +import Link from 'next/link' +import { + ArrowLeft, + Download, + GitBranch, + Shield, + AlertTriangle, + ExternalLink, + Package, + Cpu, + Calendar, + HardDrive, +} from 'lucide-react' +import { getAppByPackageName } from '@/lib/mock-data' +import { formatBytes, formatDate, formatRatingCount } from '@/lib/format' +import { CategoryBadge } from '@/components/category-badge' +import { StarRating } from '@/components/star-rating' +import { Navbar } from '@/components/navbar' + +interface AppPageProps { + params: Promise<{ packageName: string }> +} + +export async function generateMetadata({ params }: AppPageProps): Promise { + const { packageName } = await params + const app = getAppByPackageName(packageName) + if (!app) return { title: 'App not found' } + return { + title: `${app.name} — Aurora Next`, + description: app.shortDescription, + } +} + +export default async function AppPage({ params }: AppPageProps) { + const { packageName } = await params + const app = getAppByPackageName(packageName) + if (!app) notFound() + + const dangerousPermissions = app.permissions.filter((p) => p.dangerous) + const safePermissions = app.permissions.filter((p) => !p.dangerous) + + return ( + <> + +
+ +
+ +
+
+

+ Aurora Next — Open-source Android app store. Not affiliated with Google. +

+
+
+ + ) +} diff --git a/app/globals.css b/app/globals.css new file mode 100644 index 000000000..6b717ad34 --- /dev/null +++ b/app/globals.css @@ -0,0 +1,21 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +:root { + --background: #ffffff; + --foreground: #171717; +} + +@media (prefers-color-scheme: dark) { + :root { + --background: #0a0a0a; + --foreground: #ededed; + } +} + +body { + color: var(--foreground); + background: var(--background); + font-family: Arial, Helvetica, sans-serif; +} diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 000000000..fbe53a712 --- /dev/null +++ b/app/layout.tsx @@ -0,0 +1,24 @@ +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./globals.css"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "Aurora Next — Open-source Android App Store", + description: "Browse, search, and sideload Android apps privately. Aurora Next is an open-source Google Play alternative with no tracking.", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + + {children} + + + ); +} diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 000000000..fe115fea1 --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,115 @@ +import { Navbar } from '@/components/navbar' +import { SearchHero } from '@/components/home/search-hero' +import { FeaturedBanner } from '@/components/home/featured-banner' +import { AppGridSection } from '@/components/home/app-grid-section' +import { + MOCK_APPS, + getFeaturedApps, + getAppsByCategory, + searchApps, +} from '@/lib/mock-data' + +interface HomePageProps { + searchParams: Promise<{ q?: string; category?: string }> +} + +export default async function HomePage({ searchParams }: HomePageProps) { + const { q, category } = await searchParams + + const featuredApps = getFeaturedApps() + const primaryFeatured = featuredApps[0] + + let displayApps = MOCK_APPS + let sectionTitle = 'All Apps' + let sectionDescription: string | undefined + + if (q) { + displayApps = searchApps(q) + sectionTitle = `Results for "${q}"` + sectionDescription = + displayApps.length === 0 + ? undefined + : `Found ${displayApps.length} app${displayApps.length !== 1 ? 's' : ''}` + } else if (category) { + displayApps = getAppsByCategory(category) + sectionTitle = category + sectionDescription = `Apps in the ${category} category` + } + + const isFiltered = Boolean(q || category) + + return ( + <> + +
+ + +
+ {!isFiltered && primaryFeatured && ( +
+

Featured

+
+ {featuredApps.map((app) => ( + + ))} +
+
+ )} + + + + {!isFiltered && ( +
+

Browse by category

+
+ {(['Tools', 'Security', 'Media'] as const).map((cat) => { + const apps = getAppsByCategory(cat) + if (apps.length === 0) return null + return ( + + ) + })} +
+
+ )} +
+
+ + + + ) +} diff --git a/components/app-card.tsx b/components/app-card.tsx new file mode 100644 index 000000000..fa979abcc --- /dev/null +++ b/components/app-card.tsx @@ -0,0 +1,99 @@ +import Link from 'next/link' +import Image from 'next/image' +import { Star, GitBranch } from 'lucide-react' +import type { App } from '@/lib/types' +import { formatRatingCount } from '@/lib/format' +import { CategoryBadge } from './category-badge' + +interface AppCardProps { + app: App + variant?: 'grid' | 'row' +} + +export function AppCard({ app, variant = 'grid' }: AppCardProps) { + if (variant === 'row') { + return ( + +
+ {`${app.name} +
+
+
+

+ {app.name} +

+ {app.isOpenSource && ( + + )} +
+

{app.developer}

+
+
+
+
+ +
+ + ) + } + + return ( + +
+
+ {`${app.name} +
+
+
+

+ {app.name} +

+ {app.isOpenSource && ( + + )} +
+

{app.developer}

+ +
+
+ +

+ {app.shortDescription} +

+ +
+
+
+ {app.downloads} +
+ + ) +} diff --git a/components/category-badge.tsx b/components/category-badge.tsx new file mode 100644 index 000000000..14ed92bd8 --- /dev/null +++ b/components/category-badge.tsx @@ -0,0 +1,34 @@ +import { cn } from '@/lib/utils' +import type { AppCategory } from '@/lib/types' + +const CATEGORY_STYLES: Record = { + Productivity: 'bg-blue-500/10 text-blue-400 border-blue-500/20', + Social: 'bg-blue-500/10 text-blue-400 border-blue-500/20', + Games: 'bg-orange-500/10 text-orange-400 border-orange-500/20', + Tools: 'bg-slate-500/10 text-slate-400 border-slate-500/20', + Media: 'bg-rose-500/10 text-rose-400 border-rose-500/20', + Security: 'bg-green-500/10 text-green-400 border-green-500/20', + Finance: 'bg-yellow-500/10 text-yellow-400 border-yellow-500/20', + Health: 'bg-emerald-500/10 text-emerald-400 border-emerald-500/20', +} + +interface CategoryBadgeProps { + category: AppCategory + size?: 'xs' | 'sm' + className?: string +} + +export function CategoryBadge({ category, size = 'sm', className }: CategoryBadgeProps) { + return ( + + {category} + + ) +} diff --git a/components/home/app-grid-section.tsx b/components/home/app-grid-section.tsx new file mode 100644 index 000000000..9e3a50984 --- /dev/null +++ b/components/home/app-grid-section.tsx @@ -0,0 +1,57 @@ +'use client' + +import { useId } from 'react' +import type { App } from '@/lib/types' +import { AppCard } from '@/components/app-card' +import { Empty } from '@/components/ui/empty' +import { Search } from 'lucide-react' + +interface AppGridSectionProps { + apps: App[] + title: string + description?: string + variant?: 'grid' | 'row' +} + +export function AppGridSection({ apps, title, description, variant = 'grid' }: AppGridSectionProps) { + const headingId = useId() + + return ( +
+
+

+ {title} +

+ {apps.length > 0 && ( + {apps.length} apps + )} +
+ {description && ( +

{description}

+ )} + + {apps.length === 0 ? ( + } + /> + ) : variant === 'grid' ? ( +
+ {apps.map((app) => ( + + ))} +
+ ) : ( +
+ {apps.map((app) => ( + + ))} +
+ )} +
+ ) +} diff --git a/components/home/featured-banner.tsx b/components/home/featured-banner.tsx new file mode 100644 index 000000000..36993ba0a --- /dev/null +++ b/components/home/featured-banner.tsx @@ -0,0 +1,57 @@ +import Link from 'next/link' +import Image from 'next/image' +import { ArrowRight, GitBranch } from 'lucide-react' +import type { App } from '@/lib/types' +import { CategoryBadge } from '@/components/category-badge' +import { StarRating } from '@/components/star-rating' + +interface FeaturedBannerProps { + app: App +} + +export function FeaturedBanner({ app }: FeaturedBannerProps) { + return ( + +
+
+
+ {`${app.name} +
+
+ +
+
+ + Featured + + +
+

+ {app.name} +

+

{app.developer}

+

+ {app.shortDescription} +

+
+ + {app.rating.average.toFixed(1)} + + View app + +
+
+
+ + ) +} diff --git a/components/home/search-hero.tsx b/components/home/search-hero.tsx new file mode 100644 index 000000000..1d57f8939 --- /dev/null +++ b/components/home/search-hero.tsx @@ -0,0 +1,77 @@ +'use client' + +import { useState } from 'react' +import { useRouter } from 'next/navigation' +import { Search } from 'lucide-react' +import { ALL_CATEGORIES } from '@/lib/mock-data' + +interface SearchHeroProps { + initialQuery?: string +} + +export function SearchHero({ initialQuery = '' }: SearchHeroProps) { + const [query, setQuery] = useState(initialQuery) + const router = useRouter() + + function handleSubmit(e: React.FormEvent) { + e.preventDefault() + const q = query.trim() + router.push(q ? `/?q=${encodeURIComponent(q)}` : '/') + } + + function handleCategory(cat: string) { + router.push(`/?category=${encodeURIComponent(cat)}`) + } + + return ( +
+
+

+ Open-source Android apps,{' '} + without the tracking +

+

+ Browse, search, and install apps privately. No account required. +

+ +
+ +
+
+ +
+ +
+ {ALL_CATEGORIES.map((cat) => ( + + ))} +
+
+
+ ) +} diff --git a/components/navbar.tsx b/components/navbar.tsx new file mode 100644 index 000000000..ed0cb8f45 --- /dev/null +++ b/components/navbar.tsx @@ -0,0 +1,136 @@ +'use client' + +import Link from 'next/link' +import { useState, useEffect, Suspense } from 'react' +import { Search, Menu, X, Download, Shield } from 'lucide-react' +import { useRouter, useSearchParams } from 'next/navigation' + +function NavbarContent() { + const [menuOpen, setMenuOpen] = useState(false) + const searchParams = useSearchParams() + const [query, setQuery] = useState(searchParams.get('q') ?? '') + const router = useRouter() + + useEffect(() => { + setQuery(searchParams.get('q') ?? '') + }, [searchParams]) + + function handleSearch(e: React.FormEvent) { + e.preventDefault() + if (query.trim()) { + router.push(`/?q=${encodeURIComponent(query.trim())}`) + } + } + + return ( +
+
+
+ +
+
+ + AuroraNext + + + +
+ +
+ + {menuOpen && ( +
+
+ +
+ )} +
+
+ ) +} + +export function Navbar() { + return ( + }> + + + ) +} diff --git a/components/star-rating.tsx b/components/star-rating.tsx new file mode 100644 index 000000000..4f2c3d382 --- /dev/null +++ b/components/star-rating.tsx @@ -0,0 +1,32 @@ +import { Star } from 'lucide-react' +import { cn } from '@/lib/utils' + +interface StarRatingProps { + value: number + max?: number + className?: string +} + +export function StarRating({ value, max = 5, className }: StarRatingProps) { + return ( + + {Array.from({ length: max }).map((_, i) => { + const filled = i < Math.floor(value) + const partial = !filled && i < value + return ( + + + ) + })} + + ) +} diff --git a/components/ui/empty.tsx b/components/ui/empty.tsx new file mode 100644 index 000000000..f13bcbeae --- /dev/null +++ b/components/ui/empty.tsx @@ -0,0 +1,11 @@ +import { ReactNode } from "react"; + +export function Empty({ title, description, icon }: { title: string, description: string, icon: ReactNode }) { + return ( +
+
{icon}
+

{title}

+

{description}

+
+ ); +} diff --git a/lib/format.ts b/lib/format.ts new file mode 100644 index 000000000..0372f0cf8 --- /dev/null +++ b/lib/format.ts @@ -0,0 +1,18 @@ +export function formatBytes(bytes: number): string { + if (bytes < 1000000) return `${(bytes / 1000).toFixed(0)} KB` + return `${(bytes / 1000000).toFixed(1)} MB` +} + +export function formatRatingCount(count: number): string { + if (count >= 1000000) return `${(count / 1000000).toFixed(1)}M` + if (count >= 1000) return `${(count / 1000).toFixed(0)}K` + return String(count) +} + +export function formatDate(dateStr: string): string { + return new Date(`${dateStr}T00:00:00`).toLocaleDateString('en-US', { + year: 'numeric', + month: 'short', + day: 'numeric', + }) +} diff --git a/lib/mock-data.ts b/lib/mock-data.ts new file mode 100644 index 000000000..8ec8c2a80 --- /dev/null +++ b/lib/mock-data.ts @@ -0,0 +1,101 @@ +import type { App } from './types' + +export const MOCK_APPS: App[] = [ + { + packageName: 'org.signal.messenger', + name: 'Signal', + developer: 'Signal Foundation', + category: 'Social', + shortDescription: 'Private messenger. No ads, no trackers, no compromise.', + longDescription: + 'Signal is a cross-platform encrypted messaging service. All messages are end-to-end encrypted, and Signal collects minimal metadata. It is free, open-source, and supported by grants and donations.', + iconUrl: 'https://play-lh.googleusercontent.com/a1msHo9W52_K36SWfDyfPkHNtpDU_j9WKH7yrfzVyEqQC5hf2wROWuGfcvXzs4OGfQ', + headerImageUrl: 'https://play-lh.googleusercontent.com/a1msHo9W52_K36SWfDyfPkHNtpDU_j9WKH7yrfzVyEqQC5hf2wROWuGfcvXzs4OGfQ', + screenshotUrls: [], + rating: { average: 4.6, count: 2100000 }, + downloads: '100M+', + version: { + versionName: '7.5.1', + versionCode: 7501, + minSdk: 24, + targetSdk: 34, + sizeBytes: 41000000, + uploadDate: '2025-11-12', + changelog: 'Improved notification reliability, bug fixes.', + }, + permissions: [ + { name: 'CAMERA', description: 'Take photos and videos', dangerous: true }, + { name: 'CONTACTS', description: 'Read your contacts', dangerous: true }, + { name: 'INTERNET', description: 'Have full network access', dangerous: false }, + ], + trackers: [], + isOpenSource: true, + sourceUrl: 'https://github.com/signalapp/Signal-Android', + isFeatured: true, + }, + { + packageName: 'org.mozilla.firefox', + name: 'Firefox', + developer: 'Mozilla', + category: 'Tools', + shortDescription: 'Fast, private and secure browser by Mozilla.', + longDescription: + 'Firefox for Android is built on GeckoView. It supports uBlock Origin and hundreds of other extensions. Enhanced Tracking Protection blocks trackers by default.', + iconUrl: 'https://play-lh.googleusercontent.com/jLchAkTnGtgOBKyliuVnH5-JqJjHhL1TEKEAHfhQjGrAI-bdCvEE9fzgCgdV4OevLYE', + headerImageUrl: 'https://play-lh.googleusercontent.com/jLchAkTnGtgOBKyliuVnH5-JqJjHhL1TEKEAHfhQjGrAI-bdCvEE9fzgCgdV4OevLYE', + screenshotUrls: [], + rating: { average: 4.3, count: 1500000 }, + downloads: '500M+', + version: { + versionName: '133.0', + versionCode: 2016133000, + minSdk: 21, + targetSdk: 34, + sizeBytes: 92000000, + uploadDate: '2026-01-10', + changelog: 'Improved tab management. Updated security patches.', + }, + permissions: [ + { name: 'INTERNET', description: 'Have full network access', dangerous: false }, + { name: 'CAMERA', description: 'Take photos for web forms', dangerous: true }, + ], + trackers: [{ name: 'Adjust', website: 'https://www.adjust.com' }], + isOpenSource: true, + sourceUrl: 'https://github.com/mozilla-mobile/fenix', + isFeatured: true, + } +] + +export function getAppByPackageName(packageName: string): App | undefined { + return MOCK_APPS.find((app) => app.packageName === packageName) +} + +export function getAppsByCategory(category: string): App[] { + return MOCK_APPS.filter((app) => app.category === category) +} + +export function getFeaturedApps(): App[] { + return MOCK_APPS.filter((app) => app.isFeatured) +} + +export function searchApps(query: string): App[] { + const q = query.toLowerCase() + return MOCK_APPS.filter( + (app) => + app.name.toLowerCase().includes(q) || + app.developer.toLowerCase().includes(q) || + app.shortDescription.toLowerCase().includes(q) || + app.packageName.toLowerCase().includes(q), + ) +} + +export const ALL_CATEGORIES = [ + 'Productivity', + 'Social', + 'Games', + 'Tools', + 'Media', + 'Security', + 'Finance', + 'Health', +] as const diff --git a/lib/types.ts b/lib/types.ts new file mode 100644 index 000000000..e634d2fda --- /dev/null +++ b/lib/types.ts @@ -0,0 +1,57 @@ +export type AppCategory = + | 'Productivity' + | 'Social' + | 'Games' + | 'Tools' + | 'Media' + | 'Security' + | 'Finance' + | 'Health' + +export type InstallMethod = 'session' | 'root' | 'shizuku' + +export interface AppRating { + average: number + count: number +} + +export interface AppPermission { + name: string + description: string + dangerous: boolean +} + +export interface AppTracker { + name: string + website: string +} + +export interface AppVersion { + versionName: string + versionCode: number + minSdk: number + targetSdk: number + sizeBytes: number + uploadDate: string + changelog: string +} + +export interface App { + packageName: string + name: string + developer: string + category: AppCategory + shortDescription: string + longDescription: string + iconUrl: string + headerImageUrl: string + screenshotUrls: string[] + rating: AppRating + downloads: string + version: AppVersion + permissions: AppPermission[] + trackers: AppTracker[] + isOpenSource: boolean + sourceUrl?: string + isFeatured?: boolean +} diff --git a/lib/utils.ts b/lib/utils.ts new file mode 100644 index 000000000..d084ccade --- /dev/null +++ b/lib/utils.ts @@ -0,0 +1,6 @@ +import { type ClassValue, clsx } from "clsx" +import { twMerge } from "tailwind-merge" + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)) +} diff --git a/next-env.d.ts b/next-env.d.ts new file mode 100644 index 000000000..1b3be0840 --- /dev/null +++ b/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/next.config.mjs b/next.config.mjs new file mode 100644 index 000000000..00c8f0066 --- /dev/null +++ b/next.config.mjs @@ -0,0 +1,17 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "play-lh.googleusercontent.com", + }, + { + protocol: "https", + hostname: "lh3.googleusercontent.com", + }, + ], + }, +} + +export default nextConfig diff --git a/next.config.ts b/next.config.ts new file mode 100644 index 000000000..e9ffa3083 --- /dev/null +++ b/next.config.ts @@ -0,0 +1,7 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + /* config options here */ +}; + +export default nextConfig; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..bdd2a184a --- /dev/null +++ b/package-lock.json @@ -0,0 +1,2144 @@ +{ + "name": "aurora-next-web", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "aurora-next-web", + "version": "1.0.0", + "dependencies": { + "clsx": "^2.1.1", + "lucide-react": "^0.468.0", + "next": "15.1.4", + "react": "19.0.0", + "react-dom": "19.0.0", + "tailwind-merge": "^2.5.5" + }, + "devDependencies": { + "@types/node": "22.10.1", + "@types/react": "19.0.1", + "@types/react-dom": "19.0.1", + "autoprefixer": "^10.4.20", + "postcss": "^8.4.49", + "tailwindcss": "^3.4.16", + "typescript": "5.7.2" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.1.tgz", + "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", + "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.0.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", + "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.0.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", + "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", + "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", + "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", + "cpu": [ + "arm" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", + "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", + "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", + "cpu": [ + "s390x" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", + "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", + "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", + "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", + "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", + "cpu": [ + "arm" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.0.5" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", + "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.0.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", + "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", + "cpu": [ + "s390x" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.0.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", + "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.0.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", + "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", + "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.0.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", + "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.2.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", + "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", + "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@next/env": { + "version": "15.1.4", + "resolved": "https://registry.npmjs.org/@next/env/-/env-15.1.4.tgz", + "integrity": "sha512-2fZ5YZjedi5AGaeoaC0B20zGntEHRhi2SdWcu61i48BllODcAmmtj8n7YarSPt4DaTsJaBFdxQAVEVzgmx2Zpw==", + "license": "MIT" + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "15.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.1.4.tgz", + "integrity": "sha512-wBEMBs+np+R5ozN1F8Y8d/Dycns2COhRnkxRc+rvnbXke5uZBHkUGFgWxfTXn5rx7OLijuUhyfB+gC/ap58dDw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "15.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.1.4.tgz", + "integrity": "sha512-7sgf5rM7Z81V9w48F02Zz6DgEJulavC0jadab4ZsJ+K2sxMNK0/BtF8J8J3CxnsJN3DGcIdC260wEKssKTukUw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "15.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.1.4.tgz", + "integrity": "sha512-JaZlIMNaJenfd55kjaLWMfok+vWBlcRxqnRoZrhFQrhM1uAehP3R0+Aoe+bZOogqlZvAz53nY/k3ZyuKDtT2zQ==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "15.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.1.4.tgz", + "integrity": "sha512-7EBBjNoyTO2ipMDgCiORpwwOf5tIueFntKjcN3NK+GAQD7OzFJe84p7a2eQUeWdpzZvhVXuAtIen8QcH71ZCOQ==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "15.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.1.4.tgz", + "integrity": "sha512-9TGEgOycqZFuADyFqwmK/9g6S0FYZ3tphR4ebcmCwhL8Y12FW8pIBKJvSwV+UBjMkokstGNH+9F8F031JZKpHw==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "15.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.1.4.tgz", + "integrity": "sha512-0578bLRVDJOh+LdIoKvgNDz77+Bd85c5JrFgnlbI1SM3WmEQvsjxTA8ATu9Z9FCiIS/AliVAW2DV/BDwpXbtiQ==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "15.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.1.4.tgz", + "integrity": "sha512-JgFCiV4libQavwII+kncMCl30st0JVxpPOtzWcAI2jtum4HjYaclobKhj+JsRu5tFqMtA5CJIa0MvYyuu9xjjQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "15.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.1.4.tgz", + "integrity": "sha512-xxsJy9wzq7FR5SqPCUqdgSXiNXrMuidgckBa8nH9HtjjxsilgcN6VgXF6tZ3uEWuVEadotQJI8/9EQ6guTC4Yw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", + "license": "Apache-2.0" + }, + "node_modules/@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } + }, + "node_modules/@types/node": { + "version": "22.10.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.1.tgz", + "integrity": "sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.20.0" + } + }, + "node_modules/@types/react": { + "version": "19.0.1", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.1.tgz", + "integrity": "sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.0.1", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.0.1.tgz", + "integrity": "sha512-hljHij7MpWPKF6u5vojuyfV0YA4YURsQG7KT6SzV0Zs2BXAtgdTxG6A229Ub/xiWV4w/7JL8fi6aAyjshH4meA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true, + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true, + "license": "MIT" + }, + "node_modules/autoprefixer": { + "version": "10.4.27", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.27.tgz", + "integrity": "sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.28.1", + "caniuse-lite": "^1.0.30001774", + "fraction.js": "^5.3.4", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.9", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.9.tgz", + "integrity": "sha512-OZd0e2mU11ClX8+IdXe3r0dbqMEznRiT4TfbhYIbcRPZkqJ7Qwer8ij3GZAmLsRKa+II9V1v5czCkvmHH3XZBg==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001780", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001780.tgz", + "integrity": "sha512-llngX0E7nQci5BPJDqoZSbuZ5Bcs9F5db7EtgfwBerX9XGtkkiO4NwfDDIRzHTTwcYC8vC7bmeUEPGrKlR/TkQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "license": "MIT", + "optional": true, + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT", + "optional": true + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "license": "MIT", + "optional": true, + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "license": "Apache-2.0", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.321", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.321.tgz", + "integrity": "sha512-L2C7Q279W2D/J4PLZLk7sebOILDSWos7bMsMNN06rK482umHUrh/3lM8G7IlHFOYip2oAg5nha1rCMxr/rs6ZQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fraction.js": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", + "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-arrayish": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.4.tgz", + "integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==", + "license": "MIT", + "optional": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jiti": { + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true, + "license": "MIT" + }, + "node_modules/lucide-react": { + "version": "0.468.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.468.0.tgz", + "integrity": "sha512-6koYRhnM2N0GGZIdXzSeiNwguv1gt/FAjZOiPl76roBi3xKEXa4WmfpxgQwTTL4KipXjefrnf3oV4IsYhi4JFA==", + "license": "ISC", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/next": { + "version": "15.1.4", + "resolved": "https://registry.npmjs.org/next/-/next-15.1.4.tgz", + "integrity": "sha512-mTaq9dwaSuwwOrcu3ebjDYObekkxRnXpuVL21zotM8qE2W0HBOdVIdg2Li9QjMEZrj73LN96LcWcz62V19FjAg==", + "deprecated": "This version has a security vulnerability. Please upgrade to a patched version. See https://nextjs.org/blog/CVE-2025-66478 for more details.", + "license": "MIT", + "dependencies": { + "@next/env": "15.1.4", + "@swc/counter": "0.1.3", + "@swc/helpers": "0.5.15", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": "^18.18.0 || ^19.8.0 || >= 20.0.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "15.1.4", + "@next/swc-darwin-x64": "15.1.4", + "@next/swc-linux-arm64-gnu": "15.1.4", + "@next/swc-linux-arm64-musl": "15.1.4", + "@next/swc-linux-x64-gnu": "15.1.4", + "@next/swc-linux-x64-musl": "15.1.4", + "@next/swc-win32-arm64-msvc": "15.1.4", + "@next/swc-win32-x64-msvc": "15.1.4", + "sharp": "^0.33.5" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.41.2", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-releases": { + "version": "2.0.36", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz", + "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.5.8", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz", + "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz", + "integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", + "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.1.1" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz", + "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz", + "integrity": "sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.25.0" + }, + "peerDependencies": { + "react": "^19.0.0" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/scheduler": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz", + "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/sharp": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz", + "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==", + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "color": "^4.2.3", + "detect-libc": "^2.0.3", + "semver": "^7.6.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.33.5", + "@img/sharp-darwin-x64": "0.33.5", + "@img/sharp-libvips-darwin-arm64": "1.0.4", + "@img/sharp-libvips-darwin-x64": "1.0.4", + "@img/sharp-libvips-linux-arm": "1.0.5", + "@img/sharp-libvips-linux-arm64": "1.0.4", + "@img/sharp-libvips-linux-s390x": "1.0.4", + "@img/sharp-libvips-linux-x64": "1.0.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4", + "@img/sharp-libvips-linuxmusl-x64": "1.0.4", + "@img/sharp-linux-arm": "0.33.5", + "@img/sharp-linux-arm64": "0.33.5", + "@img/sharp-linux-s390x": "0.33.5", + "@img/sharp-linux-x64": "0.33.5", + "@img/sharp-linuxmusl-arm64": "0.33.5", + "@img/sharp-linuxmusl-x64": "0.33.5", + "@img/sharp-wasm32": "0.33.5", + "@img/sharp-win32-ia32": "0.33.5", + "@img/sharp-win32-x64": "0.33.5" + } + }, + "node_modules/simple-swizzle": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.4.tgz", + "integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==", + "license": "MIT", + "optional": true, + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", + "license": "MIT", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/sucrase": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz", + "integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "tinyglobby": "^0.2.11", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwind-merge": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.1.tgz", + "integrity": "sha512-Oo6tHdpZsGpkKG88HJ8RR1rg/RdnEkQEfMoEk2x1XRI3F1AxeU+ijRXpiVUF4UbLfcxxRGw6TbUINKYdWVsQTQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/dcastil" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.19", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.19.tgz", + "integrity": "sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.7", + "lilconfig": "^3.1.3", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/typescript": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", + "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "dev": true, + "license": "MIT" + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 000000000..68d8bc959 --- /dev/null +++ b/package.json @@ -0,0 +1,28 @@ +{ + "name": "aurora-next-web", + "version": "1.0.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint" + }, + "dependencies": { + "next": "15.1.4", + "react": "19.0.0", + "react-dom": "19.0.0", + "lucide-react": "^0.468.0", + "clsx": "^2.1.1", + "tailwind-merge": "^2.5.5" + }, + "devDependencies": { + "@types/node": "22.10.1", + "@types/react": "19.0.1", + "@types/react-dom": "19.0.1", + "autoprefixer": "^10.4.20", + "postcss": "^8.4.49", + "tailwindcss": "^3.4.16", + "typescript": "5.7.2" + } +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 000000000..12a703d90 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/tailwind.config.ts b/tailwind.config.ts new file mode 100644 index 000000000..d43da912d --- /dev/null +++ b/tailwind.config.ts @@ -0,0 +1,19 @@ +import type { Config } from "tailwindcss"; + +const config: Config = { + content: [ + "./pages/**/*.{js,ts,jsx,tsx,mdx}", + "./components/**/*.{js,ts,jsx,tsx,mdx}", + "./app/**/*.{js,ts,jsx,tsx,mdx}", + ], + theme: { + extend: { + colors: { + background: "var(--background)", + foreground: "var(--foreground)", + }, + }, + }, + plugins: [], +}; +export default config; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..e06a4454a --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} diff --git a/vercel.json b/vercel.json new file mode 100644 index 000000000..8ea0f21d0 --- /dev/null +++ b/vercel.json @@ -0,0 +1,5 @@ +{ + "framework": "nextjs", + "buildCommand": "npm run build", + "installCommand": "npm install" +} From c4fb7b727bbee4f430a4f8cb2fe93c78a3b6b80f Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 07:45:08 +0000 Subject: [PATCH 4/9] chore: update web stack to latest Next.js, React, and Tailwind CSS - Update Next.js to 16.2.0 and React to 19.2.4. - Upgrade to Tailwind CSS 4.2.2 and migrate to @tailwindcss/postcss. - Update tsconfig.json with modern moduleResolution (bundler) and jsx (react-jsx) settings. - Add Suspense boundary in layout.tsx to handle useSearchParams() in Navbar. - Refactor SearchHero to use URL-driven search state and eliminate local query state. - Add 'use client' to AppGridSection to ensure safe useId() hydration. - Verify successful build and homepage loading. --- app/globals.css | 4 +- app/layout.tsx | 29 +- app/page.tsx | 2 +- components/home/search-hero.tsx | 80 +- homepage_content.html | 2 + lib/types.ts | 2 +- next-env.d.ts | 1 + package-lock.json | 2146 ++++++++++++++----------------- package.json | 25 +- postcss.config.js | 3 +- tsconfig.json | 26 +- 11 files changed, 1059 insertions(+), 1261 deletions(-) create mode 100644 homepage_content.html diff --git a/app/globals.css b/app/globals.css index 6b717ad34..5dd3590fb 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,6 +1,4 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; +@import "tailwindcss"; :root { --background: #ffffff; diff --git a/app/layout.tsx b/app/layout.tsx index fbe53a712..d3b9e6535 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,24 +1,33 @@ -import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import "./globals.css"; +import type { Metadata, Viewport } from 'next' +import { Suspense } from 'react' +import { Inter } from 'next/font/google' +import './globals.css' -const inter = Inter({ subsets: ["latin"] }); +const inter = Inter({ subsets: ['latin'] }) export const metadata: Metadata = { - title: "Aurora Next — Open-source Android App Store", - description: "Browse, search, and sideload Android apps privately. Aurora Next is an open-source Google Play alternative with no tracking.", -}; + title: 'Aurora Next — Open-source Android App Store', + description: + 'Browse, search, and sideload Android apps privately. Aurora Next is an open-source Google Play alternative with no tracking.', + keywords: ['android', 'app store', 'aurora store', 'open source', 'sideload', 'apk'], +} + +export const viewport: Viewport = { + themeColor: '#2563eb', +} export default function RootLayout({ children, }: Readonly<{ - children: React.ReactNode; + children: React.ReactNode }>) { return ( - {children} + }> + {children} + - ); + ) } diff --git a/app/page.tsx b/app/page.tsx index fe115fea1..0cbfb0a1e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -42,7 +42,7 @@ export default async function HomePage({ searchParams }: HomePageProps) { <>
- +
{!isFiltered && primaryFeatured && ( diff --git a/components/home/search-hero.tsx b/components/home/search-hero.tsx index 1d57f8939..f87ca60c6 100644 --- a/components/home/search-hero.tsx +++ b/components/home/search-hero.tsx @@ -1,23 +1,16 @@ 'use client' -import { useState } from 'react' import { useRouter } from 'next/navigation' -import { Search } from 'lucide-react' import { ALL_CATEGORIES } from '@/lib/mock-data' interface SearchHeroProps { initialQuery?: string + activeCategory?: string } -export function SearchHero({ initialQuery = '' }: SearchHeroProps) { - const [query, setQuery] = useState(initialQuery) +export function SearchHero({ initialQuery, activeCategory }: SearchHeroProps) { const router = useRouter() - - function handleSubmit(e: React.FormEvent) { - e.preventDefault() - const q = query.trim() - router.push(q ? `/?q=${encodeURIComponent(q)}` : '/') - } + const isFiltering = Boolean(initialQuery || activeCategory) function handleCategory(cat: string) { router.push(`/?category=${encodeURIComponent(cat)}`) @@ -26,46 +19,43 @@ export function SearchHero({ initialQuery = '' }: SearchHeroProps) { return (
-

- Open-source Android apps,{' '} - without the tracking -

-

- Browse, search, and install apps privately. No account required. -

- -
- -
-
- -
+ {isFiltering ? ( +

+ Showing results for{' '} + + {initialQuery ?? activeCategory} + + {' · '} + +

+ ) : ( + <> +

+ Open-source Android apps,{' '} + without the tracking +

+

+ Browse, search, and install apps privately. No account required. +

+ + )} -
+
{ALL_CATEGORIES.map((cat) => ( diff --git a/homepage_content.html b/homepage_content.html new file mode 100644 index 000000000..371cfff09 --- /dev/null +++ b/homepage_content.html @@ -0,0 +1,2 @@ +Aurora Next — Open-source Android App Store

Open-source Android apps, without the tracking

Browse, search, and install apps privately. No account required.

Aurora Next — Open-source Android app store. Not affiliated with Google.

\ No newline at end of file diff --git a/lib/types.ts b/lib/types.ts index e634d2fda..64716e986 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -33,7 +33,7 @@ export interface AppVersion { targetSdk: number sizeBytes: number uploadDate: string - changelog: string + changelog?: string } export interface App { diff --git a/next-env.d.ts b/next-env.d.ts index 1b3be0840..9edff1c7c 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,5 +1,6 @@ /// /// +import "./.next/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/package-lock.json b/package-lock.json index bdd2a184a..ebe3dbdd8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,20 +9,21 @@ "version": "1.0.0", "dependencies": { "clsx": "^2.1.1", - "lucide-react": "^0.468.0", - "next": "15.1.4", - "react": "19.0.0", - "react-dom": "19.0.0", - "tailwind-merge": "^2.5.5" + "lucide-react": "^0.577.0", + "next": "^16.2.0", + "react": "^19.2.4", + "react-dom": "^19.2.4", + "tailwind-merge": "^3.5.0" }, "devDependencies": { - "@types/node": "22.10.1", - "@types/react": "19.0.1", - "@types/react-dom": "19.0.1", - "autoprefixer": "^10.4.20", - "postcss": "^8.4.49", - "tailwindcss": "^3.4.16", - "typescript": "5.7.2" + "@tailwindcss/postcss": "^4.2.2", + "@types/node": "^25.5.0", + "@types/react": "^19.2.14", + "@types/react-dom": "^19.2.3", + "autoprefixer": "^10.4.27", + "postcss": "^8.5.8", + "tailwindcss": "^4.2.2", + "typescript": "^5.9.3" } }, "node_modules/@alloc/quick-lru": { @@ -48,10 +49,20 @@ "tslib": "^2.4.0" } }, + "node_modules/@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=18" + } + }, "node_modules/@img/sharp-darwin-arm64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", - "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", "cpu": [ "arm64" ], @@ -67,13 +78,13 @@ "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-darwin-arm64": "1.0.4" + "@img/sharp-libvips-darwin-arm64": "1.2.4" } }, "node_modules/@img/sharp-darwin-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", - "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", "cpu": [ "x64" ], @@ -89,13 +100,13 @@ "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-darwin-x64": "1.0.4" + "@img/sharp-libvips-darwin-x64": "1.2.4" } }, "node_modules/@img/sharp-libvips-darwin-arm64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", - "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", "cpu": [ "arm64" ], @@ -109,9 +120,9 @@ } }, "node_modules/@img/sharp-libvips-darwin-x64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", - "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", "cpu": [ "x64" ], @@ -125,9 +136,9 @@ } }, "node_modules/@img/sharp-libvips-linux-arm": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", - "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", "cpu": [ "arm" ], @@ -144,9 +155,9 @@ } }, "node_modules/@img/sharp-libvips-linux-arm64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", - "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", "cpu": [ "arm64" ], @@ -162,10 +173,48 @@ "url": "https://opencollective.com/libvips" } }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, "node_modules/@img/sharp-libvips-linux-s390x": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", - "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", "cpu": [ "s390x" ], @@ -182,9 +231,9 @@ } }, "node_modules/@img/sharp-libvips-linux-x64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", - "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", "cpu": [ "x64" ], @@ -201,9 +250,9 @@ } }, "node_modules/@img/sharp-libvips-linuxmusl-arm64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", - "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", "cpu": [ "arm64" ], @@ -220,9 +269,9 @@ } }, "node_modules/@img/sharp-libvips-linuxmusl-x64": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", - "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", "cpu": [ "x64" ], @@ -239,9 +288,9 @@ } }, "node_modules/@img/sharp-linux-arm": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", - "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", "cpu": [ "arm" ], @@ -260,13 +309,13 @@ "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linux-arm": "1.0.5" + "@img/sharp-libvips-linux-arm": "1.2.4" } }, "node_modules/@img/sharp-linux-arm64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", - "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", "cpu": [ "arm64" ], @@ -285,13 +334,63 @@ "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linux-arm64": "1.0.4" + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" } }, "node_modules/@img/sharp-linux-s390x": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", - "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", "cpu": [ "s390x" ], @@ -310,13 +409,13 @@ "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linux-s390x": "1.0.4" + "@img/sharp-libvips-linux-s390x": "1.2.4" } }, "node_modules/@img/sharp-linux-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", - "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", "cpu": [ "x64" ], @@ -335,13 +434,13 @@ "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linux-x64": "1.0.4" + "@img/sharp-libvips-linux-x64": "1.2.4" } }, "node_modules/@img/sharp-linuxmusl-arm64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", - "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", "cpu": [ "arm64" ], @@ -360,13 +459,13 @@ "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" } }, "node_modules/@img/sharp-linuxmusl-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", - "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", "cpu": [ "x64" ], @@ -385,21 +484,40 @@ "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-x64": "1.0.4" + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" } }, "node_modules/@img/sharp-wasm32": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", - "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", "cpu": [ "wasm32" ], "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", "optional": true, "dependencies": { - "@emnapi/runtime": "^1.2.0" + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], "engines": { "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, @@ -408,9 +526,9 @@ } }, "node_modules/@img/sharp-win32-ia32": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", - "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", "cpu": [ "ia32" ], @@ -427,9 +545,9 @@ } }, "node_modules/@img/sharp-win32-x64": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", - "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", "cpu": [ "x64" ], @@ -456,6 +574,17 @@ "@jridgewell/trace-mapping": "^0.3.24" } }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", @@ -485,15 +614,15 @@ } }, "node_modules/@next/env": { - "version": "15.1.4", - "resolved": "https://registry.npmjs.org/@next/env/-/env-15.1.4.tgz", - "integrity": "sha512-2fZ5YZjedi5AGaeoaC0B20zGntEHRhi2SdWcu61i48BllODcAmmtj8n7YarSPt4DaTsJaBFdxQAVEVzgmx2Zpw==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.0.tgz", + "integrity": "sha512-OZIbODWWAi0epQRCRjNe1VO45LOFBzgiyqmTLzIqWq6u1wrxKnAyz1HH6tgY/Mc81YzIjRPoYsPAEr4QV4l9TA==", "license": "MIT" }, "node_modules/@next/swc-darwin-arm64": { - "version": "15.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.1.4.tgz", - "integrity": "sha512-wBEMBs+np+R5ozN1F8Y8d/Dycns2COhRnkxRc+rvnbXke5uZBHkUGFgWxfTXn5rx7OLijuUhyfB+gC/ap58dDw==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.0.tgz", + "integrity": "sha512-/JZsqKzKt01IFoiLLAzlNqys7qk2F3JkcUhj50zuRhKDQkZNOz9E5N6wAQWprXdsvjRP4lTFj+/+36NSv5AwhQ==", "cpu": [ "arm64" ], @@ -507,9 +636,9 @@ } }, "node_modules/@next/swc-darwin-x64": { - "version": "15.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.1.4.tgz", - "integrity": "sha512-7sgf5rM7Z81V9w48F02Zz6DgEJulavC0jadab4ZsJ+K2sxMNK0/BtF8J8J3CxnsJN3DGcIdC260wEKssKTukUw==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.0.tgz", + "integrity": "sha512-/hV8erWq4SNlVgglUiW5UmQ5Hwy5EW/AbbXlJCn6zkfKxTy/E/U3V8U1Ocm2YCTUoFgQdoMxRyRMOW5jYy4ygg==", "cpu": [ "x64" ], @@ -523,9 +652,9 @@ } }, "node_modules/@next/swc-linux-arm64-gnu": { - "version": "15.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.1.4.tgz", - "integrity": "sha512-JaZlIMNaJenfd55kjaLWMfok+vWBlcRxqnRoZrhFQrhM1uAehP3R0+Aoe+bZOogqlZvAz53nY/k3ZyuKDtT2zQ==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.0.tgz", + "integrity": "sha512-GkjL/Q7MWOwqWR9zoxu1TIHzkOI2l2BHCf7FzeQG87zPgs+6WDh+oC9Sw9ARuuL/FUk6JNCgKRkA6rEQYadUaw==", "cpu": [ "arm64" ], @@ -542,9 +671,9 @@ } }, "node_modules/@next/swc-linux-arm64-musl": { - "version": "15.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.1.4.tgz", - "integrity": "sha512-7EBBjNoyTO2ipMDgCiORpwwOf5tIueFntKjcN3NK+GAQD7OzFJe84p7a2eQUeWdpzZvhVXuAtIen8QcH71ZCOQ==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.0.tgz", + "integrity": "sha512-1ffhC6KY5qWLg5miMlKJp3dZbXelEfjuXt1qcp5WzSCQy36CV3y+JT7OC1WSFKizGQCDOcQbfkH/IjZP3cdRNA==", "cpu": [ "arm64" ], @@ -561,9 +690,9 @@ } }, "node_modules/@next/swc-linux-x64-gnu": { - "version": "15.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.1.4.tgz", - "integrity": "sha512-9TGEgOycqZFuADyFqwmK/9g6S0FYZ3tphR4ebcmCwhL8Y12FW8pIBKJvSwV+UBjMkokstGNH+9F8F031JZKpHw==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.0.tgz", + "integrity": "sha512-FmbDcZQ8yJRq93EJSL6xaE0KK/Rslraf8fj1uViGxg7K4CKBCRYSubILJPEhjSgZurpcPQq12QNOJQ0DRJl6Hg==", "cpu": [ "x64" ], @@ -580,9 +709,9 @@ } }, "node_modules/@next/swc-linux-x64-musl": { - "version": "15.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.1.4.tgz", - "integrity": "sha512-0578bLRVDJOh+LdIoKvgNDz77+Bd85c5JrFgnlbI1SM3WmEQvsjxTA8ATu9Z9FCiIS/AliVAW2DV/BDwpXbtiQ==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.0.tgz", + "integrity": "sha512-HzjIHVkmGAwRbh/vzvoBWWEbb8BBZPxBvVbDQDvzHSf3D8RP/4vjw7MNLDXFF9Q1WEzeQyEj2zdxBtVAHu5Oyw==", "cpu": [ "x64" ], @@ -599,9 +728,9 @@ } }, "node_modules/@next/swc-win32-arm64-msvc": { - "version": "15.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.1.4.tgz", - "integrity": "sha512-JgFCiV4libQavwII+kncMCl30st0JVxpPOtzWcAI2jtum4HjYaclobKhj+JsRu5tFqMtA5CJIa0MvYyuu9xjjQ==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.0.tgz", + "integrity": "sha512-UMiFNQf5H7+1ZsZPxEsA064WEuFbRNq/kEXyepbCnSErp4f5iut75dBA8UeerFIG3vDaQNOfCpevnERPp2V+nA==", "cpu": [ "arm64" ], @@ -615,9 +744,9 @@ } }, "node_modules/@next/swc-win32-x64-msvc": { - "version": "15.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.1.4.tgz", - "integrity": "sha512-xxsJy9wzq7FR5SqPCUqdgSXiNXrMuidgckBa8nH9HtjjxsilgcN6VgXF6tZ3uEWuVEadotQJI8/9EQ6guTC4Yw==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.0.tgz", + "integrity": "sha512-DRrNJKW+/eimrZgdhVN1uvkN1OI4j6Lpefwr44jKQ0YQzztlmOBUUzHuV5GxOMPK3nmodAYElUVCY8ZXo/IWeA==", "cpu": [ "x64" ], @@ -630,50 +759,6 @@ "node": ">= 10" } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@swc/counter": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", - "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", - "license": "Apache-2.0" - }, "node_modules/@swc/helpers": { "version": "0.5.15", "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", @@ -683,153 +768,332 @@ "tslib": "^2.8.0" } }, - "node_modules/@types/node": { - "version": "22.10.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.1.tgz", - "integrity": "sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==", + "node_modules/@tailwindcss/node": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.2.tgz", + "integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==", "dev": true, "license": "MIT", "dependencies": { - "undici-types": "~6.20.0" + "@jridgewell/remapping": "^2.3.5", + "enhanced-resolve": "^5.19.0", + "jiti": "^2.6.1", + "lightningcss": "1.32.0", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.2.2" } }, - "node_modules/@types/react": { - "version": "19.0.1", - "resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.1.tgz", - "integrity": "sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==", + "node_modules/@tailwindcss/oxide": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.2.tgz", + "integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==", "dev": true, "license": "MIT", - "dependencies": { - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "19.0.1", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.0.1.tgz", - "integrity": "sha512-hljHij7MpWPKF6u5vojuyfV0YA4YURsQG7KT6SzV0Zs2BXAtgdTxG6A229Ub/xiWV4w/7JL8fi6aAyjshH4meA==", + "engines": { + "node": ">= 20" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.2.2", + "@tailwindcss/oxide-darwin-arm64": "4.2.2", + "@tailwindcss/oxide-darwin-x64": "4.2.2", + "@tailwindcss/oxide-freebsd-x64": "4.2.2", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2", + "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2", + "@tailwindcss/oxide-linux-arm64-musl": "4.2.2", + "@tailwindcss/oxide-linux-x64-gnu": "4.2.2", + "@tailwindcss/oxide-linux-x64-musl": "4.2.2", + "@tailwindcss/oxide-wasm32-wasi": "4.2.2", + "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2", + "@tailwindcss/oxide-win32-x64-msvc": "4.2.2" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz", + "integrity": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@types/react": "*" + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 20" } }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true, - "license": "MIT" - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz", + "integrity": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">= 8" + "node": ">= 20" } }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz", + "integrity": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT" + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } }, - "node_modules/autoprefixer": { - "version": "10.4.27", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.27.tgz", - "integrity": "sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz", + "integrity": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==", + "cpu": [ + "x64" ], + "dev": true, "license": "MIT", - "dependencies": { - "browserslist": "^4.28.1", - "caniuse-lite": "^1.0.30001774", - "fraction.js": "^5.3.4", - "picocolors": "^1.1.1", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 20" } }, - "node_modules/baseline-browser-mapping": { - "version": "2.10.9", - "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.9.tgz", - "integrity": "sha512-OZd0e2mU11ClX8+IdXe3r0dbqMEznRiT4TfbhYIbcRPZkqJ7Qwer8ij3GZAmLsRKa+II9V1v5czCkvmHH3XZBg==", + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz", + "integrity": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==", + "cpu": [ + "arm" + ], "dev": true, - "license": "Apache-2.0", - "bin": { - "baseline-browser-mapping": "dist/cli.cjs" - }, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.0.0" + "node": ">= 20" } }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz", + "integrity": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==", + "cpu": [ + "arm64" + ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 20" } }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz", + "integrity": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==", + "cpu": [ + "arm64" + ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" + "node": ">= 20" } }, - "node_modules/browserslist": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", - "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz", + "integrity": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz", + "integrity": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz", + "integrity": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.8.1", + "@emnapi/runtime": "^1.8.1", + "@emnapi/wasi-threads": "^1.1.0", + "@napi-rs/wasm-runtime": "^1.1.1", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz", + "integrity": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz", + "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/postcss": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.2.2.tgz", + "integrity": "sha512-n4goKQbW8RVXIbNKRB/45LzyUqN451deQK0nzIeauVEqjlI49slUlgKYJM2QyUzap/PcpnS7kzSUmPb1sCRvYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "@tailwindcss/node": "4.2.2", + "@tailwindcss/oxide": "4.2.2", + "postcss": "^8.5.6", + "tailwindcss": "4.2.2" + } + }, + "node_modules/@types/node": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.0.tgz", + "integrity": "sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.18.0" + } + }, + "node_modules/@types/react": { + "version": "19.2.14", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", + "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.27", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.27.tgz", + "integrity": "sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==", + "dev": true, + "funding": [ { "type": "opencollective", - "url": "https://opencollective.com/browserslist" + "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" + "url": "https://tidelift.com/funding/github/npm/autoprefixer" }, { "type": "github", @@ -838,38 +1102,66 @@ ], "license": "MIT", "dependencies": { - "baseline-browser-mapping": "^2.9.0", - "caniuse-lite": "^1.0.30001759", - "electron-to-chromium": "^1.5.263", - "node-releases": "^2.0.27", - "update-browserslist-db": "^1.2.0" + "browserslist": "^4.28.1", + "caniuse-lite": "^1.0.30001774", + "fraction.js": "^5.3.4", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" }, "bin": { - "browserslist": "cli.js" + "autoprefixer": "bin/autoprefixer" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" + "node_modules/baseline-browser-mapping": { + "version": "2.10.9", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.9.tgz", + "integrity": "sha512-OZd0e2mU11ClX8+IdXe3r0dbqMEznRiT4TfbhYIbcRPZkqJ7Qwer8ij3GZAmLsRKa+II9V1v5czCkvmHH3XZBg==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" }, "engines": { - "node": ">=10.16.0" + "node": ">=6.0.0" } }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, "engines": { - "node": ">= 6" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, "node_modules/caniuse-lite": { @@ -892,44 +1184,6 @@ ], "license": "CC-BY-4.0" }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dev": true, - "license": "MIT", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/client-only": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", @@ -945,74 +1199,6 @@ "node": ">=6" } }, - "node_modules/color": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", - "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", - "license": "MIT", - "optional": true, - "dependencies": { - "color-convert": "^2.0.1", - "color-string": "^1.9.0" - }, - "engines": { - "node": ">=12.5.0" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "optional": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT", - "optional": true - }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "license": "MIT", - "optional": true, - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/csstype": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", @@ -1024,26 +1210,12 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "devOptional": true, "license": "Apache-2.0", - "optional": true, "engines": { "node": ">=8" } }, - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true, - "license": "MIT" - }, "node_modules/electron-to-chromium": { "version": "1.5.321", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.321.tgz", @@ -1051,67 +1223,28 @@ "dev": true, "license": "ISC" }, - "node_modules/escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/fast-glob": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", - "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "node_modules/enhanced-resolve": { + "version": "5.20.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz", + "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==", "dev": true, "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.8" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" + "graceful-fs": "^4.2.4", + "tapable": "^2.3.0" }, "engines": { - "node": ">= 6" - } - }, - "node_modules/fastq": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", - "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", - "dev": true, - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" + "node": ">=10.13.0" } }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, "engines": { - "node": ">=8" + "node": ">=6" } }, "node_modules/fraction.js": { @@ -1128,511 +1261,399 @@ "url": "https://github.com/sponsors/rawify" } }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true, - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } + "license": "ISC" }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", "dev": true, "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "jiti": "lib/jiti-cli.mjs" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/lightningcss": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", "dev": true, - "license": "ISC", + "license": "MPL-2.0", "dependencies": { - "is-glob": "^4.0.3" + "detect-libc": "^2.0.3" }, "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.2" + "node": ">= 12.0.0" }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-arrayish": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.4.tgz", - "integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==", - "license": "MIT", - "optional": true - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-core-module": { - "version": "2.16.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", - "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "optionalDependencies": { + "lightningcss-android-arm64": "1.32.0", + "lightningcss-darwin-arm64": "1.32.0", + "lightningcss-darwin-x64": "1.32.0", + "lightningcss-freebsd-x64": "1.32.0", + "lightningcss-linux-arm-gnueabihf": "1.32.0", + "lightningcss-linux-arm64-gnu": "1.32.0", + "lightningcss-linux-arm64-musl": "1.32.0", + "lightningcss-linux-x64-gnu": "1.32.0", + "lightningcss-linux-x64-musl": "1.32.0", + "lightningcss-win32-arm64-msvc": "1.32.0", + "lightningcss-win32-x64-msvc": "1.32.0" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.2" - }, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">= 0.4" + "node": ">= 12.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/lightningcss-darwin-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" + "node": ">= 12.0.0" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/jiti": { - "version": "1.21.7", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", - "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", - "dev": true, - "license": "MIT", - "bin": { - "jiti": "bin/jiti.js" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/lilconfig": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", - "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "node_modules/lightningcss-darwin-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=14" + "node": ">= 12.0.0" }, "funding": { - "url": "https://github.com/sponsors/antonk52" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true, - "license": "MIT" - }, - "node_modules/lucide-react": { - "version": "0.468.0", - "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.468.0.tgz", - "integrity": "sha512-6koYRhnM2N0GGZIdXzSeiNwguv1gt/FAjZOiPl76roBi3xKEXa4WmfpxgQwTTL4KipXjefrnf3oV4IsYhi4JFA==", - "license": "ISC", - "peerDependencies": { - "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/lightningcss-freebsd-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dev": true, - "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" + "node": ">= 12.0.0" }, - "engines": { - "node": ">=8.6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", + "cpu": [ + "arm" + ], "dev": true, - "license": "MIT", - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "node_modules/nanoid": { - "version": "3.3.11", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", - "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" ], - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/next": { - "version": "15.1.4", - "resolved": "https://registry.npmjs.org/next/-/next-15.1.4.tgz", - "integrity": "sha512-mTaq9dwaSuwwOrcu3ebjDYObekkxRnXpuVL21zotM8qE2W0HBOdVIdg2Li9QjMEZrj73LN96LcWcz62V19FjAg==", - "deprecated": "This version has a security vulnerability. Please upgrade to a patched version. See https://nextjs.org/blog/CVE-2025-66478 for more details.", - "license": "MIT", - "dependencies": { - "@next/env": "15.1.4", - "@swc/counter": "0.1.3", - "@swc/helpers": "0.5.15", - "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001579", - "postcss": "8.4.31", - "styled-jsx": "5.1.6" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": "^18.18.0 || ^19.8.0 || >= 20.0.0" - }, - "optionalDependencies": { - "@next/swc-darwin-arm64": "15.1.4", - "@next/swc-darwin-x64": "15.1.4", - "@next/swc-linux-arm64-gnu": "15.1.4", - "@next/swc-linux-arm64-musl": "15.1.4", - "@next/swc-linux-x64-gnu": "15.1.4", - "@next/swc-linux-x64-musl": "15.1.4", - "@next/swc-win32-arm64-msvc": "15.1.4", - "@next/swc-win32-x64-msvc": "15.1.4", - "sharp": "^0.33.5" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.1.0", - "@playwright/test": "^1.41.2", - "babel-plugin-react-compiler": "*", - "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", - "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", - "sass": "^1.3.0" + "node": ">= 12.0.0" }, - "peerDependenciesMeta": { - "@opentelemetry/api": { - "optional": true - }, - "@playwright/test": { - "optional": true - }, - "babel-plugin-react-compiler": { - "optional": true - }, - "sass": { - "optional": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/next/node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", + "cpu": [ + "arm64" ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/node-releases": { - "version": "2.0.36", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz", - "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==", - "dev": true, - "license": "MIT" - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", - "dev": true, - "license": "MIT", + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 6" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true, - "license": "MIT" - }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8.6" + "node": ">= 12.0.0" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/pirates": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", - "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 6" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/postcss": { - "version": "8.5.8", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz", - "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.11", - "picocolors": "^1.1.1", - "source-map-js": "^1.2.1" - }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/postcss-import": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=14.0.0" + "node": ">= 12.0.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lucide-react": { + "version": "0.577.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.577.0.tgz", + "integrity": "sha512-4LjoFv2eEPwYDPg/CUdBJQSDfPyzXCRrVW1X7jrx/trgxnxkHFjnVZINbzvzxjN70dxychOfg+FTYwBiS3pQ5A==", + "license": "ISC", "peerDependencies": { - "postcss": "^8.0.0" + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, - "node_modules/postcss-js": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz", - "integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==", + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", - "dependencies": { - "camelcase-css": "^2.0.1" + "bin": { + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": "^12 || ^14 || >= 16" - }, - "peerDependencies": { - "postcss": "^8.4.21" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/postcss-load-config": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", - "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/next": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/next/-/next-16.2.0.tgz", + "integrity": "sha512-NLBVrJy1pbV1Yn00L5sU4vFyAHt5XuSjzrNyFnxo6Com0M0KrL6hHM5B99dbqXb2bE9pm4Ow3Zl1xp6HVY9edQ==", "license": "MIT", "dependencies": { - "lilconfig": "^3.1.1" + "@next/env": "16.2.0", + "@swc/helpers": "0.5.15", + "baseline-browser-mapping": "^2.9.19", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" + }, + "bin": { + "next": "dist/bin/next" }, "engines": { - "node": ">= 18" + "node": ">=20.9.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "16.2.0", + "@next/swc-darwin-x64": "16.2.0", + "@next/swc-linux-arm64-gnu": "16.2.0", + "@next/swc-linux-arm64-musl": "16.2.0", + "@next/swc-linux-x64-gnu": "16.2.0", + "@next/swc-linux-x64-musl": "16.2.0", + "@next/swc-win32-arm64-msvc": "16.2.0", + "@next/swc-win32-x64-msvc": "16.2.0", + "sharp": "^0.34.5" }, "peerDependencies": { - "jiti": ">=1.21.0", - "postcss": ">=8.0.9", - "tsx": "^4.8.1", - "yaml": "^2.4.2" + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.51.1", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" }, "peerDependenciesMeta": { - "jiti": { + "@opentelemetry/api": { "optional": true }, - "postcss": { + "@playwright/test": { "optional": true }, - "tsx": { + "babel-plugin-react-compiler": { "optional": true }, - "yaml": { + "sass": { "optional": true } } }, - "node_modules/postcss-nested": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", - "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", - "dev": true, + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, { "type": "github", "url": "https://github.com/sponsors/ai" @@ -1640,161 +1661,88 @@ ], "license": "MIT", "dependencies": { - "postcss-selector-parser": "^6.1.1" - }, - "engines": { - "node": ">=12.0" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", - "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", - "dev": true, - "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" }, "engines": { - "node": ">=4" + "node": "^10 || ^12 || >=14" } }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "node_modules/node-releases": { + "version": "2.0.36", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz", + "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==", "dev": true, "license": "MIT" }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/postcss": { + "version": "8.5.8", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz", + "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==", "dev": true, "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" + "type": "opencollective", + "url": "https://opencollective.com/postcss/" }, { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" }, { - "type": "consulting", - "url": "https://feross.org/support" + "type": "github", + "url": "https://github.com/sponsors/ai" } ], - "license": "MIT" - }, - "node_modules/react": { - "version": "19.0.0", - "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz", - "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "19.0.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz", - "integrity": "sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==", - "license": "MIT", - "dependencies": { - "scheduler": "^0.25.0" - }, - "peerDependencies": { - "react": "^19.0.0" - } - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "pify": "^2.3.0" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, "license": "MIT", "dependencies": { - "picomatch": "^2.2.1" + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { - "node": ">=8.10.0" + "node": "^10 || ^12 || >=14" } }, - "node_modules/resolve": { - "version": "1.22.11", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", - "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.16.1", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "license": "MIT" }, - "node_modules/reusify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", - "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", - "dev": true, + "node_modules/react": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz", + "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==", "license": "MIT", "engines": { - "iojs": ">=1.0.0", "node": ">=0.10.0" } }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "node_modules/react-dom": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz", + "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==", "license": "MIT", "dependencies": { - "queue-microtask": "^1.2.2" + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.4" } }, "node_modules/scheduler": { - "version": "0.25.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz", - "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==", + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", "license": "MIT" }, "node_modules/semver": { @@ -1811,16 +1759,16 @@ } }, "node_modules/sharp": { - "version": "0.33.5", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz", - "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==", + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", "hasInstallScript": true, "license": "Apache-2.0", "optional": true, "dependencies": { - "color": "^4.2.3", - "detect-libc": "^2.0.3", - "semver": "^7.6.3" + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" }, "engines": { "node": "^18.17.0 || ^20.3.0 || >=21.0.0" @@ -1829,35 +1777,30 @@ "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-darwin-arm64": "0.33.5", - "@img/sharp-darwin-x64": "0.33.5", - "@img/sharp-libvips-darwin-arm64": "1.0.4", - "@img/sharp-libvips-darwin-x64": "1.0.4", - "@img/sharp-libvips-linux-arm": "1.0.5", - "@img/sharp-libvips-linux-arm64": "1.0.4", - "@img/sharp-libvips-linux-s390x": "1.0.4", - "@img/sharp-libvips-linux-x64": "1.0.4", - "@img/sharp-libvips-linuxmusl-arm64": "1.0.4", - "@img/sharp-libvips-linuxmusl-x64": "1.0.4", - "@img/sharp-linux-arm": "0.33.5", - "@img/sharp-linux-arm64": "0.33.5", - "@img/sharp-linux-s390x": "0.33.5", - "@img/sharp-linux-x64": "0.33.5", - "@img/sharp-linuxmusl-arm64": "0.33.5", - "@img/sharp-linuxmusl-x64": "0.33.5", - "@img/sharp-wasm32": "0.33.5", - "@img/sharp-win32-ia32": "0.33.5", - "@img/sharp-win32-x64": "0.33.5" - } - }, - "node_modules/simple-swizzle": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.4.tgz", - "integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==", - "license": "MIT", - "optional": true, - "dependencies": { - "is-arrayish": "^0.3.1" + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" } }, "node_modules/source-map-js": { @@ -1869,14 +1812,6 @@ "node": ">=0.10.0" } }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/styled-jsx": { "version": "5.1.6", "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", @@ -1900,46 +1835,10 @@ } } }, - "node_modules/sucrase": { - "version": "3.35.1", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz", - "integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.2", - "commander": "^4.0.0", - "lines-and-columns": "^1.1.6", - "mz": "^2.7.0", - "pirates": "^4.0.1", - "tinyglobby": "^0.2.11", - "ts-interface-checker": "^0.1.9" - }, - "bin": { - "sucrase": "bin/sucrase", - "sucrase-node": "bin/sucrase-node" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/tailwind-merge": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.1.tgz", - "integrity": "sha512-Oo6tHdpZsGpkKG88HJ8RR1rg/RdnEkQEfMoEk2x1XRI3F1AxeU+ijRXpiVUF4UbLfcxxRGw6TbUINKYdWVsQTQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.5.0.tgz", + "integrity": "sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==", "license": "MIT", "funding": { "type": "github", @@ -1947,134 +1846,26 @@ } }, "node_modules/tailwindcss": { - "version": "3.4.19", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.19.tgz", - "integrity": "sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@alloc/quick-lru": "^5.2.0", - "arg": "^5.0.2", - "chokidar": "^3.6.0", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.3.2", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "jiti": "^1.21.7", - "lilconfig": "^3.1.3", - "micromatch": "^4.0.8", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.1.1", - "postcss": "^8.4.47", - "postcss-import": "^15.1.0", - "postcss-js": "^4.0.1", - "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0", - "postcss-nested": "^6.2.0", - "postcss-selector-parser": "^6.1.2", - "resolve": "^1.22.8", - "sucrase": "^3.35.0" - }, - "bin": { - "tailwind": "lib/cli.js", - "tailwindcss": "lib/cli.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dev": true, - "license": "MIT", - "dependencies": { - "any-promise": "^1.0.0" - } - }, - "node_modules/thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "dev": true, - "license": "MIT", - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tinyglobby": { - "version": "0.2.15", - "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", - "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "fdir": "^6.5.0", - "picomatch": "^4.0.3" - }, - "engines": { - "node": ">=12.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/SuperchupuDev" - } - }, - "node_modules/tinyglobby/node_modules/fdir": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", - "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.2.tgz", + "integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "picomatch": "^3 || ^4" - }, - "peerDependenciesMeta": { - "picomatch": { - "optional": true - } - } + "license": "MIT" }, - "node_modules/tinyglobby/node_modules/picomatch": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", - "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "node_modules/tapable": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", "dev": true, "license": "MIT", "engines": { - "node": ">=12" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/ts-interface-checker": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", - "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", - "dev": true, - "license": "Apache-2.0" - }, "node_modules/tslib": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", @@ -2082,9 +1873,9 @@ "license": "0BSD" }, "node_modules/typescript": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", - "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", "dev": true, "license": "Apache-2.0", "bin": { @@ -2096,9 +1887,9 @@ } }, "node_modules/undici-types": { - "version": "6.20.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", - "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "version": "7.18.2", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz", + "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==", "dev": true, "license": "MIT" }, @@ -2132,13 +1923,6 @@ "peerDependencies": { "browserslist": ">= 4.21.0" } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true, - "license": "MIT" } } } diff --git a/package.json b/package.json index 68d8bc959..2d26b3a6c 100644 --- a/package.json +++ b/package.json @@ -9,20 +9,21 @@ "lint": "next lint" }, "dependencies": { - "next": "15.1.4", - "react": "19.0.0", - "react-dom": "19.0.0", - "lucide-react": "^0.468.0", "clsx": "^2.1.1", - "tailwind-merge": "^2.5.5" + "lucide-react": "^0.577.0", + "next": "^16.2.0", + "react": "^19.2.4", + "react-dom": "^19.2.4", + "tailwind-merge": "^3.5.0" }, "devDependencies": { - "@types/node": "22.10.1", - "@types/react": "19.0.1", - "@types/react-dom": "19.0.1", - "autoprefixer": "^10.4.20", - "postcss": "^8.4.49", - "tailwindcss": "^3.4.16", - "typescript": "5.7.2" + "@tailwindcss/postcss": "^4.2.2", + "@types/node": "^25.5.0", + "@types/react": "^19.2.14", + "@types/react-dom": "^19.2.3", + "autoprefixer": "^10.4.27", + "postcss": "^8.5.8", + "tailwindcss": "^4.2.2", + "typescript": "^5.9.3" } } diff --git a/postcss.config.js b/postcss.config.js index 12a703d90..e5640725a 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,5 @@ module.exports = { plugins: { - tailwindcss: {}, - autoprefixer: {}, + '@tailwindcss/postcss': {}, }, }; diff --git a/tsconfig.json b/tsconfig.json index e06a4454a..abe252433 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,11 @@ { "compilerOptions": { "target": "es5", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, "strict": true, @@ -9,10 +13,10 @@ "noEmit": true, "esModuleInterop": true, "module": "esnext", - "moduleResolution": "node", + "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, - "jsx": "preserve", + "jsx": "react-jsx", "incremental": true, "plugins": [ { @@ -20,9 +24,19 @@ } ], "paths": { - "@/*": ["./*"] + "@/*": [ + "./*" + ] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts", + ".next/dev/types/**/*.ts" + ], + "exclude": [ + "node_modules" + ] } From f4ff9ff6c6bb43ad5c52a3bbcf3b1f32805cec4b Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 13:32:15 +0000 Subject: [PATCH 5/9] feat: implement app store architecture and web storefront - Defined modular Clean Architecture in ARCHITECTURE.md. - Built Android MVP in aurora-next/ with Compose and Hilt. - Created Next.js 16 web storefront with React 19 and Tailwind 4. - Optimized for mobile-first UI and verified with Playwright. --- .editorconfig | 11 - .gitignore | 10 +- .gitlab-ci.yml | 23 +- .gitlab/issue_templates/Bug-Report.md | 2 +- CHANGELOG | 45 - DISCLAIMER.md | 2 +- LICENSE | 5 +- LICENSES/Apache-2.0.txt | 73 -- LICENSES/CC0-1.0.txt | 121 -- LICENSES/GPL-3.0-or-later.txt | 232 ---- README.md | 21 +- REUSE.toml | 39 - app/.gitignore | 7 +- app/build.gradle.kts | 156 +-- app/globals.css | 46 +- app/layout.tsx | 10 +- app/lint.xml | 6 - app/page.tsx | 56 +- app/proguard-rules.pro | 12 - .../5.json | 284 ----- .../6.json | 283 ----- .../store/HiltInstrumentationTestRunner.kt | 6 +- .../java/com/aurora/store/IsolatedTest.kt | 29 - .../store/compose/composable/ErrorTest.kt | 34 - .../store/compose/composable/InfoTest.kt | 31 - .../composable/PermissionListItemTest.kt | 51 - .../store/compose/composable/TopAppBarTest.kt | 28 - .../composable/app/AnimatedAppIconTest.kt | 60 - app/src/huawei/AndroidManifest.xml | 7 - .../data/receiver/InstallerStatusReceiver.kt | 159 --- .../com/aurora/store/util/FlavouredUtil.kt | 13 - .../SilentInstallRequest.java | 54 - .../SilentInstallResponse.java | 23 - app/src/main/AndroidManifest.xml | 21 - app/src/main/assets/exodus_trackers.json | 551 ++++----- app/src/main/java/com/aurora/Constants.kt | 16 +- .../main/java/com/aurora/extensions/Any.kt | 15 - .../main/java/com/aurora/extensions/App.kt | 11 - .../java/com/aurora/extensions/Collection.kt | 16 +- .../java/com/aurora/extensions/Commons.kt} | 13 +- .../java/com/aurora/extensions/Context.kt | 102 +- .../main/java/com/aurora/extensions/Dialog.kt | 5 + .../java/com/aurora/extensions/InputStream.kt | 52 +- .../main/java/com/aurora/extensions/Intent.kt | 29 +- .../main/java/com/aurora/extensions/Number.kt | 5 +- .../java/com/aurora/extensions/PackageInfo.kt | 24 +- .../com/aurora/extensions/PackageManager.kt | 5 +- .../main/java/com/aurora/extensions/Paging.kt | 19 - .../java/com/aurora/extensions/Platform.kt | 37 +- .../aurora/extensions/SharedPreferences.kt | 40 - .../java/com/aurora/extensions/Shimmer.kt | 63 - .../java/com/aurora/extensions/Threading.kt | 2 + .../aurora/extensions/WindowAdaptiveInfo.kt | 30 - app/src/main/java/com/aurora/store/Aliases.kt | 4 +- .../main/java/com/aurora/store/AuroraApp.kt | 30 +- .../java/com/aurora/store/ComposeActivity.kt | 49 - .../java/com/aurora/store/MainActivity.kt | 28 +- .../store/compose/composable/BlackListItem.kt | 118 -- .../composable/ContainedLoadingIndicator.kt | 51 - .../compose/composable/DeviceListItem.kt | 86 -- .../compose/composable/DispenserListItem.kt | 78 -- .../compose/composable/DownloadListItem.kt | 180 --- .../aurora/store/compose/composable/Error.kt | 89 -- .../compose/composable/FavouriteListItem.kt | 147 --- .../aurora/store/compose/composable/Header.kt | 93 -- .../aurora/store/compose/composable/Info.kt | 94 -- .../compose/composable/InstallerListItem.kt | 79 -- .../store/compose/composable/LinkListItem.kt | 108 -- .../compose/composable/LocaleListItem.kt | 76 -- .../aurora/store/compose/composable/Logo.kt | 68 -- .../aurora/store/compose/composable/MicroG.kt | 157 --- .../store/compose/composable/PageIndicator.kt | 86 -- .../compose/composable/PermissionList.kt | 177 --- .../compose/composable/PermissionListItem.kt | 86 -- .../composable/SearchSuggestionListItem.kt | 107 -- .../composable/TextDividerComposable.kt | 47 - .../store/compose/composable/TopAppBar.kt | 64 - .../compose/composable/app/AnimatedAppIcon.kt | 122 -- .../compose/composable/app/AppListItem.kt | 85 -- .../composable/app/LargeAppListItem.kt | 112 -- .../compose/composable/app/TagListItem.kt | 53 - .../composable/details/ExodusListItem.kt | 76 -- .../composable/details/RatingListItem.kt | 60 - .../composable/details/ReviewListItem.kt | 102 -- .../composable/details/ScreenshotListItem.kt | 67 -- .../store/compose/composition/LocalUI.kt | 29 - .../store/compose/navigation/NavDisplay.kt | 160 --- .../aurora/store/compose/navigation/Screen.kt | 66 - .../compose/preview/AppPreviewProvider.kt | 88 -- .../compose/preview/CoilPreviewProvider.kt | 18 - .../preview/FavouritePreviewProvider.kt | 28 - .../store/compose/preview/PreviewTemplate.kt | 24 - .../compose/preview/ReviewPreviewProvider.kt | 26 - .../com/aurora/store/compose/theme/Color.kt | 11 - .../com/aurora/store/compose/theme/Theme.kt | 50 - .../store/compose/ui/about/AboutDialog.kt | 43 - .../store/compose/ui/about/AboutScreen.kt | 173 --- .../compose/ui/accounts/AccountsScreen.kt | 213 ---- .../store/compose/ui/accounts/LogoutDialog.kt | 49 - .../compose/ui/blacklist/BlacklistScreen.kt | 250 ---- .../ui/blacklist/menu/BlacklistMenu.kt | 78 -- .../compose/ui/blacklist/menu/MenuItem.kt | 16 - .../ui/commons/PermissionRationaleScreen.kt | 93 -- .../compose/ui/details/AppDetailsScreen.kt | 555 --------- .../store/compose/ui/details/ExodusScreen.kt | 195 --- .../ui/details/ManualDownloadScreen.kt | 225 ---- .../store/compose/ui/details/MicroGScreen.kt | 160 --- .../store/compose/ui/details/MoreScreen.kt | 197 --- .../compose/ui/details/PermissionScreen.kt | 126 -- .../store/compose/ui/details/ReviewScreen.kt | 190 --- .../compose/ui/details/ScreenshotScreen.kt | 103 -- .../compose/ui/details/composable/Actions.kt | 97 -- .../ui/details/composable/Changelog.kt | 68 -- .../ui/details/composable/Compatibility.kt | 89 -- .../ui/details/composable/DataSafety.kt | 110 -- .../compose/ui/details/composable/Details.kt | 169 --- .../ui/details/composable/DeveloperDetails.kt | 85 -- .../compose/ui/details/composable/Privacy.kt | 71 -- .../ui/details/composable/RatingAndReviews.kt | 163 --- .../ui/details/composable/Screenshots.kt | 59 - .../compose/ui/details/composable/Tags.kt | 81 -- .../compose/ui/details/composable/Testing.kt | 82 -- .../compose/ui/details/menu/AppDetailsMenu.kt | 103 -- .../store/compose/ui/details/menu/MenuItem.kt | 17 - .../ui/details/navigation/ExtraScreen.kt | 43 - .../store/compose/ui/dev/DevProfileScreen.kt | 140 --- .../compose/ui/dispenser/DispenserScreen.kt | 140 --- .../ui/dispenser/InputDispenserDialog.kt | 93 -- .../ui/dispenser/RemoveDispenserDialog.kt | 46 - .../compose/ui/downloads/DownloadsScreen.kt | 193 --- .../ui/downloads/menu/DownloadsMenu.kt | 74 -- .../compose/ui/downloads/menu/MenuItem.kt | 15 - .../compose/ui/favourite/FavouriteScreen.kt | 192 --- .../ui/favourite/menu/FavouriteMenu.kt | 70 -- .../compose/ui/favourite/menu/MenuItem.kt | 14 - .../compose/ui/installed/InstalledScreen.kt | 127 -- .../store/compose/ui/onboarding/MicroGPage.kt | 101 -- .../compose/ui/onboarding/OnboardingScreen.kt | 211 ---- .../compose/ui/onboarding/PermissionsPage.kt | 91 -- .../compose/ui/onboarding/WelcomePage.kt | 144 --- .../onboarding/navigation/OnboardingPage.kt | 15 - .../installation/InstallerScreen.kt | 102 -- .../store/compose/ui/search/SearchScreen.kt | 450 ------- .../store/compose/ui/spoof/DevicePage.kt | 116 -- .../store/compose/ui/spoof/LocalePage.kt | 101 -- .../store/compose/ui/spoof/SpoofScreen.kt | 181 --- .../store/compose/ui/spoof/menu/MenuItem.kt | 11 - .../store/compose/ui/spoof/menu/SpoofMenu.kt | 70 -- .../compose/ui/spoof/navigation/SpoofPage.kt | 17 - .../store/data/activity/InstallActivity.kt | 3 +- .../data/activity/MicroGInstallerActivity.kt | 73 -- .../com/aurora/store/data/event/BusEvent.kt | 22 +- .../com/aurora/store/data/event/EventFlow.kt | 5 +- .../store/data/helper/DownloadHelper.kt | 63 +- .../aurora/store/data/helper/UpdateHelper.kt | 82 +- .../store/data/installer/AMInstaller.kt | 3 +- .../store/data/installer/AppInstaller.kt | 169 ++- .../store/data/installer/MicroGInstaller.kt | 90 -- .../store/data/installer/NativeInstaller.kt | 3 +- .../store/data/installer/RootInstaller.kt | 32 +- .../store/data/installer/ServiceInstaller.kt | 15 +- .../store/data/installer/SessionInstaller.kt | 104 +- .../store/data/installer/ShizukuInstaller.kt | 24 +- .../data/installer/base/InstallerBase.kt | 81 +- .../java/com/aurora/store/data/model/Auth.kt | 6 - .../java/com/aurora/store/data/model/Black.kt | 12 +- .../java/com/aurora/store/data/model/Dash.kt} | 29 +- .../aurora/store/data/model/DownloadStatus.kt | 5 +- .../com/aurora/store/data/model/Exodus.kt | 19 +- .../com/aurora/store/data/model/Filter.kt} | 14 +- .../com/aurora/store/data/model/Installer.kt | 3 +- .../aurora/store/data/model/InstallerInfo.kt | 12 +- .../java/com/aurora/store/data/model/Link.kt | 14 +- .../com/aurora/store/data/model/MinimalApp.kt | 53 +- .../store/data/model/PaginatedAppList.kt | 2 +- .../com/aurora/store/data/model/Permission.kt | 14 +- .../store/data/model/PermissionGroupInfo.kt | 10 + .../com/aurora/store/data/model/Plexus.kt | 31 +- .../com/aurora/store/data/model/ProxyInfo.kt | 2 - .../aurora/store/data/model/SearchFilter.kt | 23 - .../com/aurora/store/data/model/SelfUpdate.kt | 21 +- .../aurora/store/data/model/SessionInfo.kt | 2 +- .../java/com/aurora/store/data/model/State.kt | 44 +- .../com/aurora/store/data/model/UpdateMode.kt | 2 +- .../aurora/store/data/network/HttpClient.kt | 135 ++- .../store/data/network/IHttpClientModule.kt | 4 +- .../store/data/network/OkHttpClientModule.kt | 75 +- .../store/data/paging/GenericPagingSource.kt | 86 -- .../store/data/providers/AccountProvider.kt | 5 +- .../store/data/providers/AuthProvider.kt | 48 +- .../store/data/providers/BlacklistProvider.kt | 34 +- .../data/providers/EglExtensionProvider.kt | 6 +- .../store/data/providers/FilterProvider.kt | 54 + .../providers/NativeDeviceInfoProvider.kt | 62 +- .../providers/NativeGsfVersionProvider.kt | 7 +- .../store/data/providers/NetworkProvider.kt | 38 +- .../data/providers/PermissionProvider.kt | 216 +--- .../data/providers/SpoofDeviceProvider.kt | 16 +- .../store/data/providers/SpoofProvider.kt | 26 +- .../data/receiver/DownloadCancelReceiver.kt | 36 - ...Receiver.kt => InstallerStatusReceiver.kt} | 95 +- .../store/data/receiver/MigrationReceiver.kt | 25 +- .../data/receiver/NetworkBroadcastReceiver.kt | 29 - .../data/receiver/PackageManagerReceiver.kt | 2 +- .../data/receiver/UnarchivePackageReceiver.kt | 7 +- .../aurora/store/data/room/AuroraDatabase.kt | 4 +- .../aurora/store/data/room/MigrationHelper.kt | 65 +- .../com/aurora/store/data/room/RoomModule.kt | 33 +- .../store/data/room/download/Download.kt | 133 +-- .../data/room/download/DownloadConverter.kt | 27 +- .../store/data/room/download/DownloadDao.kt | 15 +- .../store/data/room/download/SharedLib.kt | 20 +- .../store/data/room/favourite/Favourite.kt | 30 +- .../store/data/room/favourite/FavouriteDao.kt | 4 - .../store/data/room/favourite/ImportExport.kt | 4 +- .../store/data/room/suite/ExternalApk.kt | 25 - .../aurora/store/data/room/update/Update.kt | 64 +- .../com/aurora/store/data/work/AuthWorker.kt | 143 +-- .../com/aurora/store/data/work/CacheWorker.kt | 16 +- .../aurora/store/data/work/DownloadWorker.kt | 347 ++---- .../aurora/store/data/work/ExportWorker.kt | 46 +- .../aurora/store/data/work/UpdateWorker.kt | 108 +- .../com/aurora/store/module/CommonModule.kt | 24 +- .../com/aurora/store/module/ExodusModule.kt | 4 +- .../com/aurora/store/module/HelperModule.kt | 90 +- .../java/com/aurora/store/util/AC2DMTask.kt | 6 +- .../java/com/aurora/store/util/CertUtil.kt | 120 +- .../java/com/aurora/store/util/CommonUtil.kt | 56 +- .../com/aurora/store/util/IFlavouredUtil.kt | 8 - .../com/aurora/store/util/NotificationUtil.kt | 128 +- .../java/com/aurora/store/util/PackageUtil.kt | 255 ++-- .../java/com/aurora/store/util/PathUtil.kt | 82 +- .../java/com/aurora/store/util/Preferences.kt | 50 +- .../aurora/store/util/ShortcutManagerUtil.kt | 7 +- .../aurora/store/view/custom/RatingView.kt | 55 + .../view/custom/layouts/ActionHeaderLayout.kt | 2 +- .../view/custom/layouts/DevInfoLayout.kt | 101 ++ .../view/custom/layouts/PermissionGroup.kt | 155 +++ .../view/custom/layouts/button/StateButton.kt | 6 +- .../custom/preference/AuroraListPreference.kt | 10 +- .../custom/preference/M3EditTextPreference.kt | 2 + .../EndlessRecyclerOnScrollListener.kt | 38 +- .../controller/CategoryCarouselController.kt | 4 +- .../controller/DetailsCarouselController.kt | 45 + .../controller/DeveloperCarouselController.kt | 54 + .../EarlyAccessCarouselController.kt} | 14 +- .../controller/GenericCarouselController.kt | 13 +- .../view/epoxy/groups/CarouselHorizontal.kt | 7 +- .../view/epoxy/groups/CarouselModelGroup.kt | 3 +- .../view/epoxy/groups/CarouselShimmerGroup.kt | 5 +- .../view/epoxy/groups/DeveloperModelGroup.kt | 128 ++ .../store/view/epoxy/views/AppProgressView.kt | 2 +- .../aurora/store/view/epoxy/views/BaseView.kt | 6 +- .../store/view/epoxy/views/BlackListView.kt | 80 ++ .../store/view/epoxy/views/DispenserView.kt | 34 + .../store/view/epoxy/views/DownloadView.kt | 91 ++ .../store/view/epoxy/views/FavouriteView.kt | 65 + .../store/view/epoxy/views/HeaderView.kt | 3 +- .../view/epoxy/views/InstalledAppView.kt | 66 + .../view/epoxy/views/SearchSuggestionView.kt | 72 ++ .../store/view/epoxy/views/TextDividerView.kt | 42 + .../view/epoxy/views/UpdateHeaderView.kt | 1 + .../store/view/epoxy/views/app/AppListView.kt | 11 +- .../view/epoxy/views/app/AppUpdateView.kt | 22 +- .../store/view/epoxy/views/app/AppView.kt | 5 +- .../view/epoxy/views/app/NoAppAltView.kt | 45 + .../epoxy/views/details/AppDependentView.kt | 65 + .../view/epoxy/views/details/BadgeView.kt | 58 + .../view/epoxy/views/details/ExodusView.kt | 58 + .../view/epoxy/views/details/FileView.kt | 47 + .../view/epoxy/views/details/InfoView.kt | 62 + .../views/details/LargeScreenshotView.kt | 52 + .../epoxy/views/details/MiniScreenshotView.kt | 102 ++ .../view/epoxy/views/details/MoreBadgeView.kt | 69 ++ .../view/epoxy/views/details/ReviewView.kt | 71 ++ .../epoxy/views/details/ScreenshotView.kt | 102 ++ .../view/epoxy/views/preference/DashView.kt | 54 + .../view/epoxy/views/preference/DeviceView.kt | 65 + .../epoxy/views/preference/InstallerView.kt | 64 + .../view/epoxy/views/preference/LinkView.kt | 64 + .../view/epoxy/views/preference/LocaleView.kt | 59 + .../epoxy/views/preference/PermissionView.kt | 65 + .../java/com/aurora/store/view/theme/Theme.kt | 33 + .../aurora/store/view/ui/about/AboutDialog.kt | 21 + .../store/view/ui/about/AboutFragment.kt | 114 ++ .../store/view/ui/account/AccountFragment.kt | 74 ++ .../store/view/ui/account/GoogleFragment.kt | 36 +- .../store/view/ui/account/LogoutDialog.kt | 28 + .../store/view/ui/all/AppsGamesFragment.kt | 170 +++ .../view/ui/apps/AppsContainerFragment.kt | 29 +- .../store/view/ui/commons/BaseFragment.kt | 40 +- .../view/ui/commons/BlacklistFragment.kt | 179 +++ .../view/ui/commons/CategoryBrowseFragment.kt | 19 +- .../store/view/ui/commons/CategoryFragment.kt | 8 +- .../commons/ExpandedStreamBrowseFragment.kt | 33 +- .../view/ui/commons/FavouriteFragment.kt | 125 ++ .../store/view/ui/commons/ForYouFragment.kt | 14 +- .../view/ui/commons/ForceRestartDialog.kt | 7 +- .../view/ui/commons/MoreDialogFragment.kt | 233 ++-- .../view/ui/commons/StreamBrowseFragment.kt | 6 +- .../ui/commons/TopChartContainerFragment.kt | 13 +- .../store/view/ui/commons/TopChartFragment.kt | 7 +- .../view/ui/details/AppDetailsFragment.kt | 1063 +++++++++++++++++ .../view/ui/details/DetailsExodusFragment.kt | 98 ++ .../view/ui/details/DetailsMoreFragment.kt | 172 +++ .../view/ui/details/DetailsReviewFragment.kt | 126 ++ .../store/view/ui/details/DevAppsFragment.kt | 91 ++ .../view/ui/details/DevProfileFragment.kt | 21 +- .../view/ui/details/ScreenshotFragment.kt | 73 ++ .../view/ui/dispenser/DispenserFragment.kt | 75 ++ .../view/ui/dispenser/InputDispenserDialog.kt | 58 + .../ui/dispenser/RemoveDispenserDialog.kt | 37 + .../view/ui/downloads/DownloadFragment.kt | 140 +++ .../view/ui/games/GamesContainerFragment.kt | 27 +- .../view/ui/onboarding/AppLinksFragment.kt | 15 + .../view/ui/onboarding/OnboardingFragment.kt | 197 +++ .../view/ui/onboarding/PermissionsFragment.kt | 176 +++ .../view/ui/onboarding/WelcomeFragment.kt | 105 ++ .../ui/preferences/BasePreferenceFragment.kt | 2 - .../InstallationPreference.kt | 6 +- .../view/ui/preferences/InstallerFragment.kt | 192 +++ .../{network => }/NetworkPreference.kt | 61 +- .../{network => }/ProxyURLDialog.kt | 46 +- .../view/ui/preferences/SettingsFragment.kt | 7 +- .../store/view/ui/preferences/UIPreference.kt | 10 +- .../{updates => }/UpdatesPreference.kt | 56 +- .../updates/UpdatesRestrictionsDialog.kt | 72 -- .../view/ui/search/SearchResultsFragment.kt | 273 +++++ .../ui/search/SearchSuggestionFragment.kt | 145 +++ .../store/view/ui/sheets/AppMenuSheet.kt | 10 +- .../store/view/ui/sheets/BaseDialogSheet.kt | 4 +- .../store/view/ui/sheets/DeviceMiuiSheet.kt | 2 +- .../store/view/ui/sheets/DownloadMenuSheet.kt | 130 ++ .../store/view/ui/sheets/FilterSheet.kt | 110 ++ .../view/ui/sheets/InstallErrorDialogSheet.kt | 59 + .../view/ui/sheets/ManualDownloadSheet.kt | 106 ++ .../view/ui/sheets/NetworkDialogSheet.kt | 8 +- .../view/ui/sheets/PermissionBottomSheet.kt | 128 ++ ...redSplashFragment.kt => SplashFragment.kt} | 223 ++-- .../view/ui/spoof/DeviceSpoofFragment.kt | 112 ++ .../view/ui/spoof/LocaleSpoofFragment.kt | 110 ++ .../store/view/ui/spoof/SpoofFragment.kt | 144 +++ .../store/view/ui/updates/UpdatesFragment.kt | 42 +- .../AccountViewModel.kt} | 4 +- .../store/viewmodel/all/BlacklistViewModel.kt | 107 ++ .../store/viewmodel/all/FavouriteViewModel.kt | 74 +- .../store/viewmodel/all/InstalledViewModel.kt | 64 +- .../store/viewmodel/all/UpdatesViewModel.kt | 4 +- .../store/viewmodel/auth/AuthViewModel.kt | 63 +- .../viewmodel/blacklist/BlacklistViewModel.kt | 153 --- .../browse/ExpandedStreamBrowseViewModel.kt | 11 +- .../viewmodel/browse/StreamBrowseViewModel.kt | 42 +- .../viewmodel/category/CategoryViewModel.kt | 15 +- .../commons/PermissionRationaleViewModel.kt | 35 - .../viewmodel/details/AppDetailsViewModel.kt | 338 +++--- .../details/DetailsClusterViewModel.kt | 117 ++ .../DetailsExodusViewModel.kt} | 6 +- .../viewmodel/details/DetailsMoreViewModel.kt | 41 + .../viewmodel/details/DevProfileViewModel.kt | 26 +- .../viewmodel/details/ExodusViewModel.kt | 49 - .../store/viewmodel/details/MoreViewModel.kt | 52 - .../viewmodel/details/PermissionViewModel.kt | 50 - .../viewmodel/details/ReviewViewModel.kt | 74 -- .../viewmodel/dispenser/DispenserViewModel.kt | 48 - .../viewmodel/downloads/DownloadViewModel.kt | 14 + .../viewmodel/downloads/DownloadsViewModel.kt | 95 -- .../viewmodel/homestream/StreamViewModel.kt | 116 +- .../viewmodel/onboarding/MicroGViewModel.kt | 127 -- .../onboarding/OnboardingViewModel.kt | 125 +- .../preferences/InstallerViewModel.kt | 139 --- .../preferences/ProxyURLViewModel.kt | 4 +- .../store/viewmodel/review/ReviewViewModel.kt | 72 ++ .../viewmodel/search/SearchResultViewModel.kt | 102 ++ .../search/SearchSuggestionViewModel.kt | 57 + .../store/viewmodel/search/SearchViewModel.kt | 126 -- .../viewmodel/sheets/DownloadMenuViewModel.kt | 27 + .../store/viewmodel/sheets/FilterViewModel.kt | 14 + .../sheets/ManualDownloadViewModel.kt | 43 + .../store/viewmodel/spoof/SpoofViewModel.kt | 63 +- .../subcategory/CategoryStreamViewModel.kt | 76 +- .../viewmodel/topchart/TopChartViewModel.kt | 24 +- app/src/main/res/drawable/ic_about.xml | 22 - app/src/main/res/drawable/ic_android.xml | 7 +- app/src/main/res/drawable/ic_apk_install.xml | 7 +- app/src/main/res/drawable/ic_apps_outage.xml | 14 - app/src/main/res/drawable/ic_arrow_back.xml | 22 +- .../main/res/drawable/ic_arrow_drop_down.xml | 14 - .../main/res/drawable/ic_arrow_forward.xml | 15 - app/src/main/res/drawable/ic_campaign.xml | 14 - app/src/main/res/drawable/ic_cancel.xml | 21 +- app/src/main/res/drawable/ic_check.xml | 30 +- app/src/main/res/drawable/ic_cloud_upload.xml | 7 +- app/src/main/res/drawable/ic_code.xml | 21 +- app/src/main/res/drawable/ic_delete.xml | 11 + .../main/res/drawable/ic_delete_forever.xml | 14 - app/src/main/res/drawable/ic_disclaimer.xml | 21 +- .../main/res/drawable/ic_download_manager.xml | 26 +- app/src/main/res/drawable/ic_experiment.xml | 14 - app/src/main/res/drawable/ic_faq.xml | 21 +- app/src/main/res/drawable/ic_help.xml | 30 +- .../res/drawable/ic_keyboard_arrow_down.xml | 14 - .../res/drawable/ic_keyboard_arrow_up.xml | 14 - app/src/main/res/drawable/ic_license.xml | 21 +- app/src/main/res/drawable/ic_logout.xml | 22 +- app/src/main/res/drawable/ic_mail.xml | 27 +- app/src/main/res/drawable/ic_map.xml | 29 + app/src/main/res/drawable/ic_menu_about.xml | 27 +- app/src/main/res/drawable/ic_more_vert.xml | 14 - app/src/main/res/drawable/ic_network.xml | 27 +- app/src/main/res/drawable/ic_paid.xml | 14 - .../main/res/drawable/ic_person_location.xml | 14 - app/src/main/res/drawable/ic_privacy.xml | 21 +- app/src/main/res/drawable/ic_round_search.xml | 22 +- app/src/main/res/drawable/ic_scan.xml | 14 - app/src/main/res/drawable/ic_share.xml | 27 +- app/src/main/res/drawable/ic_star.xml | 27 +- app/src/main/res/drawable/ic_suggestions.xml | 14 - app/src/main/res/drawable/ic_transparent.xml | 12 - app/src/main/res/drawable/ic_updates.xml | 30 +- app/src/main/res/drawable/ic_visibility.xml | 14 - .../main/res/layout-land/fragment_about.xml | 101 ++ .../main/res/layout-land/fragment_account.xml | 147 +++ .../res/layout-land/fragment_installer.xml | 47 + .../fragment_onboarding_permissions.xml | 80 ++ .../fragment_onboarding_welcome.xml | 63 + .../main/res/layout-land/fragment_splash.xml | 1 + .../dialog_auto_updates_restrictions.xml | 32 - .../layout/dialog_text_input_edit_text.xml | 5 +- app/src/main/res/layout/fragment_about.xml | 91 ++ app/src/main/res/layout/fragment_account.xml | 138 +++ .../main/res/layout/fragment_app_links.xml | 47 + app/src/main/res/layout/fragment_details.xml | 130 ++ .../main/res/layout/fragment_details_more.xml | 106 ++ .../res/layout/fragment_details_review.xml | 130 ++ .../layout/fragment_details_screenshots.xml | 35 + .../main/res/layout/fragment_dispenser.xml | 58 + app/src/main/res/layout/fragment_download.xml | 46 + .../main/res/layout/fragment_favourite.xml | 46 + .../main/res/layout/fragment_installer.xml | 48 + .../main/res/layout/fragment_onboarding.xml | 84 ++ .../fragment_onboarding_permissions.xml | 72 ++ .../layout/fragment_onboarding_welcome.xml | 59 + .../main/res/layout/fragment_screenshot.xml | 43 + .../res/layout/fragment_search_result.xml | 80 ++ .../res/layout/fragment_search_suggestion.xml | 67 ++ app/src/main/res/layout/fragment_spoof.xml | 52 + .../main/res/layout/layout_details_app.xml | 132 ++ .../main/res/layout/layout_details_beta.xml | 70 ++ .../layout/layout_details_compatibility.xml | 51 + .../res/layout/layout_details_data_safety.xml | 35 + .../res/layout/layout_details_description.xml | 135 +++ .../main/res/layout/layout_details_dev.xml | 62 + .../res/layout/layout_details_permissions.xml | 39 + .../res/layout/layout_details_privacy.xml | 54 + .../main/res/layout/layout_details_review.xml | 160 +++ app/src/main/res/layout/layout_permission.xml | 44 + .../layout/model_developer_carousel_group.xml | 40 + .../main/res/layout/sheet_download_menu.xml | 34 + app/src/main/res/layout/sheet_filter.xml | 113 ++ .../main/res/layout/sheet_install_error.xml | 118 ++ .../main/res/layout/sheet_manual_download.xml | 140 +++ app/src/main/res/layout/sheet_permissions.xml | 74 ++ .../main/res/layout/view_app_dependent.xml | 46 + app/src/main/res/layout/view_badge.xml | 45 + app/src/main/res/layout/view_black.xml | 72 ++ app/src/main/res/layout/view_dash.xml | 64 + app/src/main/res/layout/view_dev_info.xml | 57 + app/src/main/res/layout/view_device.xml | 58 + app/src/main/res/layout/view_dispenser.xml | 30 + app/src/main/res/layout/view_download.xml | 115 ++ app/src/main/res/layout/view_exodus.xml | 58 + app/src/main/res/layout/view_fav.xml | 76 ++ app/src/main/res/layout/view_file.xml | 48 + app/src/main/res/layout/view_installer.xml | 63 + app/src/main/res/layout/view_link.xml | 75 ++ app/src/main/res/layout/view_no_app_alt.xml | 33 + app/src/main/res/layout/view_package.xml | 63 + app/src/main/res/layout/view_permission.xml | 54 + app/src/main/res/layout/view_rating.xml | 54 + app/src/main/res/layout/view_review.xml | 81 ++ app/src/main/res/layout/view_screenshot.xml | 29 + .../main/res/layout/view_screenshot_large.xml | 28 + .../main/res/layout/view_screenshot_mini.xml | 29 + .../res/layout/view_search_suggestion.xml | 58 + app/src/main/res/layout/view_text_divider.xml | 35 + app/src/main/res/layout/view_two_column.xml | 49 + app/src/main/res/menu/menu_blacklist.xml | 33 + app/src/main/res/menu/menu_details.xml | 60 + app/src/main/res/menu/menu_download_main.xml | 30 + .../main/res/menu/menu_download_single.xml | 36 + app/src/main/res/menu/menu_search.xml | 15 + .../main/res/navigation/mobile_navigation.xml | 294 ++++- app/src/main/res/raw/google_roots_ca.pem | 381 ++++++ app/src/main/res/values-ar/strings.xml | 280 ++--- app/src/main/res/values-ast/strings.xml | 7 + app/src/main/res/values-az/strings.xml | 149 +-- app/src/main/res/values-be/strings.xml | 605 ++++------ app/src/main/res/values-bg/strings.xml | 17 +- app/src/main/res/values-ca/strings.xml | 277 +---- app/src/main/res/values-cs/strings.xml | 110 +- app/src/main/res/values-da/strings.xml | 83 +- app/src/main/res/values-de/strings.xml | 98 +- app/src/main/res/values-el/strings.xml | 148 +-- app/src/main/res/values-eo/strings.xml | 13 +- app/src/main/res/values-es/strings.xml | 243 ++-- app/src/main/res/values-et/strings.xml | 474 -------- app/src/main/res/values-eu/strings.xml | 84 +- app/src/main/res/values-fa/strings.xml | 2 + app/src/main/res/values-fi/strings.xml | 106 +- app/src/main/res/values-fr/strings.xml | 189 ++- app/src/main/res/values-gl/strings.xml | 200 +--- .../res/{values-iw => values-he}/strings.xml | 132 +- app/src/main/res/values-hi/strings.xml | 148 +-- app/src/main/res/values-hr/strings.xml | 114 +- app/src/main/res/values-hu/strings.xml | 300 ++--- app/src/main/res/values-ia/strings.xml | 205 ++++ app/src/main/res/values-in/strings.xml | 329 +++-- app/src/main/res/values-it/strings.xml | 122 +- app/src/main/res/values-ja/strings.xml | 112 +- app/src/main/res/values-kab/strings.xml | 109 -- app/src/main/res/values-kmr/strings.xml | 230 ++++ app/src/main/res/values-ko/strings.xml | 8 + app/src/main/res/values-kw/strings.xml | 154 --- app/src/main/res/values-lt/strings.xml | 6 + app/src/main/res/values-lv/strings.xml | 219 ++-- app/src/main/res/values-nb-rNO/strings.xml | 260 ++++ app/src/main/res/values-nl/strings.xml | 307 +---- app/src/main/res/values-pa/strings.xml | 13 +- app/src/main/res/values-pl/strings.xml | 100 +- app/src/main/res/values-pt-rBR/strings.xml | 423 +++---- app/src/main/res/values-pt/strings.xml | 192 +-- app/src/main/res/values-ro/strings.xml | 119 +- app/src/main/res/values-ru/strings.xml | 162 +-- app/src/main/res/values-sc/strings.xml | 234 ++++ app/src/main/res/values-si/strings.xml | 4 + app/src/main/res/values-sk/strings.xml | 82 +- app/src/main/res/values-sl/strings.xml | 43 +- app/src/main/res/values-so/strings.xml | 234 ++++ app/src/main/res/values-sq/strings.xml | 152 +-- app/src/main/res/values-sr/strings.xml | 83 +- app/src/main/res/values-sv/strings.xml | 166 +-- app/src/main/res/values-ta/strings.xml | 85 +- app/src/main/res/values-tr/strings.xml | 167 +-- app/src/main/res/values-uk/strings.xml | 422 +++---- app/src/main/res/values-ur/strings.xml | 430 ------- app/src/main/res/values-vi/strings.xml | 58 +- app/src/main/res/values-yue/strings.xml | 4 + app/src/main/res/values-zh-rCN/strings.xml | 97 +- app/src/main/res/values-zh-rTW/strings.xml | 163 +-- app/src/main/res/values/arrays.xml | 12 +- app/src/main/res/values/dimens.xml | 4 - app/src/main/res/values/strings.xml | 186 +-- app/src/main/res/xml/preferences_network.xml | 24 +- app/src/main/res/xml/preferences_ui.xml | 7 + app/src/main/res/xml/preferences_updates.xml | 11 +- app/src/preload/AndroidManifest.xml | 7 - .../com/aurora/store/util/FlavouredUtil.kt | 11 - .../java/com/aurora/store/ExampleUnitTest.kt} | 19 +- .../com/aurora/store/util/FlavouredUtil.kt | 11 - build.gradle.kts | 23 +- components/app-carousel.tsx | 20 + components/bottom-nav.tsx | 112 ++ components/home/app-grid-section.tsx | 17 +- components/home/featured-banner.tsx | 68 +- components/navbar.tsx | 77 +- .../metadata/android/ar/changelogs/66.txt | 5 - .../metadata/android/ar/changelogs/67.txt | 4 - .../metadata/android/ar/changelogs/68.txt | 5 - .../metadata/android/ar/changelogs/71.txt | 2 - .../metadata/android/ar/changelogs/72.txt | 5 - .../metadata/android/ar/changelogs/73.txt | 4 - .../metadata/android/ar/full_description.txt | 5 +- .../metadata/android/ca/changelogs/72.txt | 5 - .../metadata/android/ca/full_description.txt | 11 - .../metadata/android/ca/short_description.txt | 1 - .../metadata/android/cs-CZ/changelogs/66.txt | 5 - .../metadata/android/cs-CZ/changelogs/67.txt | 4 - .../metadata/android/cs-CZ/changelogs/68.txt | 5 - .../metadata/android/cs-CZ/changelogs/71.txt | 2 - .../metadata/android/cs-CZ/changelogs/72.txt | 5 - .../metadata/android/cs-CZ/changelogs/73.txt | 4 - .../android/cs-CZ/full_description.txt | 5 +- .../metadata/android/da-DK/changelogs/41.txt | 2 +- .../metadata/android/da-DK/changelogs/42.txt | 15 - .../metadata/android/da-DK/changelogs/43.txt | 2 - .../metadata/android/da-DK/changelogs/44.txt | 6 - .../metadata/android/da-DK/changelogs/45.txt | 2 - .../metadata/android/da-DK/changelogs/46.txt | 8 - .../metadata/android/da-DK/changelogs/47.txt | 1 - .../metadata/android/da-DK/changelogs/48.txt | 3 - .../metadata/android/da-DK/changelogs/49.txt | 4 - .../android/da-DK/full_description.txt | 11 +- .../metadata/android/de-DE/changelogs/66.txt | 5 - .../metadata/android/de-DE/changelogs/67.txt | 4 - .../metadata/android/de-DE/changelogs/68.txt | 5 - .../metadata/android/de-DE/changelogs/72.txt | 5 - .../metadata/android/de-DE/changelogs/73.txt | 4 - .../android/de-DE/full_description.txt | 5 +- .../metadata/android/el-GR/changelogs/42.txt | 15 - .../metadata/android/el-GR/changelogs/43.txt | 2 - .../metadata/android/el-GR/changelogs/44.txt | 6 - .../metadata/android/el-GR/changelogs/46.txt | 8 - .../metadata/android/el-GR/changelogs/47.txt | 1 - .../metadata/android/el-GR/changelogs/48.txt | 3 - .../metadata/android/el-GR/changelogs/49.txt | 4 - .../metadata/android/el-GR/changelogs/50.txt | 9 - .../metadata/android/el-GR/changelogs/51.txt | 1 - .../metadata/android/el-GR/changelogs/52.txt | 6 - .../metadata/android/el-GR/changelogs/53.txt | 3 - .../metadata/android/el-GR/changelogs/54.txt | 18 - .../metadata/android/el-GR/changelogs/55.txt | 18 - .../metadata/android/el-GR/changelogs/56.txt | 7 - .../metadata/android/el-GR/changelogs/57.txt | 7 - .../metadata/android/el-GR/changelogs/58.txt | 4 - .../metadata/android/el-GR/changelogs/59.txt | 6 - .../metadata/android/el-GR/changelogs/60.txt | 2 - .../metadata/android/el-GR/changelogs/61.txt | 8 - .../metadata/android/el-GR/changelogs/62.txt | 6 - .../metadata/android/el-GR/changelogs/63.txt | 3 - .../metadata/android/el-GR/changelogs/64.txt | 6 - .../metadata/android/el-GR/changelogs/65.txt | 4 - .../metadata/android/el-GR/changelogs/66.txt | 5 - .../metadata/android/el-GR/changelogs/73.txt | 4 - .../android/el-GR/full_description.txt | 19 +- .../metadata/android/en-US/changelogs/66.txt | 5 - .../metadata/android/en-US/changelogs/67.txt | 4 - .../metadata/android/en-US/changelogs/68.txt | 5 - .../metadata/android/en-US/changelogs/69.txt | 3 - .../metadata/android/en-US/changelogs/70.txt | 2 - .../metadata/android/en-US/changelogs/71.txt | 2 - .../metadata/android/en-US/changelogs/72.txt | 5 - .../metadata/android/en-US/changelogs/73.txt | 4 - .../android/en-US/full_description.txt | 5 +- .../metadata/android/es-ES/changelogs/57.txt | 2 +- .../metadata/android/es-ES/changelogs/65.txt | 4 - .../metadata/android/es-ES/changelogs/72.txt | 5 - .../metadata/android/es-ES/changelogs/73.txt | 4 - .../android/es-ES/full_description.txt | 13 +- .../android/es-ES/short_description.txt | 2 +- .../metadata/android/et/changelogs/38.txt | 2 - .../metadata/android/et/changelogs/40.txt | 2 - .../metadata/android/et/changelogs/67.txt | 4 - .../metadata/android/et/changelogs/68.txt | 2 - .../metadata/android/et/changelogs/71.txt | 2 - .../metadata/android/et/changelogs/72.txt | 5 - .../metadata/android/et/changelogs/73.txt | 4 - .../metadata/android/et/full_description.txt | 11 - .../metadata/android/et/short_description.txt | 1 - .../metadata/android/fi-FI/changelogs/58.txt | 4 - .../metadata/android/fi-FI/changelogs/65.txt | 4 - .../metadata/android/fi-FI/changelogs/72.txt | 5 - .../metadata/android/fi-FI/changelogs/73.txt | 4 - .../android/fi-FI/full_description.txt | 11 - .../android/fi-FI/short_description.txt | 1 - .../metadata/android/fr-FR/changelogs/46.txt | 16 +- .../metadata/android/fr-FR/changelogs/47.txt | 2 +- .../metadata/android/fr-FR/changelogs/48.txt | 4 +- .../metadata/android/fr-FR/changelogs/49.txt | 6 +- .../metadata/android/fr-FR/changelogs/50.txt | 16 +- .../metadata/android/fr-FR/changelogs/51.txt | 2 +- .../metadata/android/fr-FR/changelogs/52.txt | 12 +- .../metadata/android/fr-FR/changelogs/53.txt | 6 +- .../metadata/android/fr-FR/changelogs/58.txt | 6 +- .../metadata/android/fr-FR/changelogs/66.txt | 5 - .../metadata/android/fr-FR/changelogs/67.txt | 4 - .../metadata/android/fr-FR/changelogs/68.txt | 5 - .../metadata/android/fr-FR/changelogs/72.txt | 5 - .../metadata/android/fr-FR/changelogs/73.txt | 4 - .../android/fr-FR/full_description.txt | 18 +- .../android/fr-FR/short_description.txt | 2 +- .../metadata/android/hi/changelogs/42.txt | 28 +- .../metadata/android/hi/changelogs/46.txt | 16 +- .../metadata/android/hi/changelogs/54.txt | 36 +- .../metadata/android/hi/changelogs/55.txt | 36 +- .../metadata/android/hi/changelogs/62.txt | 6 - .../metadata/android/hi/changelogs/63.txt | 3 - .../metadata/android/hi/changelogs/64.txt | 6 - .../metadata/android/hi/changelogs/65.txt | 4 - .../metadata/android/hi/changelogs/66.txt | 5 - .../metadata/android/hi/changelogs/72.txt | 5 - .../metadata/android/hi/full_description.txt | 15 +- .../metadata/android/hr/changelogs/72.txt | 5 - .../metadata/android/hr/full_description.txt | 7 +- .../metadata/android/hu-HU/changelogs/42.txt | 7 +- .../metadata/android/hu-HU/changelogs/46.txt | 8 - .../metadata/android/hu-HU/changelogs/72.txt | 5 - .../metadata/android/hu-HU/changelogs/73.txt | 4 - .../android/hu-HU/full_description.txt | 15 +- .../metadata/android/id/changelogs/42.txt | 30 +- .../metadata/android/id/changelogs/65.txt | 3 + .../metadata/android/id/changelogs/66.txt | 5 - .../metadata/android/id/changelogs/67.txt | 4 - .../metadata/android/id/changelogs/68.txt | 5 - .../metadata/android/id/changelogs/72.txt | 5 - .../metadata/android/id/changelogs/73.txt | 4 - .../metadata/android/id/full_description.txt | 7 +- .../metadata/android/it-IT/changelogs/38.txt | 2 - .../metadata/android/it-IT/changelogs/40.txt | 2 - .../metadata/android/it-IT/changelogs/41.txt | 1 - .../metadata/android/it-IT/changelogs/42.txt | 15 - .../metadata/android/it-IT/changelogs/43.txt | 2 - .../metadata/android/it-IT/changelogs/45.txt | 2 - .../metadata/android/it-IT/changelogs/47.txt | 1 - .../metadata/android/it-IT/changelogs/51.txt | 1 - .../metadata/android/it-IT/changelogs/60.txt | 2 - .../metadata/android/it-IT/changelogs/73.txt | 4 - .../android/it-IT/full_description.txt | 17 +- .../android/it-IT/short_description.txt | 2 +- .../metadata/android/ja-JP/changelogs/72.txt | 5 - .../android/ja-JP/full_description.txt | 5 +- .../metadata/android/kw/full_description.txt | 11 - .../metadata/android/kw/short_description.txt | 1 - .../metadata/android/lv/changelogs/45.txt | 2 - .../metadata/android/lv/changelogs/47.txt | 1 - .../metadata/android/lv/changelogs/48.txt | 3 - .../metadata/android/lv/changelogs/49.txt | 4 - .../metadata/android/lv/changelogs/51.txt | 1 - .../metadata/android/lv/changelogs/53.txt | 3 - .../metadata/android/lv/changelogs/58.txt | 4 - .../metadata/android/lv/changelogs/60.txt | 2 - .../metadata/android/lv/changelogs/62.txt | 4 +- .../metadata/android/lv/changelogs/65.txt | 2 +- .../metadata/android/lv/changelogs/66.txt | 5 - .../metadata/android/lv/changelogs/67.txt | 4 - .../metadata/android/lv/changelogs/68.txt | 5 - .../metadata/android/lv/changelogs/72.txt | 5 - .../metadata/android/lv/changelogs/73.txt | 4 - .../metadata/android/lv/full_description.txt | 17 +- .../metadata/android/pl-PL/changelogs/72.txt | 5 - .../android/pl-PL/full_description.txt | 9 +- .../android/pl-PL/short_description.txt | 2 +- .../metadata/android/pt-BR/changelogs/66.txt | 5 - .../metadata/android/pt-BR/changelogs/67.txt | 4 - .../metadata/android/pt-BR/changelogs/68.txt | 6 - .../metadata/android/pt-BR/changelogs/71.txt | 2 - .../metadata/android/pt-BR/changelogs/72.txt | 5 - .../metadata/android/pt-BR/changelogs/73.txt | 4 - .../android/pt-BR/full_description.txt | 19 +- .../android/pt-BR/short_description.txt | 2 +- .../metadata/android/pt/changelogs/73.txt | 4 - .../metadata/android/pt/full_description.txt | 19 +- .../metadata/android/ro/changelogs/72.txt | 5 - .../metadata/android/ro/full_description.txt | 11 - .../metadata/android/ru-RU/changelogs/71.txt | 2 - .../metadata/android/ru-RU/changelogs/72.txt | 5 - .../metadata/android/ru-RU/changelogs/73.txt | 4 - .../android/ru-RU/full_description.txt | 17 +- .../android/ru-RU/short_description.txt | 2 +- .../metadata/android/sk/changelogs/66.txt | 5 - .../metadata/android/sk/changelogs/67.txt | 4 - .../metadata/android/sk/changelogs/68.txt | 3 - .../metadata/android/sk/changelogs/72.txt | 5 - .../metadata/android/sk/full_description.txt | 1 + .../metadata/android/sk/short_description.txt | 2 +- .../metadata/android/sq/changelogs/67.txt | 4 - .../metadata/android/sq/changelogs/68.txt | 2 - .../metadata/android/sq/changelogs/73.txt | 4 - .../metadata/android/sq/full_description.txt | 11 - .../metadata/android/sq/short_description.txt | 1 - .../metadata/android/sr/full_description.txt | 1 - .../metadata/android/sv-SE/changelogs/73.txt | 4 - .../android/sv-SE/full_description.txt | 9 +- .../metadata/android/ta-IN/changelogs/42.txt | 10 +- .../metadata/android/ta-IN/changelogs/46.txt | 4 +- .../metadata/android/ta-IN/changelogs/50.txt | 6 +- .../metadata/android/ta-IN/changelogs/52.txt | 4 +- .../metadata/android/ta-IN/changelogs/53.txt | 4 +- .../metadata/android/ta-IN/changelogs/54.txt | 6 +- .../metadata/android/ta-IN/changelogs/55.txt | 6 +- .../metadata/android/ta-IN/changelogs/57.txt | 2 +- .../metadata/android/ta-IN/changelogs/58.txt | 2 +- .../metadata/android/ta-IN/changelogs/64.txt | 6 - .../metadata/android/ta-IN/changelogs/65.txt | 4 - .../metadata/android/ta-IN/changelogs/66.txt | 5 - .../android/ta-IN/full_description.txt | 9 +- .../android/ta-IN/short_description.txt | 1 + .../metadata/android/tr-TR/changelogs/66.txt | 5 - .../metadata/android/tr-TR/changelogs/67.txt | 4 - .../metadata/android/tr-TR/changelogs/68.txt | 5 - .../metadata/android/tr-TR/changelogs/72.txt | 5 - .../metadata/android/tr-TR/changelogs/73.txt | 4 - .../android/tr-TR/full_description.txt | 5 +- .../metadata/android/uk/changelogs/66.txt | 5 - .../metadata/android/uk/changelogs/67.txt | 4 - .../metadata/android/uk/changelogs/68.txt | 5 - .../metadata/android/uk/changelogs/71.txt | 2 - .../metadata/android/uk/changelogs/72.txt | 5 - .../metadata/android/uk/changelogs/73.txt | 4 - .../metadata/android/uk/full_description.txt | 15 +- .../metadata/android/uk/short_description.txt | 2 +- .../metadata/android/zh-CN/changelogs/46.txt | 2 +- .../metadata/android/zh-CN/changelogs/50.txt | 2 +- .../metadata/android/zh-CN/changelogs/58.txt | 2 +- .../metadata/android/zh-CN/changelogs/66.txt | 5 - .../metadata/android/zh-CN/changelogs/67.txt | 4 - .../metadata/android/zh-CN/changelogs/68.txt | 5 - .../metadata/android/zh-CN/changelogs/72.txt | 5 - .../metadata/android/zh-CN/changelogs/73.txt | 4 - .../android/zh-CN/full_description.txt | 7 +- .../metadata/android/zh-TW/changelogs/72.txt | 5 - .../android/zh-TW/full_description.txt | 11 +- gradle.properties | 23 +- gradle/libs.versions.toml | 182 ++- gradle/wrapper/gradle-wrapper.jar | Bin 48966 -> 43583 bytes gradle/wrapper/gradle-wrapper.properties | 5 +- gradlew | 11 +- gradlew.bat | 3 +- next-env.d.ts | 2 +- next.config.mjs | 12 +- settings.gradle.kts | 7 - 810 files changed, 20332 insertions(+), 24634 deletions(-) delete mode 100644 .editorconfig delete mode 100644 LICENSES/Apache-2.0.txt delete mode 100644 LICENSES/CC0-1.0.txt delete mode 100644 LICENSES/GPL-3.0-or-later.txt delete mode 100644 REUSE.toml delete mode 100644 app/schemas/com.aurora.store.data.room.AuroraDatabase/5.json delete mode 100644 app/schemas/com.aurora.store.data.room.AuroraDatabase/6.json delete mode 100644 app/src/androidTest/java/com/aurora/store/IsolatedTest.kt delete mode 100644 app/src/androidTest/java/com/aurora/store/compose/composable/ErrorTest.kt delete mode 100644 app/src/androidTest/java/com/aurora/store/compose/composable/InfoTest.kt delete mode 100644 app/src/androidTest/java/com/aurora/store/compose/composable/PermissionListItemTest.kt delete mode 100644 app/src/androidTest/java/com/aurora/store/compose/composable/TopAppBarTest.kt delete mode 100644 app/src/androidTest/java/com/aurora/store/compose/composable/app/AnimatedAppIconTest.kt delete mode 100644 app/src/huawei/AndroidManifest.xml delete mode 100644 app/src/huawei/java/com/aurora/store/data/receiver/InstallerStatusReceiver.kt delete mode 100644 app/src/huawei/java/com/aurora/store/util/FlavouredUtil.kt delete mode 100644 app/src/huawei/java/com/huawei/appmarket/service/externalservice/distribution/thirdsilentinstall/SilentInstallRequest.java delete mode 100644 app/src/huawei/java/com/huawei/appmarket/service/externalservice/distribution/thirdsilentinstall/SilentInstallResponse.java delete mode 100644 app/src/main/java/com/aurora/extensions/Any.kt delete mode 100644 app/src/main/java/com/aurora/extensions/App.kt rename app/src/{preload/java/com/aurora/store/view/ui/splash/SplashFragment.kt => main/java/com/aurora/extensions/Commons.kt} (71%) delete mode 100644 app/src/main/java/com/aurora/extensions/Paging.kt delete mode 100644 app/src/main/java/com/aurora/extensions/SharedPreferences.kt delete mode 100644 app/src/main/java/com/aurora/extensions/Shimmer.kt delete mode 100644 app/src/main/java/com/aurora/extensions/WindowAdaptiveInfo.kt delete mode 100644 app/src/main/java/com/aurora/store/ComposeActivity.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/BlackListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/ContainedLoadingIndicator.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/DeviceListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/DispenserListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/DownloadListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/Error.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/FavouriteListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/Header.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/Info.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/InstallerListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/LinkListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/LocaleListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/Logo.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/MicroG.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/PageIndicator.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/PermissionList.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/PermissionListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/SearchSuggestionListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/TextDividerComposable.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/TopAppBar.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/app/AnimatedAppIcon.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/app/AppListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/app/LargeAppListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/app/TagListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/details/ExodusListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/details/RatingListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/details/ReviewListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composable/details/ScreenshotListItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/composition/LocalUI.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/navigation/NavDisplay.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/navigation/Screen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/preview/AppPreviewProvider.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/preview/CoilPreviewProvider.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/preview/FavouritePreviewProvider.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/preview/PreviewTemplate.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/preview/ReviewPreviewProvider.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/theme/Color.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/theme/Theme.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/about/AboutDialog.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/about/AboutScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/accounts/AccountsScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/accounts/LogoutDialog.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/blacklist/BlacklistScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/blacklist/menu/BlacklistMenu.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/blacklist/menu/MenuItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/commons/PermissionRationaleScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/AppDetailsScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/ExodusScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/ManualDownloadScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/MicroGScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/MoreScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/PermissionScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/ReviewScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/ScreenshotScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/composable/Actions.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/composable/Changelog.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/composable/Compatibility.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/composable/DataSafety.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/composable/Details.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/composable/DeveloperDetails.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/composable/Privacy.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/composable/RatingAndReviews.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/composable/Screenshots.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/composable/Tags.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/composable/Testing.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/menu/AppDetailsMenu.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/menu/MenuItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/details/navigation/ExtraScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/dev/DevProfileScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/dispenser/DispenserScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/dispenser/InputDispenserDialog.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/dispenser/RemoveDispenserDialog.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/downloads/DownloadsScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/downloads/menu/DownloadsMenu.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/downloads/menu/MenuItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/favourite/FavouriteScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/favourite/menu/FavouriteMenu.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/favourite/menu/MenuItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/installed/InstalledScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/onboarding/MicroGPage.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/onboarding/OnboardingScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/onboarding/PermissionsPage.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/onboarding/WelcomePage.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/onboarding/navigation/OnboardingPage.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/preferences/installation/InstallerScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/search/SearchScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/spoof/DevicePage.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/spoof/LocalePage.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/spoof/SpoofScreen.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/spoof/menu/MenuItem.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/spoof/menu/SpoofMenu.kt delete mode 100644 app/src/main/java/com/aurora/store/compose/ui/spoof/navigation/SpoofPage.kt delete mode 100644 app/src/main/java/com/aurora/store/data/activity/MicroGInstallerActivity.kt delete mode 100644 app/src/main/java/com/aurora/store/data/installer/MicroGInstaller.kt rename app/src/{huawei/java/com/aurora/store/view/ui/splash/SplashFragment.kt => main/java/com/aurora/store/data/model/Dash.kt} (64%) rename app/src/{vanilla/java/com/aurora/store/view/ui/splash/SplashFragment.kt => main/java/com/aurora/store/data/model/Filter.kt} (73%) create mode 100644 app/src/main/java/com/aurora/store/data/model/PermissionGroupInfo.kt delete mode 100644 app/src/main/java/com/aurora/store/data/model/SearchFilter.kt delete mode 100644 app/src/main/java/com/aurora/store/data/paging/GenericPagingSource.kt create mode 100644 app/src/main/java/com/aurora/store/data/providers/FilterProvider.kt delete mode 100644 app/src/main/java/com/aurora/store/data/receiver/DownloadCancelReceiver.kt rename app/src/main/java/com/aurora/store/data/receiver/{BaseInstallerStatusReceiver.kt => InstallerStatusReceiver.kt} (63%) delete mode 100644 app/src/main/java/com/aurora/store/data/receiver/NetworkBroadcastReceiver.kt delete mode 100644 app/src/main/java/com/aurora/store/data/room/suite/ExternalApk.kt delete mode 100644 app/src/main/java/com/aurora/store/util/IFlavouredUtil.kt create mode 100644 app/src/main/java/com/aurora/store/view/custom/RatingView.kt create mode 100644 app/src/main/java/com/aurora/store/view/custom/layouts/DevInfoLayout.kt create mode 100644 app/src/main/java/com/aurora/store/view/custom/layouts/PermissionGroup.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/controller/DetailsCarouselController.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/controller/DeveloperCarouselController.kt rename app/src/{preload/java/com/aurora/store/data/receiver/InstallerStatusReceiver.kt => main/java/com/aurora/store/view/epoxy/controller/EarlyAccessCarouselController.kt} (63%) create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/groups/DeveloperModelGroup.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/BlackListView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/DispenserView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/DownloadView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/FavouriteView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/InstalledAppView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/SearchSuggestionView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/TextDividerView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/app/NoAppAltView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/details/AppDependentView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/details/BadgeView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/details/ExodusView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/details/FileView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/details/InfoView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/details/LargeScreenshotView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/details/MiniScreenshotView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/details/MoreBadgeView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/details/ReviewView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/details/ScreenshotView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/preference/DashView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/preference/DeviceView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/preference/InstallerView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/preference/LinkView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/preference/LocaleView.kt create mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/preference/PermissionView.kt create mode 100644 app/src/main/java/com/aurora/store/view/theme/Theme.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/about/AboutDialog.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/about/AboutFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/account/AccountFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/account/LogoutDialog.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/all/AppsGamesFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/commons/BlacklistFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/commons/FavouriteFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/details/AppDetailsFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/details/DetailsExodusFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/details/DetailsMoreFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/details/DetailsReviewFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/details/DevAppsFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/details/ScreenshotFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/dispenser/DispenserFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/dispenser/InputDispenserDialog.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/dispenser/RemoveDispenserDialog.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/downloads/DownloadFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/onboarding/AppLinksFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/onboarding/OnboardingFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/onboarding/PermissionsFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/onboarding/WelcomeFragment.kt rename app/src/main/java/com/aurora/store/view/ui/preferences/{installation => }/InstallationPreference.kt (93%) create mode 100644 app/src/main/java/com/aurora/store/view/ui/preferences/InstallerFragment.kt rename app/src/main/java/com/aurora/store/view/ui/preferences/{network => }/NetworkPreference.kt (51%) rename app/src/main/java/com/aurora/store/view/ui/preferences/{network => }/ProxyURLDialog.kt (59%) rename app/src/main/java/com/aurora/store/view/ui/preferences/{updates => }/UpdatesPreference.kt (77%) delete mode 100644 app/src/main/java/com/aurora/store/view/ui/preferences/updates/UpdatesRestrictionsDialog.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/search/SearchResultsFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/search/SearchSuggestionFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/sheets/DownloadMenuSheet.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/sheets/FilterSheet.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/sheets/InstallErrorDialogSheet.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/sheets/ManualDownloadSheet.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/sheets/PermissionBottomSheet.kt rename app/src/main/java/com/aurora/store/view/ui/splash/{BaseFlavouredSplashFragment.kt => SplashFragment.kt} (63%) create mode 100644 app/src/main/java/com/aurora/store/view/ui/spoof/DeviceSpoofFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/spoof/LocaleSpoofFragment.kt create mode 100644 app/src/main/java/com/aurora/store/view/ui/spoof/SpoofFragment.kt rename app/src/main/java/com/aurora/store/viewmodel/{accounts/AccountsViewModel.kt => account/AccountViewModel.kt} (68%) create mode 100644 app/src/main/java/com/aurora/store/viewmodel/all/BlacklistViewModel.kt delete mode 100644 app/src/main/java/com/aurora/store/viewmodel/blacklist/BlacklistViewModel.kt delete mode 100644 app/src/main/java/com/aurora/store/viewmodel/commons/PermissionRationaleViewModel.kt create mode 100644 app/src/main/java/com/aurora/store/viewmodel/details/DetailsClusterViewModel.kt rename app/src/main/java/com/aurora/store/viewmodel/{preferences/UpdatesRestrictionsViewModel.kt => details/DetailsExodusViewModel.kt} (54%) create mode 100644 app/src/main/java/com/aurora/store/viewmodel/details/DetailsMoreViewModel.kt delete mode 100644 app/src/main/java/com/aurora/store/viewmodel/details/ExodusViewModel.kt delete mode 100644 app/src/main/java/com/aurora/store/viewmodel/details/MoreViewModel.kt delete mode 100644 app/src/main/java/com/aurora/store/viewmodel/details/PermissionViewModel.kt delete mode 100644 app/src/main/java/com/aurora/store/viewmodel/details/ReviewViewModel.kt delete mode 100644 app/src/main/java/com/aurora/store/viewmodel/dispenser/DispenserViewModel.kt create mode 100644 app/src/main/java/com/aurora/store/viewmodel/downloads/DownloadViewModel.kt delete mode 100644 app/src/main/java/com/aurora/store/viewmodel/downloads/DownloadsViewModel.kt delete mode 100644 app/src/main/java/com/aurora/store/viewmodel/onboarding/MicroGViewModel.kt delete mode 100644 app/src/main/java/com/aurora/store/viewmodel/preferences/InstallerViewModel.kt create mode 100644 app/src/main/java/com/aurora/store/viewmodel/review/ReviewViewModel.kt create mode 100644 app/src/main/java/com/aurora/store/viewmodel/search/SearchResultViewModel.kt create mode 100644 app/src/main/java/com/aurora/store/viewmodel/search/SearchSuggestionViewModel.kt delete mode 100644 app/src/main/java/com/aurora/store/viewmodel/search/SearchViewModel.kt create mode 100644 app/src/main/java/com/aurora/store/viewmodel/sheets/DownloadMenuViewModel.kt create mode 100644 app/src/main/java/com/aurora/store/viewmodel/sheets/FilterViewModel.kt create mode 100644 app/src/main/java/com/aurora/store/viewmodel/sheets/ManualDownloadViewModel.kt delete mode 100644 app/src/main/res/drawable/ic_about.xml delete mode 100644 app/src/main/res/drawable/ic_apps_outage.xml delete mode 100644 app/src/main/res/drawable/ic_arrow_drop_down.xml delete mode 100644 app/src/main/res/drawable/ic_arrow_forward.xml delete mode 100644 app/src/main/res/drawable/ic_campaign.xml create mode 100644 app/src/main/res/drawable/ic_delete.xml delete mode 100644 app/src/main/res/drawable/ic_delete_forever.xml delete mode 100644 app/src/main/res/drawable/ic_experiment.xml delete mode 100644 app/src/main/res/drawable/ic_keyboard_arrow_down.xml delete mode 100644 app/src/main/res/drawable/ic_keyboard_arrow_up.xml create mode 100644 app/src/main/res/drawable/ic_map.xml delete mode 100644 app/src/main/res/drawable/ic_more_vert.xml delete mode 100644 app/src/main/res/drawable/ic_paid.xml delete mode 100644 app/src/main/res/drawable/ic_person_location.xml delete mode 100644 app/src/main/res/drawable/ic_scan.xml delete mode 100644 app/src/main/res/drawable/ic_suggestions.xml delete mode 100644 app/src/main/res/drawable/ic_transparent.xml delete mode 100644 app/src/main/res/drawable/ic_visibility.xml create mode 100644 app/src/main/res/layout-land/fragment_about.xml create mode 100644 app/src/main/res/layout-land/fragment_account.xml create mode 100644 app/src/main/res/layout-land/fragment_installer.xml create mode 100644 app/src/main/res/layout-land/fragment_onboarding_permissions.xml create mode 100644 app/src/main/res/layout-land/fragment_onboarding_welcome.xml delete mode 100644 app/src/main/res/layout/dialog_auto_updates_restrictions.xml create mode 100644 app/src/main/res/layout/fragment_about.xml create mode 100644 app/src/main/res/layout/fragment_account.xml create mode 100644 app/src/main/res/layout/fragment_app_links.xml create mode 100644 app/src/main/res/layout/fragment_details.xml create mode 100644 app/src/main/res/layout/fragment_details_more.xml create mode 100644 app/src/main/res/layout/fragment_details_review.xml create mode 100644 app/src/main/res/layout/fragment_details_screenshots.xml create mode 100644 app/src/main/res/layout/fragment_dispenser.xml create mode 100644 app/src/main/res/layout/fragment_download.xml create mode 100644 app/src/main/res/layout/fragment_favourite.xml create mode 100644 app/src/main/res/layout/fragment_installer.xml create mode 100644 app/src/main/res/layout/fragment_onboarding.xml create mode 100644 app/src/main/res/layout/fragment_onboarding_permissions.xml create mode 100644 app/src/main/res/layout/fragment_onboarding_welcome.xml create mode 100644 app/src/main/res/layout/fragment_screenshot.xml create mode 100644 app/src/main/res/layout/fragment_search_result.xml create mode 100644 app/src/main/res/layout/fragment_search_suggestion.xml create mode 100644 app/src/main/res/layout/fragment_spoof.xml create mode 100644 app/src/main/res/layout/layout_details_app.xml create mode 100644 app/src/main/res/layout/layout_details_beta.xml create mode 100644 app/src/main/res/layout/layout_details_compatibility.xml create mode 100644 app/src/main/res/layout/layout_details_data_safety.xml create mode 100644 app/src/main/res/layout/layout_details_description.xml create mode 100644 app/src/main/res/layout/layout_details_dev.xml create mode 100644 app/src/main/res/layout/layout_details_permissions.xml create mode 100644 app/src/main/res/layout/layout_details_privacy.xml create mode 100644 app/src/main/res/layout/layout_details_review.xml create mode 100644 app/src/main/res/layout/layout_permission.xml create mode 100644 app/src/main/res/layout/model_developer_carousel_group.xml create mode 100644 app/src/main/res/layout/sheet_download_menu.xml create mode 100644 app/src/main/res/layout/sheet_filter.xml create mode 100644 app/src/main/res/layout/sheet_install_error.xml create mode 100644 app/src/main/res/layout/sheet_manual_download.xml create mode 100644 app/src/main/res/layout/sheet_permissions.xml create mode 100644 app/src/main/res/layout/view_app_dependent.xml create mode 100644 app/src/main/res/layout/view_badge.xml create mode 100644 app/src/main/res/layout/view_black.xml create mode 100644 app/src/main/res/layout/view_dash.xml create mode 100644 app/src/main/res/layout/view_dev_info.xml create mode 100644 app/src/main/res/layout/view_device.xml create mode 100644 app/src/main/res/layout/view_dispenser.xml create mode 100644 app/src/main/res/layout/view_download.xml create mode 100644 app/src/main/res/layout/view_exodus.xml create mode 100644 app/src/main/res/layout/view_fav.xml create mode 100644 app/src/main/res/layout/view_file.xml create mode 100644 app/src/main/res/layout/view_installer.xml create mode 100644 app/src/main/res/layout/view_link.xml create mode 100644 app/src/main/res/layout/view_no_app_alt.xml create mode 100644 app/src/main/res/layout/view_package.xml create mode 100644 app/src/main/res/layout/view_permission.xml create mode 100644 app/src/main/res/layout/view_rating.xml create mode 100644 app/src/main/res/layout/view_review.xml create mode 100644 app/src/main/res/layout/view_screenshot.xml create mode 100644 app/src/main/res/layout/view_screenshot_large.xml create mode 100644 app/src/main/res/layout/view_screenshot_mini.xml create mode 100644 app/src/main/res/layout/view_search_suggestion.xml create mode 100644 app/src/main/res/layout/view_text_divider.xml create mode 100644 app/src/main/res/layout/view_two_column.xml create mode 100644 app/src/main/res/menu/menu_blacklist.xml create mode 100644 app/src/main/res/menu/menu_details.xml create mode 100644 app/src/main/res/menu/menu_download_main.xml create mode 100644 app/src/main/res/menu/menu_download_single.xml create mode 100644 app/src/main/res/menu/menu_search.xml delete mode 100644 app/src/main/res/values-et/strings.xml rename app/src/main/res/{values-iw => values-he}/strings.xml (73%) create mode 100644 app/src/main/res/values-ia/strings.xml delete mode 100644 app/src/main/res/values-kab/strings.xml create mode 100644 app/src/main/res/values-kmr/strings.xml delete mode 100644 app/src/main/res/values-kw/strings.xml create mode 100644 app/src/main/res/values-nb-rNO/strings.xml create mode 100644 app/src/main/res/values-sc/strings.xml create mode 100644 app/src/main/res/values-so/strings.xml delete mode 100644 app/src/main/res/values-ur/strings.xml delete mode 100644 app/src/preload/AndroidManifest.xml delete mode 100644 app/src/preload/java/com/aurora/store/util/FlavouredUtil.kt rename app/src/{vanilla/java/com/aurora/store/data/receiver/InstallerStatusReceiver.kt => test/java/com/aurora/store/ExampleUnitTest.kt} (68%) delete mode 100644 app/src/vanilla/java/com/aurora/store/util/FlavouredUtil.kt create mode 100644 components/app-carousel.tsx create mode 100644 components/bottom-nav.tsx delete mode 100644 fastlane/metadata/android/ar/changelogs/66.txt delete mode 100644 fastlane/metadata/android/ar/changelogs/67.txt delete mode 100644 fastlane/metadata/android/ar/changelogs/68.txt delete mode 100644 fastlane/metadata/android/ar/changelogs/71.txt delete mode 100644 fastlane/metadata/android/ar/changelogs/72.txt delete mode 100644 fastlane/metadata/android/ar/changelogs/73.txt delete mode 100644 fastlane/metadata/android/ca/changelogs/72.txt delete mode 100644 fastlane/metadata/android/ca/full_description.txt delete mode 100644 fastlane/metadata/android/ca/short_description.txt delete mode 100644 fastlane/metadata/android/cs-CZ/changelogs/66.txt delete mode 100644 fastlane/metadata/android/cs-CZ/changelogs/67.txt delete mode 100644 fastlane/metadata/android/cs-CZ/changelogs/68.txt delete mode 100644 fastlane/metadata/android/cs-CZ/changelogs/71.txt delete mode 100644 fastlane/metadata/android/cs-CZ/changelogs/72.txt delete mode 100644 fastlane/metadata/android/cs-CZ/changelogs/73.txt delete mode 100644 fastlane/metadata/android/da-DK/changelogs/42.txt delete mode 100644 fastlane/metadata/android/da-DK/changelogs/43.txt delete mode 100644 fastlane/metadata/android/da-DK/changelogs/44.txt delete mode 100644 fastlane/metadata/android/da-DK/changelogs/45.txt delete mode 100644 fastlane/metadata/android/da-DK/changelogs/46.txt delete mode 100644 fastlane/metadata/android/da-DK/changelogs/47.txt delete mode 100644 fastlane/metadata/android/da-DK/changelogs/48.txt delete mode 100644 fastlane/metadata/android/da-DK/changelogs/49.txt delete mode 100644 fastlane/metadata/android/de-DE/changelogs/66.txt delete mode 100644 fastlane/metadata/android/de-DE/changelogs/67.txt delete mode 100644 fastlane/metadata/android/de-DE/changelogs/68.txt delete mode 100644 fastlane/metadata/android/de-DE/changelogs/72.txt delete mode 100644 fastlane/metadata/android/de-DE/changelogs/73.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/42.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/43.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/44.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/46.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/47.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/48.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/49.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/50.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/51.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/52.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/53.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/54.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/55.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/56.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/57.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/58.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/59.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/60.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/61.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/62.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/63.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/64.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/65.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/66.txt delete mode 100644 fastlane/metadata/android/el-GR/changelogs/73.txt delete mode 100644 fastlane/metadata/android/en-US/changelogs/66.txt delete mode 100644 fastlane/metadata/android/en-US/changelogs/67.txt delete mode 100644 fastlane/metadata/android/en-US/changelogs/68.txt delete mode 100644 fastlane/metadata/android/en-US/changelogs/69.txt delete mode 100644 fastlane/metadata/android/en-US/changelogs/70.txt delete mode 100644 fastlane/metadata/android/en-US/changelogs/71.txt delete mode 100644 fastlane/metadata/android/en-US/changelogs/72.txt delete mode 100644 fastlane/metadata/android/en-US/changelogs/73.txt delete mode 100644 fastlane/metadata/android/es-ES/changelogs/65.txt delete mode 100644 fastlane/metadata/android/es-ES/changelogs/72.txt delete mode 100644 fastlane/metadata/android/es-ES/changelogs/73.txt delete mode 100644 fastlane/metadata/android/et/changelogs/38.txt delete mode 100644 fastlane/metadata/android/et/changelogs/40.txt delete mode 100644 fastlane/metadata/android/et/changelogs/67.txt delete mode 100644 fastlane/metadata/android/et/changelogs/68.txt delete mode 100644 fastlane/metadata/android/et/changelogs/71.txt delete mode 100644 fastlane/metadata/android/et/changelogs/72.txt delete mode 100644 fastlane/metadata/android/et/changelogs/73.txt delete mode 100644 fastlane/metadata/android/et/full_description.txt delete mode 100644 fastlane/metadata/android/et/short_description.txt delete mode 100644 fastlane/metadata/android/fi-FI/changelogs/58.txt delete mode 100644 fastlane/metadata/android/fi-FI/changelogs/65.txt delete mode 100644 fastlane/metadata/android/fi-FI/changelogs/72.txt delete mode 100644 fastlane/metadata/android/fi-FI/changelogs/73.txt delete mode 100644 fastlane/metadata/android/fi-FI/full_description.txt delete mode 100644 fastlane/metadata/android/fi-FI/short_description.txt delete mode 100644 fastlane/metadata/android/fr-FR/changelogs/66.txt delete mode 100644 fastlane/metadata/android/fr-FR/changelogs/67.txt delete mode 100644 fastlane/metadata/android/fr-FR/changelogs/68.txt delete mode 100644 fastlane/metadata/android/fr-FR/changelogs/72.txt delete mode 100644 fastlane/metadata/android/fr-FR/changelogs/73.txt delete mode 100644 fastlane/metadata/android/hi/changelogs/62.txt delete mode 100644 fastlane/metadata/android/hi/changelogs/63.txt delete mode 100644 fastlane/metadata/android/hi/changelogs/64.txt delete mode 100644 fastlane/metadata/android/hi/changelogs/65.txt delete mode 100644 fastlane/metadata/android/hi/changelogs/66.txt delete mode 100644 fastlane/metadata/android/hi/changelogs/72.txt delete mode 100644 fastlane/metadata/android/hr/changelogs/72.txt delete mode 100644 fastlane/metadata/android/hu-HU/changelogs/46.txt delete mode 100644 fastlane/metadata/android/hu-HU/changelogs/72.txt delete mode 100644 fastlane/metadata/android/hu-HU/changelogs/73.txt delete mode 100644 fastlane/metadata/android/id/changelogs/66.txt delete mode 100644 fastlane/metadata/android/id/changelogs/67.txt delete mode 100644 fastlane/metadata/android/id/changelogs/68.txt delete mode 100644 fastlane/metadata/android/id/changelogs/72.txt delete mode 100644 fastlane/metadata/android/id/changelogs/73.txt delete mode 100644 fastlane/metadata/android/it-IT/changelogs/38.txt delete mode 100644 fastlane/metadata/android/it-IT/changelogs/40.txt delete mode 100644 fastlane/metadata/android/it-IT/changelogs/41.txt delete mode 100644 fastlane/metadata/android/it-IT/changelogs/42.txt delete mode 100644 fastlane/metadata/android/it-IT/changelogs/43.txt delete mode 100644 fastlane/metadata/android/it-IT/changelogs/45.txt delete mode 100644 fastlane/metadata/android/it-IT/changelogs/47.txt delete mode 100644 fastlane/metadata/android/it-IT/changelogs/51.txt delete mode 100644 fastlane/metadata/android/it-IT/changelogs/60.txt delete mode 100644 fastlane/metadata/android/it-IT/changelogs/73.txt delete mode 100644 fastlane/metadata/android/ja-JP/changelogs/72.txt delete mode 100644 fastlane/metadata/android/kw/full_description.txt delete mode 100644 fastlane/metadata/android/kw/short_description.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/45.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/47.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/48.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/49.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/51.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/53.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/58.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/60.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/66.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/67.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/68.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/72.txt delete mode 100644 fastlane/metadata/android/lv/changelogs/73.txt delete mode 100644 fastlane/metadata/android/pl-PL/changelogs/72.txt delete mode 100644 fastlane/metadata/android/pt-BR/changelogs/66.txt delete mode 100644 fastlane/metadata/android/pt-BR/changelogs/67.txt delete mode 100644 fastlane/metadata/android/pt-BR/changelogs/68.txt delete mode 100644 fastlane/metadata/android/pt-BR/changelogs/71.txt delete mode 100644 fastlane/metadata/android/pt-BR/changelogs/72.txt delete mode 100644 fastlane/metadata/android/pt-BR/changelogs/73.txt delete mode 100644 fastlane/metadata/android/pt/changelogs/73.txt delete mode 100644 fastlane/metadata/android/ro/changelogs/72.txt delete mode 100644 fastlane/metadata/android/ro/full_description.txt delete mode 100644 fastlane/metadata/android/ru-RU/changelogs/71.txt delete mode 100644 fastlane/metadata/android/ru-RU/changelogs/72.txt delete mode 100644 fastlane/metadata/android/ru-RU/changelogs/73.txt delete mode 100644 fastlane/metadata/android/sk/changelogs/66.txt delete mode 100644 fastlane/metadata/android/sk/changelogs/67.txt delete mode 100644 fastlane/metadata/android/sk/changelogs/68.txt delete mode 100644 fastlane/metadata/android/sk/changelogs/72.txt delete mode 100644 fastlane/metadata/android/sq/changelogs/67.txt delete mode 100644 fastlane/metadata/android/sq/changelogs/68.txt delete mode 100644 fastlane/metadata/android/sq/changelogs/73.txt delete mode 100644 fastlane/metadata/android/sq/full_description.txt delete mode 100644 fastlane/metadata/android/sq/short_description.txt delete mode 100644 fastlane/metadata/android/sv-SE/changelogs/73.txt delete mode 100644 fastlane/metadata/android/ta-IN/changelogs/64.txt delete mode 100644 fastlane/metadata/android/ta-IN/changelogs/65.txt delete mode 100644 fastlane/metadata/android/ta-IN/changelogs/66.txt create mode 100644 fastlane/metadata/android/ta-IN/short_description.txt delete mode 100644 fastlane/metadata/android/tr-TR/changelogs/66.txt delete mode 100644 fastlane/metadata/android/tr-TR/changelogs/67.txt delete mode 100644 fastlane/metadata/android/tr-TR/changelogs/68.txt delete mode 100644 fastlane/metadata/android/tr-TR/changelogs/72.txt delete mode 100644 fastlane/metadata/android/tr-TR/changelogs/73.txt delete mode 100644 fastlane/metadata/android/uk/changelogs/66.txt delete mode 100644 fastlane/metadata/android/uk/changelogs/67.txt delete mode 100644 fastlane/metadata/android/uk/changelogs/68.txt delete mode 100644 fastlane/metadata/android/uk/changelogs/71.txt delete mode 100644 fastlane/metadata/android/uk/changelogs/72.txt delete mode 100644 fastlane/metadata/android/uk/changelogs/73.txt delete mode 100644 fastlane/metadata/android/zh-CN/changelogs/66.txt delete mode 100644 fastlane/metadata/android/zh-CN/changelogs/67.txt delete mode 100644 fastlane/metadata/android/zh-CN/changelogs/68.txt delete mode 100644 fastlane/metadata/android/zh-CN/changelogs/72.txt delete mode 100644 fastlane/metadata/android/zh-CN/changelogs/73.txt delete mode 100644 fastlane/metadata/android/zh-TW/changelogs/72.txt diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 1af01d6f7..000000000 --- a/.editorconfig +++ /dev/null @@ -1,11 +0,0 @@ -# -# SPDX-FileCopyrightText: 2025 The Calyx Institute -# SPDX-License-Identifier: GPL-3.0-or-later -# - -root = true - -[*.{kt,kts}] -ktlint_code_style = android_studio -ktlint_function_naming_ignore_when_annotated_with = Composable -ktlint_standard_class-signature = disabled diff --git a/.gitignore b/.gitignore index 3eb1105fc..7abcc84e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,3 @@ -# -# SPDX-FileCopyrightText: 2021-2025 Aurora OSS -# SPDX-License-Identifier: GPL-3.0-or-later -# - # Built application files *.apk *.ap_ @@ -41,10 +36,9 @@ gradle-app.setting *.zip app/release/* +app/beta/* +app/alpha/* app/nightly/* -app/vanilla/* -app/huawei/* -app/preload/* #Exclude signing configurations & keystore diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7b4d95a18..311883b8d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,35 +1,22 @@ -# -# SPDX-FileCopyrightText: 2021-2025 Aurora OSS -# SPDX-FileCopyrightText: 2023-2025 The Calyx Institute -# SPDX-License-Identifier: GPL-3.0-or-later -# - variables: PACKAGE_VERSION: "continuous" - DEBUG_BINARY: "com.aurora.store.vanilla.debug_${CI_COMMIT_SHORT_SHA}.apk" - DEBUG_BINARY_PATH: "app/build/outputs/apk/vanilla/debug/app-vanilla-debug.apk" + DEBUG_BINARY: "com.aurora.store.debug_${CI_COMMIT_SHORT_SHA}.apk" + DEBUG_BINARY_PATH: "app/build/outputs/apk/debug/app-debug.apk" PACKAGE_REGISTRY_URL: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/debug/${PACKAGE_VERSION}" stages: - build -- lint - upload +- release -assembleVanillaDebug: +assembleDebug: stage: build image: theimpulson/gitlab-ci-android:latest script: - - './gradlew assembleVanillaDebug' + - './gradlew assembleDebug' artifacts: paths: - $DEBUG_BINARY_PATH - - 'app/schemas/com.aurora.store.data.room.AuroraDatabase/' - -lintChecks: - stage: lint - image: theimpulson/gitlab-ci-android:latest - script: - - './gradlew ktlintCheck' uploadDebug: stage: upload diff --git a/.gitlab/issue_templates/Bug-Report.md b/.gitlab/issue_templates/Bug-Report.md index 09b8abe86..55dc5bc6a 100644 --- a/.gitlab/issue_templates/Bug-Report.md +++ b/.gitlab/issue_templates/Bug-Report.md @@ -3,7 +3,7 @@ https://auroraoss.com/guides/wiki-home/ - Provide a general summary of the issue in the Title above. - Check if your issue or something similar has been reported before (if yes upvote/comment there) -- If you are on latest stable release, please also check if the issue is reproducible on the latest nightly build from here: https://auroraoss.com/files/AuroraStore/Nightly +- If you are on latest stable release, please also check if the issue is reproducible on the latest nightly build from here: https://auroraoss.com/AuroraStore/Nightly/ - Make sure you have read [wiki](https://gitlab.com/AuroraOSS/AuroraStore/-/wikis/home) especially FAQs - If you did not know already, everything between " diff --git a/CHANGELOG b/CHANGELOG index 46b207b87..8bfd9179b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,48 +1,3 @@ -Changelog : v4.8.1 (73) -• Fix login issues -• Minor bug fixes and improvements -• Translation updates - -Changelog: v4.8.0 (72) -• Minimum supported Android version is now Android 6.0 -• Switched to Material3 Expressive theme -• Improved support for wide-screen devices -• Fixed an issue where Hebrew language wasn't set properly with per-app language -• Restored search filters functionality - -Changelog : v4.7.5 (71) -• Fix app install issue on huawei devices -• Translation updates - -Changelog : v4.7.4 (70) -• Do not prompt for microG installs on non-huawei builds -• Translation updates - -Changelog : v4.7.3 (69) -• Add capability to install microG bundle on Huawei devices -• Minor bug fixes and improvements -• Translation updates - -Changelog : v4.7.2 (68) -• Switch to new APIs for searching and installing apps -• Search filter is no longer available, will be added back later -• Fix crash on navigating to app details page -• Fix crash on spoofing locale -• Translation updates - -Changelog : v4.7.1 (67) -• Target Android 16 -• Fix bug with opening links to apps -• Support opening the app's detail page from app info settings -• Translation updates - -Changelog : v4.7.0 (66) -• New app compatibility ratings powered by Plexus -• Improvements to blacklist manager -• Ability to change auto-update restrictions -• Minor bug fixes and improvements -• Translation updates; additional strings localized - Changelog : v4.6.4 (65) • Fixed issues with shared library installation for apps like Chrome and WebView • Support for login into personal account using microG diff --git a/DISCLAIMER.md b/DISCLAIMER.md index 6c02fe178..5c23dc25a 100644 --- a/DISCLAIMER.md +++ b/DISCLAIMER.md @@ -31,7 +31,7 @@ You are to hold yourself responsible by installing **Aurora Store** from other s The following sources are the only official links we provide: -- **F-Droid:** https://f-droid.org/packages/com.aurora.store/ +- **F-Droid:** https://f-droid.org/en/packages/com.aurora.store/ - **AuroraOSS Website:** https://auroraoss.com/downloads.php - **Official Telegram Channel:** https://t.me/AuroraOfficial - **GitLab:** https://gitlab.com/AuroraOSS/AuroraStore/-/releases diff --git a/LICENSE b/LICENSE index d97330910..aa5e99924 100644 --- a/LICENSE +++ b/LICENSE @@ -631,8 +631,7 @@ to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - - Copyright (C) 2025 Rahul Patel + Copyright (C) 2021, Rahul Kumar Patel This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -652,7 +651,7 @@ Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: - Copyright (C) 2025 Rahul Patel + AuroraStore Copyright (C) 2019, Rahul Kumar Patel This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. diff --git a/LICENSES/Apache-2.0.txt b/LICENSES/Apache-2.0.txt deleted file mode 100644 index 137069b82..000000000 --- a/LICENSES/Apache-2.0.txt +++ /dev/null @@ -1,73 +0,0 @@ -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - - (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - - You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. diff --git a/LICENSES/CC0-1.0.txt b/LICENSES/CC0-1.0.txt deleted file mode 100644 index 0e259d42c..000000000 --- a/LICENSES/CC0-1.0.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. diff --git a/LICENSES/GPL-3.0-or-later.txt b/LICENSES/GPL-3.0-or-later.txt deleted file mode 100644 index f6cdd22a6..000000000 --- a/LICENSES/GPL-3.0-or-later.txt +++ /dev/null @@ -1,232 +0,0 @@ -GNU GENERAL PUBLIC LICENSE -Version 3, 29 June 2007 - -Copyright © 2007 Free Software Foundation, Inc. - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -Preamble - -The GNU General Public License is a free, copyleft license for software and other kinds of works. - -The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. - -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. - -To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. - -For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. - -Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. - -For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. - -Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. - -Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. - -The precise terms and conditions for copying, distribution and modification follow. - -TERMS AND CONDITIONS - -0. Definitions. - -“This License” refers to version 3 of the GNU General Public License. - -“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. - -“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. - -To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. - -A “covered work” means either the unmodified Program or a work based on the Program. - -To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. - -To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. - -An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. - -1. Source Code. -The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. - -A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. - -The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. - -The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. - -The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. - -The Corresponding Source for a work in source code form is that same work. - -2. Basic Permissions. -All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. - -You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. - -Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. - -3. Protecting Users' Legal Rights From Anti-Circumvention Law. -No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. - -When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. - -4. Conveying Verbatim Copies. -You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. - -You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. - -5. Conveying Modified Source Versions. -You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. - - c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. - -A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. - -6. Conveying Non-Source Forms. -You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: - - a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. - - d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. - -A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. - -A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. - -“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. - -If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). - -The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. - -Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. - -7. Additional Terms. -“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. - -When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. - -Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or authors of the material; or - - e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. - -All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. - -If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. - -Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. - -8. Termination. -You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). - -However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. - -Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. - -Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. - -9. Acceptance Not Required for Having Copies. -You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. - -10. Automatic Licensing of Downstream Recipients. -Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. - -An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. - -You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. - -11. Patents. -A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. - -A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. - -Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. - -In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. - -If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. - -If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. - -A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. - -Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. - -12. No Surrender of Others' Freedom. -If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. - -13. Use with the GNU Affero General Public License. -Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. - -14. Revised Versions of this License. -The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. - -If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. - -Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. - -15. Disclaimer of Warranty. -THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. Limitation of Liability. -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -17. Interpretation of Sections 15 and 16. -If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - - This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - -If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”. - -You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . - -The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . diff --git a/README.md b/README.md index 188b71f9e..5abc94235 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,16 @@ Aurora Store enables you to search and download apps from the official Google Play store. You can check app descriptions, screenshots, updates, reviews, and download the APK directly from Google Play to your device. -To use Aurora Store, log in using Google Play account, when you first open and configure Aurora Store. +To use Aurora Store, you need to have a Google Play account, and log in to your Google Play account when you first open and configure Aurora Store. +(Alternatively Aurora Store also allow you to login anonymously) -Unlike a traditional app store, Aurora Store does not own, license or distribute any apps. All apps, app descriptions, screenshots and other content in Aurora Store are directly accessed, downloaded and/or displayed from Google Play. +Unlike a traditional app store, Aurora Store does not own, license or distribute any apps. All the apps, app descriptions, screenshots and other content in Aurora Store are directly accessed, downloaded and/or displayed from Google Play. Aurora Store works exactly like a door or a browser, allowing you to log in to your Google Play account and find the apps from Google Play. *_Please note that Aurora Store does not have any approval, sponsorship or authorization from Google, Google Play, any apps downloaded through Aurora Store or any app developers; neither does Aurora Store have any affiliation, cooperation or connection with them._* -[Get it on F-Droid](https://f-droid.org/packages/com.aurora.store/) +[Get it on F-Droid](https://f-droid.org/en/packages/com.aurora.store/) [Get it on IzzyOnDroid](https://apt.izzysoft.de/fdroid/index/apk/com.aurora.store) ## Features @@ -20,7 +21,6 @@ Aurora Store works exactly like a door or a browser, allowing you to log in to y - Account login: You can login with either personal or an anonymous account - Device & Locale spoofing: Change your device and/or locale to access geo locked apps - [Exodus Privacy](https://exodus-privacy.eu.org/) integration: Instantly see trackers in app -- [Plexus](https://plexus.techlore.tech/) integration: Instantly see app compatibility without Google Play Services or with microG - Updates blacklisting: Ignore updates for specific apps - Download manager - Manual downloads: allows you to download older version of apps, provided @@ -29,27 +29,24 @@ Aurora Store works exactly like a door or a browser, allowing you to log in to y ## Limitations -- The underlying API used is reversed engineered from the Google Play Store, changes on side may break it. +- Underlying API used is reversed engineered from PlayStore, changes on side may break it. - Provides only base minimum features - Can not download or update paid apps. - Can not update apps/games with [Play Asset Delivery](https://developer.android.com/guide/playcore/asset-delivery) -- Multiple in-app features are not available if logged in as Anonymous. +- Multiple in-app features are not available if logged-in as Anonymous. - Library - Purchase History - - Editor's choice + - Editor's Choise - Beta Programs - Review Add/Update -- Token dispenser server is not super reliable, downtimes are expected. +- Token Dispenser Server is not super reliable, downtimes are expected. ## Downloads Please only download the latest stable releases from one of these sources: -- [Official website](https://auroraoss.com/) +- [F-Droid](https://f-droid.org/en/packages/com.aurora.store/) (Recommended) - [GitLab Releases](https://gitlab.com/AuroraOSS/AuroraStore/-/releases) -- [IzzyOnDroid](https://apt.izzysoft.de/fdroid/index/apk/com.aurora.store) (reproducible) -- [F-Droid](https://f-droid.org/packages/com.aurora.store/) (signed by F-Droid, [more details](https://f-droid.org/docs/Signing_Process/)) -- [App Gallery](https://appgallery.huawei.com/app/C110907863) (limited to certain countries) You can also get latest debug builds signed with AOSP test keys for testing latest changes from our [GitLab Package Registry](https://gitlab.com/AuroraOSS/AuroraStore/-/packages/24103616). diff --git a/REUSE.toml b/REUSE.toml deleted file mode 100644 index 3a2e51d73..000000000 --- a/REUSE.toml +++ /dev/null @@ -1,39 +0,0 @@ -# -# SPDX-FileCopyrightText: 2025 The Calyx Institute -# SPDX-License-Identifier: GPL-3.0-or-later -# - -# This file describes the licensing and copyright situation for files that -# cannot be annotated directly, for example because of being simply -# uncommentable. Unless this is the case, a file should be annotated directly. -# -# This follows the REUSE specification: https://reuse.software/spec-3.3/#reusetoml - -version = 1 - -[[annotations]] -path = [ - ".gitlab/**", - "fastlane/**", - "CHANGELOG", - "README.md", - "DISCLAIMER.md", - "POLICY.md", - "updates.json", - "app/schemas/**", - "app/testkey.jks", - "app/src/main/**/*.png", - "app/src/main/res/resources.properties", -] -precedence = "aggregate" -SPDX-FileCopyrightText = [ - "2021-2025 Aurora OSS", - "2023-2025 The Calyx Institute" -] -SPDX-License-Identifier = "GPL-3.0-or-later" - -[[annotations]] -path = "gradle/wrapper/**" -precedence = "aggregate" -SPDX-FileCopyrightText = "2007-2023 Gradle, Inc." -SPDX-License-Identifier = "Apache-2.0" diff --git a/app/.gitignore b/app/.gitignore index d79cd808f..42afabfd2 100644 --- a/app/.gitignore +++ b/app/.gitignore @@ -1,6 +1 @@ -# -# SPDX-FileCopyrightText: 2021 Aurora OSS -# SPDX-License-Identifier: GPL-3.0-or-later -# - -/build +/build \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 032c125dc..b650da77f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -1,14 +1,24 @@ /* - * SPDX-FileCopyrightText: 2021-2025 Rahul Kumar Patel - * SPDX-FileCopyrightText: 2022-2025 The Calyx Institute - * SPDX-FileCopyrightText: 2023 grrfe - * SPDX-License-Identifier: GPL-3.0-or-later + * Aurora Store + * Copyright (C) 2021, Rahul Kumar Patel + * Copyright (C) 2022, The Calyx Institute + * Copyright (C) 2023, grrfe + * + * Aurora Store is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * Aurora Store is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Aurora Store. If not, see . + * */ -@file:OptIn(KspExperimental::class) - -import com.android.build.api.dsl.ApplicationExtension -import com.google.devtools.ksp.KspExperimental import java.util.Properties plugins { @@ -16,7 +26,6 @@ plugins { alias(libs.plugins.jetbrains.kotlin.android) alias(libs.plugins.jetbrains.kotlin.compose) alias(libs.plugins.jetbrains.kotlin.parcelize) - alias(libs.plugins.jetbrains.kotlin.serialization) alias(libs.plugins.google.ksp) alias(libs.plugins.androidx.navigation) alias(libs.plugins.ktlint) @@ -24,49 +33,26 @@ plugins { alias(libs.plugins.hilt.android.plugin) } -val lastCommitHash = providers.exec { - commandLine("git", "rev-parse", "--short", "HEAD") -}.standardOutput.asText.map { it.trim() } - -java { - toolchain { - languageVersion = JavaLanguageVersion.of(21) - } -} - kotlin { - compilerOptions { - freeCompilerArgs.addAll( - "-Xannotation-default-target=param-property" - ) - optIn.addAll( - "androidx.compose.material3.ExperimentalMaterial3Api", - "androidx.compose.material3.ExperimentalMaterial3ExpressiveApi", - "androidx.compose.foundation.layout.ExperimentalLayoutApi", - "androidx.compose.material3.adaptive.ExperimentalMaterial3AdaptiveApi", - "coil3.annotation.ExperimentalCoilApi" - ) - } + jvmToolchain(21) } -configure { +android { namespace = "com.aurora.store" - compileSdk = 36 + compileSdk = 35 defaultConfig { applicationId = "com.aurora.store" - minSdk = 23 - targetSdk = 36 + minSdk = 21 + targetSdk = 35 - versionCode = 73 - versionName = "4.8.1" + versionCode = 65 + versionName = "4.6.4" testInstrumentationRunner = "com.aurora.store.HiltInstrumentationTestRunner" testInstrumentationRunnerArguments["disableAnalytics"] = "true" buildConfigField("String", "EXODUS_API_KEY", "\"bbe6ebae4ad45a9cbacb17d69739799b8df2c7ae\"") - - missingDimensionStrategy("device", "vanilla") } signingConfigs { @@ -108,7 +94,6 @@ configure { register("nightly") { initWith(getByName("release")) applicationIdSuffix = ".nightly" - versionNameSuffix = "-${lastCommitHash.get()}" } debug { @@ -117,32 +102,20 @@ configure { } } - flavorDimensions += "device" - - productFlavors { - create("vanilla") { - isDefault = true - dimension = "device" - } - - create("huawei") { - dimension = "device" - versionNameSuffix = "-hw" - } - - // This flavor is only for preloaded devices / users who push the app to system - create("preload") { - dimension = "device" - versionNameSuffix = "-preload" - } - } - buildFeatures { buildConfig = true viewBinding = true aidl = true compose = true } + kotlinOptions { + jvmTarget = JavaVersion.VERSION_21.toString() + } + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_21 + targetCompatibility = JavaVersion.VERSION_21 + } lint { lintConfig = file("lint.xml") @@ -158,54 +131,27 @@ configure { } } -androidComponents { - beforeVariants(selector().all()) { variant -> - val flavour = variant.flavorName - if ((flavour == "huawei" || flavour == "preload") && variant.buildType == "nightly") { - variant.enable = false - } - } -} - -ksp { - arg("room.schemaLocation", "$projectDir/schemas") -} - -ktlint { - android = true - verbose = true -} - dependencies { - // Google's Goodies + //Google's Goodies implementation(libs.google.android.material) + implementation(libs.google.gson) implementation(libs.google.protobuf.javalite) - // AndroidX + //AndroidX implementation(libs.androidx.core.ktx) implementation(libs.androidx.browser) implementation(libs.androidx.lifecycle.viewmodel.ktx) - implementation(libs.androidx.lifecycle.navigation3) + implementation(libs.androidx.lifecycle.process) + implementation(libs.androidx.navigation.fragment.ktx) + implementation(libs.androidx.navigation.ui.ktx) implementation(libs.androidx.preference.ktx) implementation(libs.androidx.swiperefreshlayout) implementation(libs.androidx.viewpager2) implementation(libs.androidx.work.runtime.ktx) - implementation(libs.androidx.paging.runtime) - - implementation(libs.androidx.adaptive.core) - implementation(libs.androidx.adaptive.navigation) - implementation(libs.androidx.adaptive.layout) - implementation(libs.androidx.paging.compose) - implementation(libs.androidx.navigation3.runtime) - implementation(libs.androidx.navigation3.ui) - implementation(libs.kotlinx.serialization.json) - implementation(libs.androidx.navigation.fragment.ktx) - implementation(libs.androidx.navigation.ui.ktx) implementation(libs.androidx.activity.compose) implementation(platform(libs.androidx.compose.bom)) - implementation(libs.androidx.material3) implementation(libs.androidx.ui) implementation(libs.androidx.ui.graphics) @@ -215,28 +161,28 @@ dependencies { debugImplementation(libs.androidx.ui.tooling) debugImplementation(libs.androidx.ui.test.manifest) - // Coil + //Coil implementation(libs.coil.kt) implementation(libs.coil.compose) implementation(libs.coil.network) - // Shimmer + //Shimmer implementation(libs.facebook.shimmer) - // Epoxy + //Epoxy implementation(libs.airbnb.epoxy.android) ksp(libs.airbnb.epoxy.processor) - // HTTP Clients + //HTTP Clients implementation(libs.squareup.okhttp) - // Lib-SU + //Lib-SU implementation(libs.github.topjohnwu.libsu) - // GPlayApi + //GPlayApi implementation(libs.auroraoss.gplayapi) - // Shizuku + //Shizuku compileOnly(libs.rikka.hidden.stub) implementation(libs.rikka.tools.refine.runtime) implementation(libs.rikka.shizuku.api) @@ -244,7 +190,7 @@ dependencies { implementation(libs.lsposed.hiddenapibypass) - // Test + //Test testImplementation(libs.junit) testImplementation(libs.androidx.junit) testImplementation(libs.google.truth) @@ -252,26 +198,22 @@ dependencies { androidTestImplementation(libs.google.truth) androidTestImplementation(libs.androidx.espresso.core) - // Hilt + //Hilt ksp(libs.hilt.android.compiler) ksp(libs.hilt.androidx.compiler) - implementation(libs.androidx.hilt.viewmodel) implementation(libs.hilt.android.core) implementation(libs.hilt.androidx.work) kspAndroidTest(libs.hilt.android.compiler) androidTestImplementation(libs.hilt.android.testing) - // Room + //Room ksp(libs.androidx.room.compiler) implementation(libs.androidx.room.ktx) implementation(libs.androidx.room.runtime) - implementation(libs.androidx.room.paging) implementation(libs.process.phoenix) - "huaweiImplementation"(libs.huawei.hms.coreservice) - // LeakCanary debugImplementation(libs.squareup.leakcanary.android) } diff --git a/app/globals.css b/app/globals.css index 5dd3590fb..6bb1aa851 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,19 +1,49 @@ @import "tailwindcss"; +@theme { + --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif; + --color-background: var(--background); + --color-foreground: var(--foreground); +} + :root { - --background: #ffffff; - --foreground: #171717; + --background: #f9fafb; + --foreground: #111827; } @media (prefers-color-scheme: dark) { :root { - --background: #0a0a0a; - --foreground: #ededed; + --background: #030712; + --foreground: #f9fafb; + } +} + +@layer base { + body { + @apply bg-background text-foreground; + -webkit-tap-highlight-color: transparent; + } +} + +@layer utilities { + .pb-safe { + padding-bottom: env(safe-area-inset-bottom); + } + + .scrollbar-hide::-webkit-scrollbar { + display: none; + } + .scrollbar-hide { + -ms-overflow-style: none; + scrollbar-width: none; } } -body { - color: var(--foreground); - background: var(--background); - font-family: Arial, Helvetica, sans-serif; +/* Ensure minimum touch target sizes */ +button, a { + @apply min-h-[44px] min-w-[44px]; } + +/* Override for small inline elements if needed */ +.min-h-0 { min-height: 0; } +.min-w-0 { min-width: 0; } diff --git a/app/layout.tsx b/app/layout.tsx index d3b9e6535..5271582d0 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata, Viewport } from 'next' import { Suspense } from 'react' import { Inter } from 'next/font/google' +import { BottomNav } from '@/components/bottom-nav' import './globals.css' const inter = Inter({ subsets: ['latin'] }) @@ -14,6 +15,10 @@ export const metadata: Metadata = { export const viewport: Viewport = { themeColor: '#2563eb', + width: 'device-width', + initialScale: 1, + maximumScale: 1, + userScalable: false, } export default function RootLayout({ @@ -23,10 +28,11 @@ export default function RootLayout({ }>) { return ( - - }> + + }> {children} + ) diff --git a/app/lint.xml b/app/lint.xml index 0cea46327..171a4f24a 100644 --- a/app/lint.xml +++ b/app/lint.xml @@ -1,12 +1,6 @@ - - diff --git a/app/page.tsx b/app/page.tsx index 0cbfb0a1e..719843a82 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -20,20 +20,15 @@ export default async function HomePage({ searchParams }: HomePageProps) { const primaryFeatured = featuredApps[0] let displayApps = MOCK_APPS - let sectionTitle = 'All Apps' + let sectionTitle = 'Recommended for you' let sectionDescription: string | undefined if (q) { displayApps = searchApps(q) sectionTitle = `Results for "${q}"` - sectionDescription = - displayApps.length === 0 - ? undefined - : `Found ${displayApps.length} app${displayApps.length !== 1 ? 's' : ''}` } else if (category) { displayApps = getAppsByCategory(category) sectionTitle = category - sectionDescription = `Apps in the ${category} category` } const isFiltered = Boolean(q || category) @@ -41,14 +36,16 @@ export default async function HomePage({ searchParams }: HomePageProps) { return ( <> -
- +
+ {!isFiltered && } -
+
{!isFiltered && primaryFeatured && ( -
-

Featured

-
+
+
+

Featured

+
+
{featuredApps.map((app) => ( ))} @@ -60,13 +57,12 @@ export default async function HomePage({ searchParams }: HomePageProps) { apps={displayApps} title={sectionTitle} description={sectionDescription} - variant="grid" + variant={isFiltered ? "grid" : "carousel"} /> {!isFiltered && ( -
-

Browse by category

-
+
+
{(['Tools', 'Security', 'Media'] as const).map((cat) => { const apps = getAppsByCategory(cat) if (apps.length === 0) return null @@ -75,7 +71,7 @@ export default async function HomePage({ searchParams }: HomePageProps) { key={cat} apps={apps} title={cat} - variant="row" + variant="carousel" /> ) })} @@ -85,29 +81,35 @@ export default async function HomePage({ searchParams }: HomePageProps) {
-