Skip to content

Commit 800145c

Browse files
authored
Merge pull request #794 from WhitewaterFoundry/master
update development
2 parents be7c5ec + 42c12a0 commit 800145c

File tree

5 files changed

+42
-28
lines changed

5 files changed

+42
-28
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
Existing users can update immediately by running $ pengwin-setup update
22

3+
25.06.0:
4+
* Upgraded Terraform to 1.12.1
5+
* Upgraded Node.js versions to 24 and 22 lts
6+
* Upgraded to Debian 12.11
7+
* Upgraded to Mesa 25.0.4 and the D3D12 driver includes:
8+
* OpenGL 4.6 support completed
9+
* Expanded video encode/decode support (HEVC 4:2:2/4:4:4, H.264 Baseline)
10+
* Added VP9 and AV1 codecs in GPU Video Acceleration
11+
* Changed the TUI engine of pengwin-setup from newt to ncurses, with the following improvements:
12+
* Mouse support, you can now click options and buttons
13+
* Accelerator keys are shown in the options for rapid selection
14+
* The big dialogs like the uninstaller are now resizable
15+
* Updated the version of VCXsrv to 21.1.13
16+
* Updated python to 3.13
17+
* Fixed a regression in pengwin-setup that prevented returning to the previous menu
18+
* Fix GPU Video Acceleration access in WSL 2.5.x
19+
* Fixed an error in the icon generation in the desktop environment installer
20+
* Added udev package due to it is necessary for the video acceleration
21+
322
24.08.2:
423
* Added a --help option to pengwin-setup and will show you some usability and automation options
524
* Upgraded Terraform to 1.9.5

DistroLauncher/DistributionInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ bool DistributionInfo::CreateUser(std::wstring_view userName)
3535
}
3636

3737
// Add the user account to any relevant groups.
38-
commandLine = L"/usr/sbin/usermod -aG adm,cdrom,sudo,dip,plugdev,video ";
38+
commandLine = L"/usr/sbin/usermod -aG adm,cdrom,sudo,dip,plugdev,video,irc ";
3939
commandLine += userName;
4040
hr = g_wslApi.WslLaunchInteractive(commandLine.c_str(), true, &exitCode);
4141
if (FAILED(hr) || exitCode != 0)

Pengwin/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Identity
1212
Name="WhitewaterFoundryLtd.Co.16571368D6CFF"
1313
Publisher="CN=9879127B-9E92-4DE5-9C32-0B1F09F95DCF"
14-
Version="24.8.2.0" />
14+
Version="25.6.2.0" />
1515

1616
<Properties>
1717
<DisplayName>Pengwin</DisplayName>

Pengwin/Pengwin.wapproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
<GenerateTestArtifacts>True</GenerateTestArtifacts>
4747
<AppxBundlePlatforms>x64|arm64</AppxBundlePlatforms>
4848
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
49-
<AppxPackageSigningTimestampServerUrl>http://timestamp.comodoca.com/%3f__hstc=116687193.ca0320fdf84fdaebb49c623303fc35cd.1574461157682.1575409935578.1578516608285.3&amp;__hssc=116687193.1.1578516608285&amp;__hsfp=100782785</AppxPackageSigningTimestampServerUrl>
49+
<AppxPackageSigningTimestampServerUrl>http://timestamp.sectigo.com/</AppxPackageSigningTimestampServerUrl>
5050
<UapAppxPackageBuildMode>StoreAndSideload</UapAppxPackageBuildMode>
51-
<PackageCertificateThumbprint>2D5B0AA4BDFD7060FD8FBD517BCAEA44CBA6FF63</PackageCertificateThumbprint>
51+
<PackageCertificateThumbprint>F7D10FD57CCCB9868CFA8576D3E169369A922660</PackageCertificateThumbprint>
5252
</PropertyGroup>
5353
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
5454
<AppxBundle>Always</AppxBundle>
@@ -160,4 +160,4 @@
160160
</Content>
161161
</ItemGroup>
162162
<Import Project="$(WapProjPath)\Microsoft.DesktopBridge.targets" />
163-
</Project>
163+
</Project>
Lines changed: 18 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,20 @@
11
Existing users can update immediately by running $ pengwin-setup update
22

3-
24.08.2:
4-
* Upgraded to Debian 12.6
5-
* Added a --help option to pengwin-setup and will show you some usability and automation options
6-
* Upgraded Terraform to 1.9.5
7-
* Fixed a regression that caused that the GUI menu didn't load
8-
9-
24.08.1:
10-
* Improved the navigation in the pengwin-setup menus allowing selecting the options with fewer keystrokes.
11-
* The backports are active and working, so you'll receive the latest version of many packages like curl, cmake, golang, systemd, emacs, meson, xrdp among others.
12-
* Upgraded Terraform to 1.9.4
13-
* Included by default the command-not-found package to help users to find the correct package to install when a command is not found.
14-
* Fixed and improved the Kubernetes installer.
15-
* Fixed an error when spt is trying to upgrade systemd package on WSL1.
16-
* Fix XFCE installation with newer versions of WSL, if you are facing the issue run the installer again, from pengwin-setup.
17-
* Be sure that dbus is only started once, regardless how many times you start Pengwin.
18-
* Added a Message Of The Day Setting, to pengwin-setup to configure it.
19-
20-
24.02.3:
21-
* Upgraded to Debian 12.4
22-
* Improved N (Node.js) version manager installer
23-
* Improved ibus and fcitx installation
24-
* apt-utils now is installed by default
25-
* Avoid closing Windows Terminal after pegwin-setup finishes
3+
25.06.0:
4+
* Upgraded Terraform to 1.12.1
5+
* Upgraded Node.js versions to 24 and 22 lts
6+
* Upgraded to Debian 12.11
7+
* Upgraded to Mesa 25.0.4 and the D3D12 driver includes:
8+
* OpenGL 4.6 support completed
9+
* Expanded video encode/decode support (HEVC 4:2:2/4:4:4, H.264 Baseline)
10+
* Added VP9 and AV1 codecs in GPU Video Acceleration
11+
* Changed the TUI engine of pengwin-setup from newt to ncurses, with the following improvements:
12+
* Mouse support, you can now click options and buttons
13+
* Accelerator keys are shown in the options for rapid selection
14+
* The big dialogs like the uninstaller are now resizable
15+
* Updated the version of VCXsrv to 21.1.13
16+
* Updated python to 3.13
17+
* Fixed a regression in pengwin-setup that prevented returning to the previous menu
18+
* Fix GPU Video Acceleration access in WSL 2.5.x
19+
* Fixed an error in the icon generation in the desktop environment installer
20+
* Added udev package due to it is necessary for the video acceleration

0 commit comments

Comments
 (0)