Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refresh releases and assets #227

Merged
merged 1 commit into from
Jul 18, 2022
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:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10" 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.Ubuntu22.04LTS" Version="2204.0.42.0" Publisher="CN=23596F84-C3EA-4CD8-A7DF-550DCE37BCD0" ProcessorArchitecture="x64" />
<Identity Name="CanonicalGroupLimited.Ubuntu22.04LTS" Version="2204.1.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 22.04 LTS</DisplayName>
<DisplayName>Ubuntu 22.04.1 LTS</DisplayName>
<PublisherDisplayName>Canonical Group Limited</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
Expand All @@ -19,7 +19,7 @@
</Resources>
<Applications>
<Application Id="ubuntu2204" Executable="ubuntu2204.exe" EntryPoint="Windows.FullTrustApplication" uap10:Parameters="--hide-console">
<uap:VisualElements DisplayName="Ubuntu 22.04 LTS" Description="Ubuntu 22.04 LTS on Windows" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" BackgroundColor="transparent">
<uap:VisualElements DisplayName="Ubuntu 22.04.1 LTS" Description="Ubuntu 22.04.1 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 @@ -33,7 +33,7 @@
<uap3:Extension Category="windows.appExtension">
<uap3:AppExtension Name="com.microsoft.windows.terminal.settings"
Id="Ubuntu-22.04"
DisplayName="Ubuntu 22.04 LTS"
DisplayName="Ubuntu 22.04.1 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 22.04 LTS",
"name": "Ubuntu 22.04.1 LTS",
"colorScheme": "Ubuntu-22.04-ColorScheme",
"commandline": "ubuntu2204.exe",
"tabTitle": "Ubuntu 22.04 LTS",
"tabTitle": "Ubuntu 22.04.1 LTS",
// This would be the idea once https://github.com/microsoft/terminal/issues/10359 is fixed.
// "icon": "ms-appx:///Assets/Square44x44Logo.targetsize-32.png",
"icon": "https://assets.ubuntu.com/v1/49a1a858-favicon-32x32.png",
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-22.04";

// The title bar for the console window while the distribution is installing.
const std::wstring WindowTitle = L"Ubuntu 22.04 LTS";
const std::wstring WindowTitle = L"Ubuntu 22.04.1 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 22.04 LTS is the LTS version of Ubuntu and receives updates for five years. Upgrades to future LTS releases will not be proposed.
Ubuntu 22.04.1 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 "ubuntu2204" on the command-line prompt or Windows Terminal, or click on the Ubuntu 22.04 LTS tile in the Start Menu.
- To launch, use "ubuntu2204" on the command-line prompt or Windows Terminal, or click on the Ubuntu 22.04.1 LTS tile in the Start Menu.

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

Expand Down