Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap mp uap2 uap3 rescap desktop">
<Identity Name="CanonicalGroupLimited.Ubuntu24.04LTS" Version="2404.4.42.0" Publisher="CN=23596F84-C3EA-4CD8-A7DF-550DCE37BCD0" ProcessorArchitecture="x64" />
<Identity Name="CanonicalGroupLimited.Ubuntu24.04LTS" Version="2404.5.42.0" Publisher="CN=23596F84-C3EA-4CD8-A7DF-550DCE37BCD0" ProcessorArchitecture="x64" />
<mp:PhoneIdentity PhoneProductId="160867c6-4e75-4e36-85c6-1543de07d5f3" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>Ubuntu 24.04.4 LTS</DisplayName>
<DisplayName>Ubuntu 24.04.5 LTS</DisplayName>
<PublisherDisplayName>Canonical Group Limited</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
Expand All @@ -18,7 +18,7 @@
</Resources>
<Applications>
<Application Id="ubuntu2404" Executable="ubuntu2404.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements DisplayName="Ubuntu 24.04.4 LTS" Description="Ubuntu 24.04.4 LTS on Windows" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" BackgroundColor="transparent">
<uap:VisualElements DisplayName="Ubuntu 24.04.5 LTS" Description="Ubuntu 24.04.5 LTS on Windows" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square310x310Logo="Assets\LargeTile.png" Square71x71Logo="Assets\SmallTile.png">
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
Expand All @@ -32,7 +32,7 @@
<uap3:Extension Category="windows.appExtension">
<uap3:AppExtension Name="com.microsoft.windows.terminal.settings"
Id="Ubuntu-24.04"
DisplayName="Ubuntu 24.04.4 LTS"
DisplayName="Ubuntu 24.04.5 LTS"
PublicFolder="Terminal">
</uap3:AppExtension>
</uap3:Extension>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"hidden": true
},
{
"name": "Ubuntu 24.04.4 LTS",
"name": "Ubuntu 24.04.5 LTS",
"colorScheme": "Ubuntu-24.04-ColorScheme",
"commandline": "ubuntu2404.exe",
"tabTitle": "Ubuntu 24.04.4 LTS",
"tabTitle": "Ubuntu 24.04.5 LTS",
"icon": "ms-appx:///Assets/Square44x44Logo.targetsize-32.png",
"cursorShape": "filledBox",
"font": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace DistributionInfo
const std::wstring Name = L"Ubuntu-24.04";

// The title bar for the console window while the distribution is installing.
const std::wstring WindowTitle = L"Ubuntu 24.04.4 LTS";
const std::wstring WindowTitle = L"Ubuntu 24.04.5 LTS";

// Create and configure a user account.
bool CreateUser(std::wstring_view userName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ Key features:
- A consistent development to deployment workflow when using Ubuntu in the cloud
- 5 years of security patching with Ubuntu Long Term Support (LTS) releases

Ubuntu 24.04.4 LTS is the LTS version of Ubuntu and receives updates for five years. Upgrades to future LTS releases will not be proposed.
Ubuntu 24.04.5 LTS is the LTS version of Ubuntu and receives updates for five years. Upgrades to future LTS releases will not be proposed.

Installation tips:
- Search for "Turn Windows features on or off" in the Windows search bar and ensure that "Windows Subsystem for Linux" is turned on before restarting your machine.
- To launch, use "ubuntu2404" on the command-line prompt or Windows Terminal, or click on the Ubuntu 24.04.4 LTS tile in the Start Menu.
- To launch, use "ubuntu2404" on the command-line prompt or Windows Terminal, or click on the Ubuntu 24.04.5 LTS tile in the Start Menu.

For more information about Ubuntu WSL and how Canonical supports developers please visit:

Expand Down