From df6af8a29a1ae2d9c71c0f038438a397bc804da3 Mon Sep 17 00:00:00 2001
From: Juan Gilsanz Polo <47545344+JGeek00@users.noreply.github.com>
Date: Mon, 20 Mar 2023 04:29:50 +0100
Subject: [PATCH 001/669] Update README.md
---
README.md | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index aabbe0f..c4df27d 100644
--- a/README.md
+++ b/README.md
@@ -37,6 +37,9 @@ AdGuard Home Manager does not collect any personal user data. All data stored in
## Disclaimer
This is an unofficial application. The AdGuard Home team and the development of the AdGuard Home software is not related in any way with this application.
+## Recommended configuration and lists
+On [this repository](https://github.com/JuanRodenas/Pihole_list) you can find a recommended configuration for AdGuard Home and some lists. Thanks to [JuanRodenas](https://github.com/JuanRodenas).
+
## Third party libraries
- [provider](https://pub.dev/packages/provider)
- [sqflite](https://pub.dev/packages/sqflite)
@@ -60,4 +63,4 @@ This is an unofficial application. The AdGuard Home team and the development of
-##### Created by JGeek00
\ No newline at end of file
+##### Created by JGeek00
From 9cf505e27a2996995151b005f3144cd3eeef608b Mon Sep 17 00:00:00 2001
From: Juan Gilsanz Polo
Date: Fri, 24 Mar 2023 21:17:48 +0100
Subject: [PATCH 002/669] Connect with no authentication
---
lib/models/server.dart | 12 +++---
lib/services/http_requests.dart | 8 +++-
lib/widgets/add_server_modal.dart | 62 ++++++++-----------------------
3 files changed, 27 insertions(+), 55 deletions(-)
diff --git a/lib/models/server.dart b/lib/models/server.dart
index 162cef7..6c50164 100644
--- a/lib/models/server.dart
+++ b/lib/models/server.dart
@@ -5,10 +5,10 @@ class Server {
String domain;
String? path;
int? port;
- String user;
- String password;
+ String? user;
+ String? password;
bool defaultServer;
- String authToken;
+ String? authToken;
bool runningOnHa;
Server({
@@ -18,10 +18,10 @@ class Server {
required this.domain,
this.path,
this.port,
- required this.user,
- required this.password,
+ this.user,
+ this.password,
required this.defaultServer,
- required this.authToken,
+ this.authToken,
required this.runningOnHa,
});
}
\ No newline at end of file
diff --git a/lib/services/http_requests.dart b/lib/services/http_requests.dart
index 5e249e9..1647526 100644
--- a/lib/services/http_requests.dart
+++ b/lib/services/http_requests.dart
@@ -35,7 +35,9 @@ Future