├── .gitignore ├── README.md ├── com.blizzard.BattleNet.BaseApp ├── com.blizzard.BattleNet.BaseApp.yml └── com.blizzard.BattleNet.svg ├── com.blizzard.Overwatch ├── README.md ├── com.blizzard.Overwatch.appdata.xml ├── com.blizzard.Overwatch.desktop ├── com.blizzard.Overwatch.svg └── com.blizzard.Overwatch.yml ├── com.blizzard.StarCraft2 ├── README.md ├── com.blizzard.StarCraft2.appdata.xml ├── com.blizzard.StarCraft2.desktop ├── com.blizzard.StarCraft2.svg └── com.blizzard.StarCraft2.yml ├── com.blizzard.WoW ├── README.md ├── com.blizzard.WoW.appdata.xml ├── com.blizzard.WoW.desktop ├── com.blizzard.WoW.svg └── com.blizzard.WoW.yml ├── com.epicgames.Fortnite ├── README.md ├── com.epicgames.Fortnite.appdata.xml ├── com.epicgames.Fortnite.desktop └── com.epicgames.Fortnite.yml ├── com.leagueoflegends.Client ├── README.md ├── com.leagueoflegends.Client.appdata.xml ├── com.leagueoflegends.Client.desktop ├── com.leagueoflegends.Client.yml └── icons │ ├── README.md │ ├── com.leagueoflegends.Client.128x128.png │ ├── com.leagueoflegends.Client.16x16.png │ ├── com.leagueoflegends.Client.256x256.png │ ├── com.leagueoflegends.Client.32x32.png │ ├── com.leagueoflegends.Client.48x48.png │ └── com.leagueoflegends.Client.64x64.png ├── com.microsoft.InternetExplorer8 ├── README.md ├── com.microsoft.InternetExplorer8.appdata.xml ├── com.microsoft.InternetExplorer8.desktop └── com.microsoft.InternetExplorer8.yml ├── com.oskarstalberg.Planet ├── README.md ├── com.oskarstalberg.Planet.appdata.xml ├── com.oskarstalberg.Planet.desktop ├── com.oskarstalberg.Planet.yml └── screenshots │ ├── 01.png │ └── 02.png ├── com.pathofexile.Client ├── README.md ├── com.pathofexile.Client.appdata.xml ├── com.pathofexile.Client.desktop ├── com.pathofexile.Client.yml ├── icons │ ├── README.md │ ├── com.pathofexile.Client.16x16.png │ ├── com.pathofexile.Client.22x22.png │ ├── com.pathofexile.Client.24x24.png │ ├── com.pathofexile.Client.256x256.png │ ├── com.pathofexile.Client.32x32.png │ ├── com.pathofexile.Client.48x48.png │ └── com.pathofexile.Client.512x512.png └── screenshots │ ├── 01.jpg │ ├── 02.jpg │ ├── 03.jpg │ ├── 04.jpg │ ├── 05.jpg │ └── README.md ├── com.worldoftanks.Client ├── README.md ├── com.worldoftanks.Client.appdata.xml ├── com.worldoftanks.Client.desktop ├── com.worldoftanks.Client.yml └── icons │ ├── com.worldoftanks.Client.16x16.png │ ├── com.worldoftanks.Client.22x22.png │ ├── com.worldoftanks.Client.24x24.png │ ├── com.worldoftanks.Client.256x256.png │ ├── com.worldoftanks.Client.32x32.png │ ├── com.worldoftanks.Client.48x48.png │ └── com.worldoftanks.Client.512x512.png ├── info.cemu.Cemu ├── README.md ├── info.cemu.Cemu.appdata.xml ├── info.cemu.Cemu.desktop ├── info.cemu.Cemu.yml └── screenshots │ └── 01.png └── org.notepad_plus_plus.Notepad-plus-plus ├── README.md ├── icons ├── README.md ├── org.notepad_plus_plus.Notepad-plus-plus.128x128.png ├── org.notepad_plus_plus.Notepad-plus-plus.16x16.png ├── org.notepad_plus_plus.Notepad-plus-plus.256x256.png ├── org.notepad_plus_plus.Notepad-plus-plus.32x32.png ├── org.notepad_plus_plus.Notepad-plus-plus.48x48.png ├── org.notepad_plus_plus.Notepad-plus-plus.64x64.png └── org.notepad_plus_plus.Notepad-plus-plus.ico ├── org.notepad_plus_plus.Notepad-plus-plus.appdata.xml ├── org.notepad_plus_plus.Notepad-plus-plus.desktop └── org.notepad_plus_plus.Notepad-plus-plus.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/README.md -------------------------------------------------------------------------------- /com.blizzard.BattleNet.BaseApp/com.blizzard.BattleNet.BaseApp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.BattleNet.BaseApp/com.blizzard.BattleNet.BaseApp.yml -------------------------------------------------------------------------------- /com.blizzard.BattleNet.BaseApp/com.blizzard.BattleNet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.BattleNet.BaseApp/com.blizzard.BattleNet.svg -------------------------------------------------------------------------------- /com.blizzard.Overwatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.Overwatch/README.md -------------------------------------------------------------------------------- /com.blizzard.Overwatch/com.blizzard.Overwatch.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.Overwatch/com.blizzard.Overwatch.appdata.xml -------------------------------------------------------------------------------- /com.blizzard.Overwatch/com.blizzard.Overwatch.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.Overwatch/com.blizzard.Overwatch.desktop -------------------------------------------------------------------------------- /com.blizzard.Overwatch/com.blizzard.Overwatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.Overwatch/com.blizzard.Overwatch.svg -------------------------------------------------------------------------------- /com.blizzard.Overwatch/com.blizzard.Overwatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.Overwatch/com.blizzard.Overwatch.yml -------------------------------------------------------------------------------- /com.blizzard.StarCraft2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.StarCraft2/README.md -------------------------------------------------------------------------------- /com.blizzard.StarCraft2/com.blizzard.StarCraft2.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.StarCraft2/com.blizzard.StarCraft2.appdata.xml -------------------------------------------------------------------------------- /com.blizzard.StarCraft2/com.blizzard.StarCraft2.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.StarCraft2/com.blizzard.StarCraft2.desktop -------------------------------------------------------------------------------- /com.blizzard.StarCraft2/com.blizzard.StarCraft2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.StarCraft2/com.blizzard.StarCraft2.svg -------------------------------------------------------------------------------- /com.blizzard.StarCraft2/com.blizzard.StarCraft2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.StarCraft2/com.blizzard.StarCraft2.yml -------------------------------------------------------------------------------- /com.blizzard.WoW/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.WoW/README.md -------------------------------------------------------------------------------- /com.blizzard.WoW/com.blizzard.WoW.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.WoW/com.blizzard.WoW.appdata.xml -------------------------------------------------------------------------------- /com.blizzard.WoW/com.blizzard.WoW.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.WoW/com.blizzard.WoW.desktop -------------------------------------------------------------------------------- /com.blizzard.WoW/com.blizzard.WoW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.WoW/com.blizzard.WoW.svg -------------------------------------------------------------------------------- /com.blizzard.WoW/com.blizzard.WoW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.blizzard.WoW/com.blizzard.WoW.yml -------------------------------------------------------------------------------- /com.epicgames.Fortnite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.epicgames.Fortnite/README.md -------------------------------------------------------------------------------- /com.epicgames.Fortnite/com.epicgames.Fortnite.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.epicgames.Fortnite/com.epicgames.Fortnite.appdata.xml -------------------------------------------------------------------------------- /com.epicgames.Fortnite/com.epicgames.Fortnite.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.epicgames.Fortnite/com.epicgames.Fortnite.desktop -------------------------------------------------------------------------------- /com.epicgames.Fortnite/com.epicgames.Fortnite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.epicgames.Fortnite/com.epicgames.Fortnite.yml -------------------------------------------------------------------------------- /com.leagueoflegends.Client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.leagueoflegends.Client/README.md -------------------------------------------------------------------------------- /com.leagueoflegends.Client/com.leagueoflegends.Client.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.leagueoflegends.Client/com.leagueoflegends.Client.appdata.xml -------------------------------------------------------------------------------- /com.leagueoflegends.Client/com.leagueoflegends.Client.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.leagueoflegends.Client/com.leagueoflegends.Client.desktop -------------------------------------------------------------------------------- /com.leagueoflegends.Client/com.leagueoflegends.Client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.leagueoflegends.Client/com.leagueoflegends.Client.yml -------------------------------------------------------------------------------- /com.leagueoflegends.Client/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.leagueoflegends.Client/icons/README.md -------------------------------------------------------------------------------- /com.leagueoflegends.Client/icons/com.leagueoflegends.Client.128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.leagueoflegends.Client/icons/com.leagueoflegends.Client.128x128.png -------------------------------------------------------------------------------- /com.leagueoflegends.Client/icons/com.leagueoflegends.Client.16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.leagueoflegends.Client/icons/com.leagueoflegends.Client.16x16.png -------------------------------------------------------------------------------- /com.leagueoflegends.Client/icons/com.leagueoflegends.Client.256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.leagueoflegends.Client/icons/com.leagueoflegends.Client.256x256.png -------------------------------------------------------------------------------- /com.leagueoflegends.Client/icons/com.leagueoflegends.Client.32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.leagueoflegends.Client/icons/com.leagueoflegends.Client.32x32.png -------------------------------------------------------------------------------- /com.leagueoflegends.Client/icons/com.leagueoflegends.Client.48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.leagueoflegends.Client/icons/com.leagueoflegends.Client.48x48.png -------------------------------------------------------------------------------- /com.leagueoflegends.Client/icons/com.leagueoflegends.Client.64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.leagueoflegends.Client/icons/com.leagueoflegends.Client.64x64.png -------------------------------------------------------------------------------- /com.microsoft.InternetExplorer8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.microsoft.InternetExplorer8/README.md -------------------------------------------------------------------------------- /com.microsoft.InternetExplorer8/com.microsoft.InternetExplorer8.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.microsoft.InternetExplorer8/com.microsoft.InternetExplorer8.appdata.xml -------------------------------------------------------------------------------- /com.microsoft.InternetExplorer8/com.microsoft.InternetExplorer8.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.microsoft.InternetExplorer8/com.microsoft.InternetExplorer8.desktop -------------------------------------------------------------------------------- /com.microsoft.InternetExplorer8/com.microsoft.InternetExplorer8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.microsoft.InternetExplorer8/com.microsoft.InternetExplorer8.yml -------------------------------------------------------------------------------- /com.oskarstalberg.Planet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.oskarstalberg.Planet/README.md -------------------------------------------------------------------------------- /com.oskarstalberg.Planet/com.oskarstalberg.Planet.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.oskarstalberg.Planet/com.oskarstalberg.Planet.appdata.xml -------------------------------------------------------------------------------- /com.oskarstalberg.Planet/com.oskarstalberg.Planet.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.oskarstalberg.Planet/com.oskarstalberg.Planet.desktop -------------------------------------------------------------------------------- /com.oskarstalberg.Planet/com.oskarstalberg.Planet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.oskarstalberg.Planet/com.oskarstalberg.Planet.yml -------------------------------------------------------------------------------- /com.oskarstalberg.Planet/screenshots/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.oskarstalberg.Planet/screenshots/01.png -------------------------------------------------------------------------------- /com.oskarstalberg.Planet/screenshots/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.oskarstalberg.Planet/screenshots/02.png -------------------------------------------------------------------------------- /com.pathofexile.Client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/README.md -------------------------------------------------------------------------------- /com.pathofexile.Client/com.pathofexile.Client.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/com.pathofexile.Client.appdata.xml -------------------------------------------------------------------------------- /com.pathofexile.Client/com.pathofexile.Client.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/com.pathofexile.Client.desktop -------------------------------------------------------------------------------- /com.pathofexile.Client/com.pathofexile.Client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/com.pathofexile.Client.yml -------------------------------------------------------------------------------- /com.pathofexile.Client/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/icons/README.md -------------------------------------------------------------------------------- /com.pathofexile.Client/icons/com.pathofexile.Client.16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/icons/com.pathofexile.Client.16x16.png -------------------------------------------------------------------------------- /com.pathofexile.Client/icons/com.pathofexile.Client.22x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/icons/com.pathofexile.Client.22x22.png -------------------------------------------------------------------------------- /com.pathofexile.Client/icons/com.pathofexile.Client.24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/icons/com.pathofexile.Client.24x24.png -------------------------------------------------------------------------------- /com.pathofexile.Client/icons/com.pathofexile.Client.256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/icons/com.pathofexile.Client.256x256.png -------------------------------------------------------------------------------- /com.pathofexile.Client/icons/com.pathofexile.Client.32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/icons/com.pathofexile.Client.32x32.png -------------------------------------------------------------------------------- /com.pathofexile.Client/icons/com.pathofexile.Client.48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/icons/com.pathofexile.Client.48x48.png -------------------------------------------------------------------------------- /com.pathofexile.Client/icons/com.pathofexile.Client.512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/icons/com.pathofexile.Client.512x512.png -------------------------------------------------------------------------------- /com.pathofexile.Client/screenshots/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/screenshots/01.jpg -------------------------------------------------------------------------------- /com.pathofexile.Client/screenshots/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/screenshots/02.jpg -------------------------------------------------------------------------------- /com.pathofexile.Client/screenshots/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/screenshots/03.jpg -------------------------------------------------------------------------------- /com.pathofexile.Client/screenshots/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/screenshots/04.jpg -------------------------------------------------------------------------------- /com.pathofexile.Client/screenshots/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/screenshots/05.jpg -------------------------------------------------------------------------------- /com.pathofexile.Client/screenshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.pathofexile.Client/screenshots/README.md -------------------------------------------------------------------------------- /com.worldoftanks.Client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.worldoftanks.Client/README.md -------------------------------------------------------------------------------- /com.worldoftanks.Client/com.worldoftanks.Client.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.worldoftanks.Client/com.worldoftanks.Client.appdata.xml -------------------------------------------------------------------------------- /com.worldoftanks.Client/com.worldoftanks.Client.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.worldoftanks.Client/com.worldoftanks.Client.desktop -------------------------------------------------------------------------------- /com.worldoftanks.Client/com.worldoftanks.Client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.worldoftanks.Client/com.worldoftanks.Client.yml -------------------------------------------------------------------------------- /com.worldoftanks.Client/icons/com.worldoftanks.Client.16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.worldoftanks.Client/icons/com.worldoftanks.Client.16x16.png -------------------------------------------------------------------------------- /com.worldoftanks.Client/icons/com.worldoftanks.Client.22x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.worldoftanks.Client/icons/com.worldoftanks.Client.22x22.png -------------------------------------------------------------------------------- /com.worldoftanks.Client/icons/com.worldoftanks.Client.24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.worldoftanks.Client/icons/com.worldoftanks.Client.24x24.png -------------------------------------------------------------------------------- /com.worldoftanks.Client/icons/com.worldoftanks.Client.256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.worldoftanks.Client/icons/com.worldoftanks.Client.256x256.png -------------------------------------------------------------------------------- /com.worldoftanks.Client/icons/com.worldoftanks.Client.32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.worldoftanks.Client/icons/com.worldoftanks.Client.32x32.png -------------------------------------------------------------------------------- /com.worldoftanks.Client/icons/com.worldoftanks.Client.48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.worldoftanks.Client/icons/com.worldoftanks.Client.48x48.png -------------------------------------------------------------------------------- /com.worldoftanks.Client/icons/com.worldoftanks.Client.512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/com.worldoftanks.Client/icons/com.worldoftanks.Client.512x512.png -------------------------------------------------------------------------------- /info.cemu.Cemu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/info.cemu.Cemu/README.md -------------------------------------------------------------------------------- /info.cemu.Cemu/info.cemu.Cemu.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/info.cemu.Cemu/info.cemu.Cemu.appdata.xml -------------------------------------------------------------------------------- /info.cemu.Cemu/info.cemu.Cemu.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/info.cemu.Cemu/info.cemu.Cemu.desktop -------------------------------------------------------------------------------- /info.cemu.Cemu/info.cemu.Cemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/info.cemu.Cemu/info.cemu.Cemu.yml -------------------------------------------------------------------------------- /info.cemu.Cemu/screenshots/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/info.cemu.Cemu/screenshots/01.png -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/README.md -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/icons/README.md -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.128x128.png -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.16x16.png -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.256x256.png -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.32x32.png -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.48x48.png -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.64x64.png -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/icons/org.notepad_plus_plus.Notepad-plus-plus.ico -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/org.notepad_plus_plus.Notepad-plus-plus.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/org.notepad_plus_plus.Notepad-plus-plus.appdata.xml -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/org.notepad_plus_plus.Notepad-plus-plus.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/org.notepad_plus_plus.Notepad-plus-plus.desktop -------------------------------------------------------------------------------- /org.notepad_plus_plus.Notepad-plus-plus/org.notepad_plus_plus.Notepad-plus-plus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winepak/applications/HEAD/org.notepad_plus_plus.Notepad-plus-plus/org.notepad_plus_plus.Notepad-plus-plus.yml --------------------------------------------------------------------------------