├── .gitignore ├── LICENSE ├── README.md ├── SoftwareIndex ├── SuperTuxKart │ ├── 635px-OfficialPoster_091.jpg │ ├── Tz8fHra.jpeg │ ├── banner.png │ ├── cover.jpg │ ├── icon.jpg │ ├── logo.png │ ├── logo_150.png │ ├── logo_300.png │ ├── logo_7x.png │ ├── screenshots │ │ ├── screen_1.png │ │ └── screen_2.png │ ├── supertuxkart-privacy-policy.md │ └── vert_cover.png ├── antimicro │ ├── antimicro-privacy-policy.md │ ├── antimicro.md │ ├── assets │ │ ├── original-logo.png │ │ ├── poster-art-1080p.png │ │ ├── poster-art-150px.png │ │ ├── poster-art-300px.png │ │ ├── poster-art-71px.png │ │ ├── poster-art-9.16.png │ │ └── super-hero-banner-16.9.png │ └── screenshots │ │ ├── delete.me │ │ ├── slide1.png │ │ ├── slide2.png │ │ ├── slide3.png │ │ └── slide4.png ├── dia-diagram-editor │ ├── DiaDiagrameditor.md │ ├── assets │ │ ├── 1080p.png │ │ ├── 150px.png │ │ ├── 300px.png │ │ ├── 71px.png │ │ ├── 916-banners.png │ │ ├── Dia.svg │ │ └── banner-superior.png │ └── screenshots │ │ └── dia_screenshot.png ├── firefox │ ├── assets │ │ ├── 1080p-tile-pt.png │ │ ├── 1080p-tile.png │ │ ├── 150px-tile.png │ │ ├── 300px-tile.png │ │ ├── 71px-tile.png │ │ ├── 916-banner-en.png │ │ ├── 916-banner-pt.png │ │ ├── Firefox_logo,_2019.svg │ │ ├── firefox-materials.afdesign │ │ ├── illustration.svg │ │ ├── super-banner-en.png │ │ └── super-banner-pt.png │ └── firefox.md ├── gimp │ ├── assets │ │ ├── 916-gimp.png │ │ ├── The_GIMP_icon_-_gnome.svg │ │ ├── cotton.jpg │ │ ├── gimp-1080p.png │ │ ├── gimp-150px.png │ │ ├── gimp-300px.png │ │ ├── gimp-71px.png │ │ ├── gimp-materials.afdesign │ │ └── super-banner.png │ └── screenshots │ │ ├── slide0.png │ │ ├── slide1.png │ │ └── slide2.png └── kdenlive │ ├── assets │ ├── 1-1-poster-v2.png │ ├── 9-16-poster-v2.png │ ├── hero-banner-art-1080p.png │ ├── icon-150px.png │ └── icon-71px.png │ ├── kdenlive.md │ ├── kdenlive.pt-br.md │ └── screenshots │ ├── slide1.png │ └── slide2.png └── Templates └── AppEntryTemplate ├── SoftwareName.Lang.md ├── assets └── info.md └── screenshots └── info.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.msix 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/README.md -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/635px-OfficialPoster_091.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/635px-OfficialPoster_091.jpg -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/Tz8fHra.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/Tz8fHra.jpeg -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/banner.png -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/cover.jpg -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/icon.jpg -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/logo.png -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/logo_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/logo_150.png -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/logo_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/logo_300.png -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/logo_7x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/logo_7x.png -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/screenshots/screen_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/screenshots/screen_1.png -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/screenshots/screen_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/screenshots/screen_2.png -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/supertuxkart-privacy-policy.md: -------------------------------------------------------------------------------- 1 | can be found here: https://supertuxkart.net/Privacy -------------------------------------------------------------------------------- /SoftwareIndex/SuperTuxKart/vert_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/SuperTuxKart/vert_cover.png -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/antimicro-privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/antimicro-privacy-policy.md -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/antimicro.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/assets/original-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/assets/original-logo.png -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/assets/poster-art-1080p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/assets/poster-art-1080p.png -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/assets/poster-art-150px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/assets/poster-art-150px.png -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/assets/poster-art-300px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/assets/poster-art-300px.png -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/assets/poster-art-71px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/assets/poster-art-71px.png -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/assets/poster-art-9.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/assets/poster-art-9.16.png -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/assets/super-hero-banner-16.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/assets/super-hero-banner-16.9.png -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/screenshots/delete.me: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/screenshots/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/screenshots/slide1.png -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/screenshots/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/screenshots/slide2.png -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/screenshots/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/screenshots/slide3.png -------------------------------------------------------------------------------- /SoftwareIndex/antimicro/screenshots/slide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/antimicro/screenshots/slide4.png -------------------------------------------------------------------------------- /SoftwareIndex/dia-diagram-editor/DiaDiagrameditor.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SoftwareIndex/dia-diagram-editor/assets/1080p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/dia-diagram-editor/assets/1080p.png -------------------------------------------------------------------------------- /SoftwareIndex/dia-diagram-editor/assets/150px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/dia-diagram-editor/assets/150px.png -------------------------------------------------------------------------------- /SoftwareIndex/dia-diagram-editor/assets/300px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/dia-diagram-editor/assets/300px.png -------------------------------------------------------------------------------- /SoftwareIndex/dia-diagram-editor/assets/71px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/dia-diagram-editor/assets/71px.png -------------------------------------------------------------------------------- /SoftwareIndex/dia-diagram-editor/assets/916-banners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/dia-diagram-editor/assets/916-banners.png -------------------------------------------------------------------------------- /SoftwareIndex/dia-diagram-editor/assets/Dia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/dia-diagram-editor/assets/Dia.svg -------------------------------------------------------------------------------- /SoftwareIndex/dia-diagram-editor/assets/banner-superior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/dia-diagram-editor/assets/banner-superior.png -------------------------------------------------------------------------------- /SoftwareIndex/dia-diagram-editor/screenshots/dia_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/dia-diagram-editor/screenshots/dia_screenshot.png -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/1080p-tile-pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/1080p-tile-pt.png -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/1080p-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/1080p-tile.png -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/150px-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/150px-tile.png -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/300px-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/300px-tile.png -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/71px-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/71px-tile.png -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/916-banner-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/916-banner-en.png -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/916-banner-pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/916-banner-pt.png -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/Firefox_logo,_2019.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/Firefox_logo,_2019.svg -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/firefox-materials.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/firefox-materials.afdesign -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/illustration.svg -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/super-banner-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/super-banner-en.png -------------------------------------------------------------------------------- /SoftwareIndex/firefox/assets/super-banner-pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/firefox/assets/super-banner-pt.png -------------------------------------------------------------------------------- /SoftwareIndex/firefox/firefox.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SoftwareIndex/gimp/assets/916-gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/assets/916-gimp.png -------------------------------------------------------------------------------- /SoftwareIndex/gimp/assets/The_GIMP_icon_-_gnome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/assets/The_GIMP_icon_-_gnome.svg -------------------------------------------------------------------------------- /SoftwareIndex/gimp/assets/cotton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/assets/cotton.jpg -------------------------------------------------------------------------------- /SoftwareIndex/gimp/assets/gimp-1080p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/assets/gimp-1080p.png -------------------------------------------------------------------------------- /SoftwareIndex/gimp/assets/gimp-150px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/assets/gimp-150px.png -------------------------------------------------------------------------------- /SoftwareIndex/gimp/assets/gimp-300px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/assets/gimp-300px.png -------------------------------------------------------------------------------- /SoftwareIndex/gimp/assets/gimp-71px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/assets/gimp-71px.png -------------------------------------------------------------------------------- /SoftwareIndex/gimp/assets/gimp-materials.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/assets/gimp-materials.afdesign -------------------------------------------------------------------------------- /SoftwareIndex/gimp/assets/super-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/assets/super-banner.png -------------------------------------------------------------------------------- /SoftwareIndex/gimp/screenshots/slide0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/screenshots/slide0.png -------------------------------------------------------------------------------- /SoftwareIndex/gimp/screenshots/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/screenshots/slide1.png -------------------------------------------------------------------------------- /SoftwareIndex/gimp/screenshots/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/gimp/screenshots/slide2.png -------------------------------------------------------------------------------- /SoftwareIndex/kdenlive/assets/1-1-poster-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/kdenlive/assets/1-1-poster-v2.png -------------------------------------------------------------------------------- /SoftwareIndex/kdenlive/assets/9-16-poster-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/kdenlive/assets/9-16-poster-v2.png -------------------------------------------------------------------------------- /SoftwareIndex/kdenlive/assets/hero-banner-art-1080p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/kdenlive/assets/hero-banner-art-1080p.png -------------------------------------------------------------------------------- /SoftwareIndex/kdenlive/assets/icon-150px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/kdenlive/assets/icon-150px.png -------------------------------------------------------------------------------- /SoftwareIndex/kdenlive/assets/icon-71px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/kdenlive/assets/icon-71px.png -------------------------------------------------------------------------------- /SoftwareIndex/kdenlive/kdenlive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/kdenlive/kdenlive.md -------------------------------------------------------------------------------- /SoftwareIndex/kdenlive/kdenlive.pt-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/kdenlive/kdenlive.pt-br.md -------------------------------------------------------------------------------- /SoftwareIndex/kdenlive/screenshots/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/kdenlive/screenshots/slide1.png -------------------------------------------------------------------------------- /SoftwareIndex/kdenlive/screenshots/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/SoftwareIndex/kdenlive/screenshots/slide2.png -------------------------------------------------------------------------------- /Templates/AppEntryTemplate/SoftwareName.Lang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/Templates/AppEntryTemplate/SoftwareName.Lang.md -------------------------------------------------------------------------------- /Templates/AppEntryTemplate/assets/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/Templates/AppEntryTemplate/assets/info.md -------------------------------------------------------------------------------- /Templates/AppEntryTemplate/screenshots/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayrinck/FOSSonMicrosoftStore/HEAD/Templates/AppEntryTemplate/screenshots/info.md --------------------------------------------------------------------------------