Skip to content

Commit

Permalink
Updated to 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hellzerg committed Dec 17, 2020
1 parent fd189ef commit 7eeea5f
Show file tree
Hide file tree
Showing 9 changed files with 33,136 additions and 2,269 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [5.3] - 2020-12-17
- Added: Icons in Common Apps
- Added: Additional apps for downloading
- Several bug fixes
- UI polishing

## [5.2] - 2020-12-17
- Added: Common Apps: Download useful apps quickly at once
- Improved: Disable Telemetry Services
Expand Down
88 changes: 88 additions & 0 deletions Optimizer/AppLinks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,18 @@ public class AppLinks
public AppInfo Vivaldi = new AppInfo();
public AppInfo Chrome = new AppInfo();
public AppInfo Opera = new AppInfo();
public AppInfo TorBrowser = new AppInfo();

public AppInfo VLC = new AppInfo();
public AppInfo PotPlayer = new AppInfo();
public AppInfo Foobar2000 = new AppInfo();
public AppInfo Spotify = new AppInfo();
public AppInfo BSPlayer = new AppInfo();
public AppInfo IrfanView = new AppInfo();
public AppInfo PhotoFiltre = new AppInfo();
public AppInfo GIMP = new AppInfo();
public AppInfo Audacity = new AppInfo();
public AppInfo MP3Tag = new AppInfo();

public AppInfo SevenZip = new AppInfo();
public AppInfo PeaZip = new AppInfo();
Expand All @@ -28,13 +33,17 @@ public class AppLinks
public AppInfo SumatraPDF = new AppInfo();
public AppInfo Foxit = new AppInfo();
public AppInfo AdobeReader = new AppInfo();
public AppInfo LibreOffice = new AppInfo();

public AppInfo Discord = new AppInfo();
public AppInfo Skype = new AppInfo();
public AppInfo Viber = new AppInfo();
public AppInfo Zoom = new AppInfo();
public AppInfo TeamViewer = new AppInfo();
public AppInfo Thunderbird = new AppInfo();

public AppInfo NotepadPP = new AppInfo();
public AppInfo Evernote = new AppInfo();
public AppInfo SublimeText = new AppInfo();
public AppInfo VSCode = new AppInfo();
public AppInfo Atom = new AppInfo();
Expand All @@ -48,10 +57,16 @@ public class AppLinks

public AppInfo Putty = new AppInfo();
public AppInfo FileZilla = new AppInfo();
public AppInfo WinSCP = new AppInfo();
public AppInfo GitHub = new AppInfo();
public AppInfo NodeJS = new AppInfo();
public AppInfo XAMPP = new AppInfo();
public AppInfo Postman = new AppInfo();
public AppInfo OneDrive = new AppInfo();

public AppInfo Steam = new AppInfo();
public AppInfo UPlay = new AppInfo();
public AppInfo Blizzard = new AppInfo();

public List<AppInfo> Apps = new List<AppInfo>();

Expand Down Expand Up @@ -83,6 +98,11 @@ public AppLinks()
Opera.Link = new Uri("https://www.opera.com/download/get/?partner=www&opsys=Windows");
Opera.Tag = "cOpera";

TorBrowser.Title = "Tor Browser";
TorBrowser.Link64 = new Uri("https://dist.torproject.org/torbrowser/10.0.7/torbrowser-install-win64-10.0.7_en-US.exe");
TorBrowser.Link = new Uri("https://www.torproject.org/dist/torbrowser/10.0.7/torbrowser-install-10.0.7_en-US.exe");
TorBrowser.Tag = "cTor";

// ARCHIVING
SevenZip.Title = "7-Zip";
SevenZip.Link64 = new Uri("https://www.7-zip.org/a/7z1900-x64.exe");
Expand Down Expand Up @@ -114,6 +134,10 @@ public AppLinks()
Foobar2000.Link = new Uri("https://www.foobar2000.org/files/eb9257c7785d4241dc9137edb3d4bfde/foobar2000_v1.6.2.exe");
Foobar2000.Tag = "cFoobar";

Spotify.Title = "Spotify";
Spotify.Link = new Uri("https://download.scdn.co/SpotifySetup.exe");
Spotify.Tag = "cSpotify";

BSPlayer.Title = "BS.Player";
BSPlayer.Link = new Uri("http://download11.bsplayer.com/download/file/mirror1/bsplayer276.setup.exe");
BSPlayer.Tag = "cBS";
Expand All @@ -126,6 +150,18 @@ public AppLinks()
PhotoFiltre.Link = new Uri("http://static.infomaniak.ch/photofiltre/utils/pf7/pf7-setup-en-7.2.1.exe");
PhotoFiltre.Tag = "cPhotoFiltre";

GIMP.Title = "GIMP";
GIMP.Link = new Uri("https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.22-setup.exe");
GIMP.Tag = "cGIMP";

Audacity.Title = "Audacity";
Audacity.Link = new Uri("https://softpedia-secure-download.com/dl/6093e3bbf770b4b432c1266cd5af601c/5fdb28af/100001970/software/multimedia/audio/audacity-win-2.4.2.exe");
Audacity.Tag = "cAudacity";

MP3Tag.Title = "MP3 Tag";
MP3Tag.Link = new Uri("https://download.mp3tag.de/mp3tagv304asetup.exe");
MP3Tag.Tag = "cMp3Tag";

