diff --git a/Cargo.lock b/Cargo.lock index 16204a2a..44101c19 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5486,7 +5486,7 @@ dependencies = [ [[package]] name = "galaxy" -version = "2.0.0" +version = "2.1.0" dependencies = [ "addr", "aha-reqwest-eventsource", diff --git a/app/Cargo.toml b/app/Cargo.toml index 2ffdb104..1d5be060 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -5,7 +5,7 @@ description = "Galaxy - AI-powered terminal" edition = "2021" autobins = false name = "galaxy" -version = "2.0.0" +version = "2.1.0" publish.workspace = true license.workspace = true diff --git a/app/src/settings_view/about_page.rs b/app/src/settings_view/about_page.rs index 4aa99d72..8a53976c 100644 --- a/app/src/settings_view/about_page.rs +++ b/app/src/settings_view/about_page.rs @@ -121,11 +121,18 @@ impl SettingsWidget for AboutPageWidget { .with_child(version_row.finish()) .with_child( ui_builder - .span("Copyright 2026 Samsung Electronics Co., Ltd.") + .span("Open source software released under the MIT License.") .build() .with_margin_top(16.) .finish(), ) + .with_child( + ui_builder + .span("Source code and license details are available in the project repository.") + .build() + .with_margin_top(8.) + .finish(), + ) .finish(), ) .finish()