diff --git a/CHANGELOG.md b/CHANGELOG.md
index ee31951..126b39d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
+## [v1.1.0] - 2023-11-25
+
+- Add feature to bulk add URL's for downloading
+
## [v1.0.1] - 2023-11-24
- Fix crash on migrating a config that had > 1 destinations
diff --git a/main.go b/main.go
index 0ba799e..7687180 100644
--- a/main.go
+++ b/main.go
@@ -15,7 +15,7 @@ import (
func main() {
versionInfo := &version.Manager{
- VersionInfo: version.Info{CurrentVersion: "v1.0.1"},
+ VersionInfo: version.Info{CurrentVersion: "v1.1.0"},
}
log.Printf("Starting gropple %s - https://github.com/tardisx/gropple", versionInfo.GetInfo().CurrentVersion)
diff --git a/web/data/templates/bulk.tmpl b/web/data/templates/bulk.tmpl
new file mode 100644
index 0000000..bf69688
--- /dev/null
+++ b/web/data/templates/bulk.tmpl
@@ -0,0 +1,91 @@
+{{ define "content" }}
+
+{{ template "menu.tmpl" . }}
+
+
+
+
Bulk upload
+
+
+
+
+
Paste URLs here, one per line:
+
+
+
+
+
+
+
+
profile
+
+
+
+
+
+
download option
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{{ end }}
+
+{{ define "js" }}
+
+{{ end }}
\ No newline at end of file
diff --git a/web/data/templates/menu.tmpl b/web/data/templates/menu.tmpl
index ee38f68..4a8bc40 100644
--- a/web/data/templates/menu.tmpl
+++ b/web/data/templates/menu.tmpl
@@ -7,9 +7,11 @@