// E-READERS
SumatraPDF.Title = "SumatraPDF";
SumatraPDF.Link64 = new Uri("https://www.sumatrapdfreader.org/dl2/SumatraPDF-3.2-64-install.exe");
Expand All @@ -140,6 +176,11 @@ public AppLinks()
AdobeReader.Link = new Uri("https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2001320074/AcroRdrDC2001320074_en_US.exe");
AdobeReader.Tag = "cAdobeReader";

LibreOffice.Title = "LibreOffice";
LibreOffice.Link = new Uri("https://ftp.cc.uoc.gr/mirrors/tdf/libreoffice/stable/7.0.3/win/x86/LibreOffice_7.0.3_Win_x86.msi");
LibreOffice.Link64 = new Uri("https://ftp.cc.uoc.gr/mirrors/tdf/libreoffice/stable/7.0.3/win/x86_64/LibreOffice_7.0.3_Win_x64.msi");
LibreOffice.Tag = "cLibreOffice";

// COMMUNICATION
Discord.Title = "Discord";
Discord.Link = new Uri("https://dl.discordapp.net/apps/win/0.0.309/DiscordSetup.exe");
Expand All @@ -153,6 +194,14 @@ public AppLinks()
Viber.Link = new Uri("https://download.cdn.viber.com/desktop/windows/ViberSetup.exe");
Viber.Tag = "cViber";

Zoom.Title = "Zoom";
Zoom.Link = new Uri("https://zoom.us/client/latest/ZoomInstaller.exe");
Zoom.Tag = "cZoom";

TeamViewer.Title = "TeamViewer";
TeamViewer.Link = new Uri("https://download.teamviewer.com/download/TeamViewer_Setup.exe");
TeamViewer.Tag = "cTV";

Thunderbird.Title = "Thunderbird";
Thunderbird.Link = new Uri("https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/78.6.0/win32/en-US/Thunderbird%20Setup%2078.6.0.exe");
Thunderbird.Tag = "cThunderbird";
Expand All @@ -162,6 +211,10 @@ public AppLinks()
NotepadPP.Link = new Uri("https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v7.9.1/npp.7.9.1.Installer.exe");
NotepadPP.Tag = "cNPP";

Evernote.Title = "Evernote";
Evernote.Link = new Uri("https://cdn1.evernote.com/boron/win/builds/Evernote-10.5.7-2171-setup.exe");
Evernote.Tag = "cEvernote";

SublimeText.Title = "Sublime Text";
SublimeText.Link64 = new Uri("https://download.sublimetext.com/Sublime%20Text%20Build%203211%20x64%20Setup.exe");
SublimeText.Link = new Uri("https://download.sublimetext.com/Sublime%20Text%20Build%203211%20Setup.exe");
Expand Down Expand Up @@ -214,6 +267,10 @@ public AppLinks()
FileZilla.Link = new Uri("https://download.filezilla-project.org/client/FileZilla_3.51.0_win32-setup.exe");
FileZilla.Tag = "cFileZilla";

WinSCP.Title = "WinSCP";
WinSCP.Link = new Uri("https://winscp.net/download/files/202012171122cefc89c687cb94e08321f754702b6df1/WinSCP-5.17.9-Setup.exe");
WinSCP.Tag = "cWinScp";

GitHub.Title = "GitHub";
GitHub.Link = new Uri("https://desktop.githubusercontent.com/releases/2.6.1-afb56263/GitHubDesktopSetup.exe");
GitHub.Tag = "cGitHub";
Expand All @@ -231,6 +288,23 @@ public AppLinks()
Postman.Link = new Uri("https://dl.pstmn.io/download/latest/win32");
Postman.Tag = "cPostman";

OneDrive.Title = "OneDrive";
OneDrive.Link = new Uri("https://oneclient.sfx.ms/Win/Prod/20.201.1005.0009/OneDriveSetup.exe");
OneDrive.Tag = "cOneDrive";

// GAMING
Steam.Title = "Steam";
Steam.Link = new Uri("https://cdn.cloudflare.steamstatic.com/client/installer/SteamSetup.exe");
Steam.Tag = "cSteam";

UPlay.Title = "Uplay";
UPlay.Link = new Uri("https://ubistatic3-a.akamaihd.net/orbit/launcher_installer/UbisoftConnectInstaller.exe");
UPlay.Tag = "cUbi";

Blizzard.Title = "Battle.net";
Blizzard.Link = new Uri("https://eu.battle.net/download/getInstaller?os=win&installer=Battle.net-Setup.exe");
Blizzard.Tag = "cBlizzard";

CreateList();
}

Expand Down Expand Up @@ -273,6 +347,20 @@ private void CreateList()
Apps.Add(NodeJS);
Apps.Add(XAMPP);
Apps.Add(Postman);
Apps.Add(Zoom);
Apps.Add(OneDrive);
Apps.Add(GIMP);
Apps.Add(TeamViewer);
Apps.Add(Audacity);
Apps.Add(Spotify);
Apps.Add(Steam);
Apps.Add(Evernote);
Apps.Add(TorBrowser);
Apps.Add(UPlay);
Apps.Add(Blizzard);
Apps.Add(MP3Tag);
Apps.Add(WinSCP);
Apps.Add(LibreOffice);
}
}
}
Loading

0 comments on commit 7eeea5f

Please sign in to comment.