diff --git a/LICENSE b/LICENSE index 9588c568..d38fc722 100644 --- a/LICENSE +++ b/LICENSE @@ -652,7 +652,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: - Lensai Copyright (C) 2024 Fabian Freund + WebLibre Copyright (C) 2024 Fabian Freund 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/PRIVACY_POLICY.md b/PRIVACY_POLICY.md index 9048ecef..e8cf3ad1 100644 --- a/PRIVACY_POLICY.md +++ b/PRIVACY_POLICY.md @@ -1,6 +1,6 @@ **Privacy Policy** -This privacy policy applies to the Lensai app (hereby referred to as "Application") for mobile devices that was created by Fabian Freund (hereby referred to as "Service Provider") as an Open Source service. This service is intended for use "AS IS". +This privacy policy applies to the WebLibre app (hereby referred to as "Application") for mobile devices that was created by Fabian Freund (hereby referred to as "Service Provider") as an Open Source service. This service is intended for use "AS IS". **Information Collection and Use** diff --git a/README.md b/README.md index b75523b7..8d658bfa 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@

- Lensai Logo + WebLibre Logo

-# Lensai: The Privacy-Focused Browser +# WebLibre: The Privacy-Focused Browser Donate using Liberapay -Lensai is an independent browser project built on the foundation of [Mozilla's Gecko Engine](https://en.wikipedia.org/wiki/Gecko_(software)) and [Mozilla Android Components](https://mozac.org/). +WebLibre is an independent browser project built on the foundation of [Mozilla's Gecko Engine](https://en.wikipedia.org/wiki/Gecko_(software)) and [Mozilla Android Components](https://mozac.org/). - Contains **Zero Tracking or Telemetry** - Ad, tracker and malware blocking through [**uBlock Origin**](https://ublockorigin.com/) (opt out possible) @@ -29,7 +29,7 @@ Lensai is an independent browser project built on the foundation of [Mozilla's G

- + Get it on Google Play

