diff --git a/cmd/photoprism/photoprism.go b/cmd/photoprism/photoprism.go index 2964877dc..67cdface4 100644 --- a/cmd/photoprism/photoprism.go +++ b/cmd/photoprism/photoprism.go @@ -41,7 +41,7 @@ const appEdition = "ce" const appDescription = "PhotoPrism® is an AI-Powered Photos App for the Decentralized Web." + " It makes use of the latest technologies to tag and find pictures automatically without getting in your way." + " You can run it at home, on a private server, or in the cloud." -const appCopyright = "(c) 2018-2024 PhotoPrism UG. All rights reserved." +const appCopyright = "(c) 2018-2025 PhotoPrism UG. All rights reserved." // Metadata contains build specific information. var Metadata = map[string]interface{}{ diff --git a/frontend/src/component/about/footer.vue b/frontend/src/component/about/footer.vue index 6fceeffcf..f13729275 100644 --- a/frontend/src/component/about/footer.vue +++ b/frontend/src/component/about/footer.vue @@ -6,7 +6,7 @@

diff --git a/frontend/tests/unit/config.js b/frontend/tests/unit/config.js index d34391d56..d5a7ea25a 100644 --- a/frontend/tests/unit/config.js +++ b/frontend/tests/unit/config.js @@ -4,7 +4,7 @@ const clientConfig = { about: "PhotoPrism® CE", edition: "ce", version: "210710-bae1f2d7-Linux-x86_64-DEBUG", - copyright: "(c) 2018-2024 PhotoPrism UG. All rights reserved.", + copyright: "(c) 2018-2025 PhotoPrism UG. All rights reserved.", flags: "public debug experimental settings", baseUri: "", staticUri: "/static", diff --git a/internal/commands/commands_test.go b/internal/commands/commands_test.go index 6e2e383f1..4b11c06b5 100644 --- a/internal/commands/commands_test.go +++ b/internal/commands/commands_test.go @@ -44,7 +44,7 @@ func NewTestContext(args []string) *cli.Context { app.Usage = "PhotoPrism®" app.Description = "" app.Version = "test" - app.Copyright = "(c) 2018-2024 PhotoPrism UG. All rights reserved." + app.Copyright = "(c) 2018-2025 PhotoPrism UG. All rights reserved." app.Flags = config.Flags.Cli() app.Commands = PhotoPrism app.HelpName = app.Name diff --git a/internal/config/test.go b/internal/config/test.go index 197e8c1f8..2eb9fa56b 100644 --- a/internal/config/test.go +++ b/internal/config/test.go @@ -88,7 +88,7 @@ func NewTestOptions(pkg string) *Options { c := &Options{ Name: "PhotoPrism", Version: "0.0.0", - Copyright: "(c) 2018-2024 PhotoPrism UG. All rights reserved.", + Copyright: "(c) 2018-2025 PhotoPrism UG. All rights reserved.", Public: true, Sponsor: true, AuthMode: "", @@ -205,7 +205,7 @@ func NewTestContext(args []string) *cli.Context { app := cli.NewApp() app.Usage = "PhotoPrism®" app.Version = "test" - app.Copyright = "(c) 2018-2024 PhotoPrism UG. All rights reserved." + app.Copyright = "(c) 2018-2025 PhotoPrism UG. All rights reserved." app.EnableBashCompletion = true app.Flags = Flags.Cli() app.Metadata = map[string]interface{}{