├── .gitattributes ├── .github └── workflows │ └── build-CI.yml ├── .gitignore ├── App.config ├── Bunifu ├── Bunifu.Licensing.dll ├── Bunifu.UI.WinForms.1.5.3.dll ├── Bunifu.UI.WinForms.BunifuButton.dll ├── Bunifu.UI.WinForms.BunifuCheckBox.dll ├── Bunifu.UI.WinForms.BunifuCircleProgress.dll ├── Bunifu.UI.WinForms.BunifuColorTransition.dll ├── Bunifu.UI.WinForms.BunifuDataGridView.dll ├── Bunifu.UI.WinForms.BunifuDatePicker.dll ├── Bunifu.UI.WinForms.BunifuDropdown.dll ├── Bunifu.UI.WinForms.BunifuFormDock.dll ├── Bunifu.UI.WinForms.BunifuGauge.dll ├── Bunifu.UI.WinForms.BunifuGradientPanel.dll ├── Bunifu.UI.WinForms.BunifuGroupBox.dll ├── Bunifu.UI.WinForms.BunifuImageButton.dll ├── Bunifu.UI.WinForms.BunifuLabel.dll ├── Bunifu.UI.WinForms.BunifuPages.dll ├── Bunifu.UI.WinForms.BunifuPanel.dll ├── Bunifu.UI.WinForms.BunifuPictureBox.dll ├── Bunifu.UI.WinForms.BunifuProgressBar.dll ├── Bunifu.UI.WinForms.BunifuRadioButton.dll ├── Bunifu.UI.WinForms.BunifuRating.dll ├── Bunifu.UI.WinForms.BunifuScrollBar.dll ├── Bunifu.UI.WinForms.BunifuSeparator.dll ├── Bunifu.UI.WinForms.BunifuShadowPanel.dll ├── Bunifu.UI.WinForms.BunifuShapes.dll ├── Bunifu.UI.WinForms.BunifuSlider.dll ├── Bunifu.UI.WinForms.BunifuSnackbar.dll ├── Bunifu.UI.WinForms.BunifuTextbox.dll ├── Bunifu.UI.WinForms.BunifuToggleSwitch.dll ├── Bunifu.UI.WinForms.BunifuToolTip.dll ├── Bunifu.UI.WinForms.BunifuTransition.dll ├── Bunifu.UI.WinForms.BunifuUserControl.dll └── Bunifu.UI.WinForms.Deprecated.dll ├── Data ├── GenreModel.cs ├── Movie.cs ├── MovieInfo.cs ├── MovieModel.cs └── SearchModel.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Models └── MovieView.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── DataSources │ └── Proton.Models.MovieView.datasource ├── Settings.Designer.cs └── Settings.settings ├── Proton.csproj ├── Proton.sln ├── README.md ├── Resources.Designer.cs ├── Resources.resx ├── Resources ├── app.png ├── app_small.png ├── cinema.png ├── eye.png ├── eye_small.png ├── logo.jpg └── search.png ├── Services ├── GenreService.cs └── MovieService.cs ├── WatchMovie.Designer.cs ├── WatchMovie.cs ├── WatchMovie.resx └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/.github/workflows/build-CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/App.config -------------------------------------------------------------------------------- /Bunifu/Bunifu.Licensing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.Licensing.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.1.5.3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.1.5.3.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuButton.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuButton.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuCheckBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuCheckBox.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuCircleProgress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuCircleProgress.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuColorTransition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuColorTransition.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuDataGridView.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuDataGridView.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuDatePicker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuDatePicker.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuDropdown.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuDropdown.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuFormDock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuFormDock.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuGauge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuGauge.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuGradientPanel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuGradientPanel.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuGroupBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuGroupBox.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuImageButton.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuImageButton.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuLabel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuLabel.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuPages.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuPanel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuPanel.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuPictureBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuPictureBox.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuProgressBar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuProgressBar.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuRadioButton.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuRadioButton.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuRating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuRating.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuScrollBar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuScrollBar.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuSeparator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuSeparator.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuShadowPanel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuShadowPanel.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuShapes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuShapes.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuSlider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuSlider.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuSnackbar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuSnackbar.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuTextbox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuTextbox.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuToggleSwitch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuToggleSwitch.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuToolTip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuToolTip.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuTransition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuTransition.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.BunifuUserControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.BunifuUserControl.dll -------------------------------------------------------------------------------- /Bunifu/Bunifu.UI.WinForms.Deprecated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Bunifu/Bunifu.UI.WinForms.Deprecated.dll -------------------------------------------------------------------------------- /Data/GenreModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Data/GenreModel.cs -------------------------------------------------------------------------------- /Data/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Data/Movie.cs -------------------------------------------------------------------------------- /Data/MovieInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Data/MovieInfo.cs -------------------------------------------------------------------------------- /Data/MovieModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Data/MovieModel.cs -------------------------------------------------------------------------------- /Data/SearchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Data/SearchModel.cs -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Form1.cs -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Form1.resx -------------------------------------------------------------------------------- /Models/MovieView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Models/MovieView.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/DataSources/Proton.Models.MovieView.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Properties/DataSources/Proton.Models.MovieView.datasource -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Proton.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Proton.csproj -------------------------------------------------------------------------------- /Proton.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Proton.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/README.md -------------------------------------------------------------------------------- /Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Resources.Designer.cs -------------------------------------------------------------------------------- /Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Resources.resx -------------------------------------------------------------------------------- /Resources/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Resources/app.png -------------------------------------------------------------------------------- /Resources/app_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Resources/app_small.png -------------------------------------------------------------------------------- /Resources/cinema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Resources/cinema.png -------------------------------------------------------------------------------- /Resources/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Resources/eye.png -------------------------------------------------------------------------------- /Resources/eye_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Resources/eye_small.png -------------------------------------------------------------------------------- /Resources/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Resources/logo.jpg -------------------------------------------------------------------------------- /Resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Resources/search.png -------------------------------------------------------------------------------- /Services/GenreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Services/GenreService.cs -------------------------------------------------------------------------------- /Services/MovieService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/Services/MovieService.cs -------------------------------------------------------------------------------- /WatchMovie.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/WatchMovie.Designer.cs -------------------------------------------------------------------------------- /WatchMovie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/WatchMovie.cs -------------------------------------------------------------------------------- /WatchMovie.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/WatchMovie.resx -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateiIonutEduard/Proton/HEAD/packages.config --------------------------------------------------------------------------------