diff --git a/TOC.md b/TOC.md index 980a59de..bafaeed2 100644 --- a/TOC.md +++ b/TOC.md @@ -1,6 +1,6 @@ **Terms & Conditions** -These terms and conditions applies to the Lensai app (hereby referred to as "Application") for mobile devices that was created by Fabian Freund (hereby referred to as "Service Provider") as an Open Source service. +These terms and conditions applies to the WebLibre app (hereby referred to as "Application") for mobile devices that was created by Fabian Freund (hereby referred to as "Service Provider") as an Open Source service. Upon downloading or utilizing the Application, you are automatically agreeing to the following terms. It is strongly advised that you thoroughly read and understand these terms prior to using the Application. Unauthorized copying, modification of the Application, any part of the Application, or our trademarks is strictly prohibited. Any attempts to extract the source code of the Application, translate the Application into other languages, or create derivative versions are not permitted. All trademarks, copyrights, database rights, and other intellectual property rights related to the Application remain the property of the Service Provider. diff --git a/app/android/app/build.gradle b/app/android/app/build.gradle index 2e8b1df7..79f8fa3d 100644 --- a/app/android/app/build.gradle +++ b/app/android/app/build.gradle @@ -24,7 +24,7 @@ if (flutterVersionName == null) { } android { - namespace = "me.movenext.bang_navigator" + namespace = "eu.weblibre.browser" compileSdk = 35 //Temporary fix ndkVersion = "27.0.12077973" //flutter.ndkVersion @@ -40,7 +40,7 @@ android { defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId = "me.movenext.bang_navigator" + applicationId = "eu.weblibre.browser" // https://api.flutter.dev/flutter/widgets/AndroidView-class.html //https://inappwebview.dev/docs/intro/#setup-android minSdk = 23 diff --git a/app/android/app/src/main/AndroidManifest.xml b/app/android/app/src/main/AndroidManifest.xml index 373298ff..679cb6ea 100644 --- a/app/android/app/src/main/AndroidManifest.xml +++ b/app/android/app/src/main/AndroidManifest.xml @@ -50,14 +50,14 @@ @@ -66,7 +66,7 @@ android:name=".MainActivity" android:exported="true" android:launchMode="singleTask" - android:taskAffinity="me.movenext.bang_navigator.task" + android:taskAffinity="eu.weblibre.browser.task" android:theme="@style/LaunchTheme" android:supportsPictureInPicture="true" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" @@ -90,7 +90,7 @@ - + @@ -144,37 +144,37 @@ - @@ -206,7 +206,7 @@ @@ -214,11 +214,11 @@ - diff --git a/app/android/app/src/main/kotlin/me/movenext/bang_navigator/CompactWidgetProvider.kt b/app/android/app/src/main/kotlin/me/movenext/bang_navigator/CompactWidgetProvider.kt index 02413da5..7af70f62 100644 --- a/app/android/app/src/main/kotlin/me/movenext/bang_navigator/CompactWidgetProvider.kt +++ b/app/android/app/src/main/kotlin/me/movenext/bang_navigator/CompactWidgetProvider.kt @@ -1,4 +1,4 @@ -package me.movenext.bang_navigator +package eu.weblibre.browser import android.appwidget.AppWidgetManager import android.content.Context diff --git a/app/android/app/src/main/kotlin/me/movenext/bang_navigator/FullWidgetProvider.kt b/app/android/app/src/main/kotlin/me/movenext/bang_navigator/FullWidgetProvider.kt index e5cd7f91..0f051397 100644 --- a/app/android/app/src/main/kotlin/me/movenext/bang_navigator/FullWidgetProvider.kt +++ b/app/android/app/src/main/kotlin/me/movenext/bang_navigator/FullWidgetProvider.kt @@ -1,4 +1,4 @@ -package me.movenext.bang_navigator +package eu.weblibre.browser import android.appwidget.AppWidgetManager import android.content.Context diff --git a/app/android/app/src/main/kotlin/me/movenext/bang_navigator/MainActivity.kt b/app/android/app/src/main/kotlin/me/movenext/bang_navigator/MainActivity.kt index 9f0af2e7..a82ca9d3 100644 --- a/app/android/app/src/main/kotlin/me/movenext/bang_navigator/MainActivity.kt +++ b/app/android/app/src/main/kotlin/me/movenext/bang_navigator/MainActivity.kt @@ -1,4 +1,4 @@ -package me.movenext.bang_navigator +package eu.weblibre.browser import android.content.Context import android.os.Bundle @@ -8,7 +8,7 @@ import io.flutter.embedding.engine.FlutterEngineCache import io.flutter.plugin.common.MethodChannel class MainActivity: FlutterFragmentActivity() { - private val CHANNEL = "me.movenext.flutter_mozilla_components/trim_memory" + private val CHANNEL = "eu.weblibre.flutter_mozilla_components/trim_memory" private lateinit var channel: MethodChannel override fun configureFlutterEngine(flutterEngine: FlutterEngine) { diff --git a/app/android/app/src/main/kotlin/me/movenext/bang_navigator/MyApplication.kt b/app/android/app/src/main/kotlin/me/movenext/bang_navigator/MyApplication.kt index f821e99b..3f67019b 100644 --- a/app/android/app/src/main/kotlin/me/movenext/bang_navigator/MyApplication.kt +++ b/app/android/app/src/main/kotlin/me/movenext/bang_navigator/MyApplication.kt @@ -1,4 +1,4 @@ -package me.movenext.bang_navigator +package eu.weblibre.browser import android.app.ActivityManager import android.app.Application diff --git a/app/android/app/src/main/kotlin/me/movenext/bang_navigator/SearchBarWidgetProvider.kt b/app/android/app/src/main/kotlin/me/movenext/bang_navigator/SearchBarWidgetProvider.kt index bcecdec3..7696da17 100644 --- a/app/android/app/src/main/kotlin/me/movenext/bang_navigator/SearchBarWidgetProvider.kt +++ b/app/android/app/src/main/kotlin/me/movenext/bang_navigator/SearchBarWidgetProvider.kt @@ -1,4 +1,4 @@ -package me.movenext.bang_navigator +package eu.weblibre.browser import android.appwidget.AppWidgetManager import android.content.Context diff --git a/app/android/app/src/main/res/layout/compact_widget.xml b/app/android/app/src/main/res/layout/compact_widget.xml index 823dcc61..0cceeca4 100644 --- a/app/android/app/src/main/res/layout/compact_widget.xml +++ b/app/android/app/src/main/res/layout/compact_widget.xml @@ -1,10 +1,10 @@