rebranding

This commit is contained in:
Fabian Freund
2024-07-23 13:06:00 +02:00
parent 2b49f0f318
commit 9d4c975a5d
13 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:label="BangNavigator"
android:label="Lensai"
android:name="${applicationName}"
android:icon="@mipmap/launcher_icon"
android:usesCleartextTraffic="true">
@@ -1,10 +1,10 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/Widget.BangNavigatorWidget.AppWidget.Container"
style="@style/Widget.LensaiWidget.AppWidget.Container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="16dp"
android:theme="@style/Theme.BangNavigatorWidget.AppWidgetContainer"
android:theme="@style/Theme.LensaiWidget.AppWidgetContainer"
android:gravity="center_vertical">
<Button
@@ -1,10 +1,10 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/Widget.BangNavigatorWidget.AppWidget.Container"
style="@style/Widget.LensaiWidget.AppWidget.Container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp"
android:theme="@style/Theme.BangNavigatorWidget.AppWidgetContainer">
android:theme="@style/Theme.LensaiWidget.AppWidgetContainer">
<Button
android:id="@+id/search_button"
@@ -16,12 +16,12 @@
<item name="android:windowBackground">?android:colorBackground</item>
</style>
<style name="Widget.BangNavigatorWidget.AppWidget.Container" parent="android:Widget">
<style name="Widget.LensaiWidget.AppWidget.Container" parent="android:Widget">
<item name="android:id">@android:id/background</item>
<item name="android:background">?android:attr/colorBackground</item>
</style>
<style name="Widget.BangNavigatorWidget.AppWidget.InnerView" parent="android:Widget">
<style name="Widget.LensaiWidget.AppWidget.InnerView" parent="android:Widget">
<item name="android:background">?android:attr/colorBackground</item>
<item name="android:textColor">?android:attr/textColorPrimary</item>
</style>
@@ -1,6 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.BangNavigatorWidget" parent="@style/Theme.Material3.DayNight.NoActionBar">
<style name="Theme.LensaiWidget" parent="@style/Theme.Material3.DayNight.NoActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_500</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
@@ -14,7 +14,7 @@
<!-- Customize your theme here. -->
</style>
<style name="Theme.BangNavigatorWidget.AppWidgetContainerParent" parent="@android:style/Theme.DeviceDefault">
<style name="Theme.LensaiWidget.AppWidgetContainerParent" parent="@android:style/Theme.DeviceDefault">
<!-- Radius of the outer bound of widgets to make the rounded corners -->
<item name="appWidgetRadius">16dp</item>
<!--
@@ -24,7 +24,7 @@
<item name="appWidgetInnerRadius">8dp</item>
</style>
<style name="Theme.BangNavigatorWidget.AppWidgetContainer" parent="Theme.BangNavigatorWidget.AppWidgetContainerParent">
<style name="Theme.LensaiWidget.AppWidgetContainer" parent="Theme.LensaiWidget.AppWidgetContainerParent">
<!-- Apply padding to avoid the content of the widget colliding with the rounded corners -->
<item name="appWidgetPadding">16dp</item>
</style>
+3 -3
View File
@@ -1,10 +1,10 @@
Welcome to BangNavigator, a privacy-centric search and research browser designed to enhance your mobile search experience while ensuring your personal data and identity remains secure during research. BangNavigator offers a seamless and intuitive interface, integrating the powerful tools of Kagi Search Engine.
Welcome to Lensai, a privacy-centric search and research browser designed to enhance your mobile search experience while ensuring your personal data and identity remains secure during research. Lensai offers a seamless and intuitive interface, integrating the powerful tools of Kagi Search Engine.
BangNavigator is packed with a variety of features aimed at improving usability and maintaining privacy:
Lensai is packed with a variety of features aimed at improving usability and maintaining privacy:
- **Privacy by Default**: Incognito mode is enabled by default to keep your searches and browsing history private.
- **[Kagi Integration](https://github.com/FaFre/bang_navigator/wiki/Kagi-Tools)**: Seamlessly integrates Kagi's search, assistant, and summarizer tools within a user-friendly interface.
- **[Easy Sharing](https://github.com/FaFre/bang_navigator/wiki/Kagi-Tools)**: Share URLs or text from any app directly into BangNavigator without the need to copy and paste, for direct use with summarizer/assistant.
- **[Easy Sharing](https://github.com/FaFre/bang_navigator/wiki/Kagi-Tools)**: Share URLs or text from any app directly into Lensai without the need to copy and paste, for direct use with summarizer/assistant.
- **[Quick Summarization](https://github.com/FaFre/bang_navigator/wiki/Browser)**: Long press any link on a website to get a summary via Kagi's summarizer.
- **[Content Blocking](https://github.com/FaFre/bang_navigator/wiki/Content-Blocking)**: A powerful content blocker is enabled by default to filter out ads, malware, and tracking sites.
- **[Home Widgets](https://github.com/FaFre/bang_navigator/wiki/Home-Widget)**: Includes home screen widgets in three different sizes for quick actions, enhancing productivity.
@@ -26,7 +26,7 @@ class LandingContent extends HookConsumerWidget {
child: Column(
children: [
Text(
'BangNavigator',
'Lensai',
style: textTheme.titleLarge?.copyWith(fontWeight: FontWeight.bold),
textAlign: TextAlign.center,
),