|
The installer used to be 10MB, now it's 50MB. Installed, it took less than 30MB, now it seems like it's more than 100MB. |
Replies: 2 comments
|
Nothing got added for the fun of it — most of that 50 MB is mpv. Actual numbers for the Windows x64 setup (5.0.0):
So ~60% of the download is the video player. SE 4 never shipped it — it downloaded mpv on demand the first time you selected it as video player, so it stayed out of the installer size. SE 5 bundles it so video playback works out of the box; it's installed to The remaining ~81 MB is the app. SE 4 got most of its UI for free from Windows — WinForms/GDI+ are part of the OS and .NET Framework was preinstalled. SE 5 uses Avalonia, which brings its own rendering stack along:
Note the Inno Setup installer does not contain the .NET runtime — it checks for .NET 10 and points you at the download page if it's missing. (The 102 MB portable zip is the self-contained build: .NET runtime + mpv included, nothing to install.) |
|
I have SE on my system, not installed. My system is Windows 11 Pro 64-bit version 25H2 build 26200.8894. I have the portable version that Nik mentioned. I do not have it installed in |
Nothing got added for the fun of it — most of that 50 MB is mpv.
Actual numbers for the Windows x64 setup (5.0.0):
libmpv-2.dllSo ~60% of the download is the video player. SE 4 never shipped it — it downloaded mpv on demand the first time you selected it as video player, so it stayed out of the installer size. SE 5 bundles it so video playback works out of the box; it's installed to
%appdata%\Subtitle Edit\, not the program folder. That's also the bulk of the installed footprint you're seeing.The remaining ~81 MB is the app. SE 4 got most of its UI for free from Windows — WinForms/GDI+ are part of…