Anonymous | Login | Signup for a new account | 2024-11-23 08:20 PST |
Main | My View | View Issues | Change Log | Roadmap | Repositories | My Account |
View Issue Details [ Jump to Notes ] [ Related Changesets ] | [ Issue History ] [ Print ] | ||||||||||
ID | Project | Category | View Status | Date Submitted | Last Update | ||||||
0000404 | MPfm | MVP | public | 2012-12-02 18:00 | 2013-02-23 13:22 | ||||||
Reporter | ycastonguay | ||||||||||
Assigned To | ycastonguay | ||||||||||
Priority | normal | Severity | feature | Reproducibility | N/A | ||||||
Status | assigned | Resolution | open | ||||||||
Platform | OS | OS Version | |||||||||
Product Version | |||||||||||
Target Version | 0.7.0.0 | Fixed in Version | |||||||||
Summary | 0000404: Add a NavigationManager to manage the view creation, destruction and transitions on desktop devices | ||||||||||
Description | This manager will hold the reference of every view and presenter in the application. It will manage the view creation, destruction and transition between views. | ||||||||||
Tags | No tags attached. | ||||||||||
Attached Files | |||||||||||
Relationships | ||||||
|
Notes | |
(0000864) svn (developer) 2012-12-02 18:02 |
The user animal has checked in files related to this issue (revision 642). Comment: GTK: Added BaseWindow. Added NavigationManager, which is a new way to manage the view creation and transition. Added more events/methods to IBaseView to manage the view creation and destruction. Updated GTK project with new NavigationManager. Related to issue 0000404. Files modified: U MPfm/branches/current/MPfm.GTK/MPfm.GTK.csproj U MPfm/branches/current/MPfm.GTK/Main.cs A MPfm/branches/current/MPfm.GTK/Windows/BaseWindow.cs U MPfm/branches/current/MPfm.GTK/Windows/EffectsWindow.cs U MPfm/branches/current/MPfm.GTK/Windows/MainWindow.cs U MPfm/branches/current/MPfm.GTK/Windows/PlaylistWindow.cs U MPfm/branches/current/MPfm.GTK/Windows/PreferencesWindow.cs U MPfm/branches/current/MPfm.GTK/Windows/SplashWindow.cs U MPfm/branches/current/MPfm.GTK/Windows/UpdateLibraryWindow.cs U MPfm/branches/current/MPfm.MVP/Bootstrapper/LibraryModule.cs U MPfm/branches/current/MPfm.MVP/MPfm.MVP.csproj A MPfm/branches/current/MPfm.MVP/NavigationManager.cs U MPfm/branches/current/MPfm.MVP/Presenters/BasePresenter.cs A MPfm/branches/current/MPfm.MVP/Presenters/Interfaces/IMainPresenter.cs U MPfm/branches/current/MPfm.MVP/Presenters/Interfaces/ISplashPresenter.cs A MPfm/branches/current/MPfm.MVP/Presenters/MainPresenter.cs U MPfm/branches/current/MPfm.MVP/Presenters/SplashPresenter.cs U MPfm/branches/current/MPfm.MVP/Views/IBaseView.cs U MPfm/branches/current/MPfm.MVP/Views/IMainView.cs U MPfm/branches/current/MPfm.MVP/Views/IPreferencesView.cs U MPfm/branches/current/MPfm.MVP/Views/ISplashView.cs D MPfm/branches/current/MPfm.MVP/Views/ViewFactory.cs |
(0000866) svn (developer) 2012-12-03 18:13 |
The user animal has checked in files related to this issue (revision 643). Comment: Updated NavigationManager as an abstract class with very basic additions on every platform (ex: GtkNavigationManager) to create the views in a UI thread. Updated GTK implementation. Related to issue 0000382 and issue 0000404. Files modified: A MPfm/branches/current/MPfm.GTK/Classes/ A MPfm/branches/current/MPfm.GTK/Classes/GtkNavigationManager.cs U MPfm/branches/current/MPfm.GTK/MPfm.GTK.csproj U MPfm/branches/current/MPfm.GTK/Main.cs U MPfm/branches/current/MPfm.MVP/NavigationManager.cs U MPfm/branches/current/MPfm.MVP/Presenters/MainPresenter.cs |
(0000868) svn (developer) 2012-12-03 19:54 |
The user animal has checked in files related to this issue (revision 644). Comment: Mac: Added MacNavigationManager. Mac: Added BaseWindowController; all window controllers now inherit from this base class. Mac: The application now seems to boot correctly after introducing the NavigationManager. Related to issue 0000381 and issue 0000404. Files modified: U MPfm/branches/current/MPfm.MVP/Presenters/SplashPresenter.cs U MPfm/branches/current/MPfm.Mac/AppDelegate.cs A MPfm/branches/current/MPfm.Mac/Classes/ A MPfm/branches/current/MPfm.Mac/Classes/MacNavigationManager.cs U MPfm/branches/current/MPfm.Mac/MPfm.Mac.csproj A MPfm/branches/current/MPfm.Mac/Windows/Controllers/BaseWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/EditLoopWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/EditMarkerWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/EffectsWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/MainWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/PlaylistWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/PreferencesWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/SplashWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/UpdateLibraryWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/UpdateLibraryWindow.cs |
(0000878) svn (developer) 2012-12-03 21:59 |
The user animal has checked in files related to this issue (revision 647). Comment: Mac: Readded splash/main window fade in/out. Mac: BaseWindowController now manages view destruction and view show/hide correctly. Mac: Added MPfmWindowDelegate to manage window close events. NavigationManager: Now handling main and splash view destroy. Related to issue 0000381 and issue 0000404. Files modified: U MPfm/branches/current/MPfm.MVP/NavigationManager.cs U MPfm/branches/current/MPfm.MVP/Views/IBaseView.cs U MPfm/branches/current/MPfm.Mac/AppDelegate.cs A MPfm/branches/current/MPfm.Mac/Classes/MPfmWindowDelegate.cs U MPfm/branches/current/MPfm.Mac/MPfm.Mac.csproj U MPfm/branches/current/MPfm.Mac/Windows/Controllers/BaseWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/MainWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/PreferencesWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/SplashWindowController.cs |
(0000880) svn (developer) 2012-12-03 22:06 |
The user animal has checked in files related to this issue (revision 648). Comment: GTK: Updated implementation after NavigationManager changes. Related to issue 0000382 and issue 0000404. Files modified: U MPfm/branches/current/MPfm.GTK/Windows/BaseWindow.cs U MPfm/branches/current/MPfm.GTK/Windows/MainWindow.cs |
(0000921) svn (developer) 2013-02-05 22:10 |
The user animal has checked in files related to this issue (revision 700). Comment: Updated iOS and Mac project following changes on Android because of NavigationManager. Related to issue 0000404. Files modified: D MPfm/branches/current/MPfm.Console/Lib/Ninject.dll U MPfm/branches/current/MPfm.Console/MPfm.Console.csproj U MPfm/branches/current/MPfm.Console/Main.cs U MPfm/branches/current/MPfm.Console/PlayerTest.cs U MPfm/branches/current/MPfm.Library/Database/DatabaseFacade.cs U MPfm/branches/current/MPfm.Library/Library.cs U MPfm/branches/current/MPfm.Mac/AppDelegate.cs U MPfm/branches/current/MPfm.Mac/Classes/MacNavigationManager.cs U MPfm/branches/current/MPfm.Mac/Controls/SongPositionSlider.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/BaseWindowController.cs U MPfm/branches/current/MPfm.Mac/Windows/Controllers/UpdateLibraryWindowController.cs |
Related Changesets | |||
GitHub - ycastonguay/MPfm: master 3a8078d7
Timestamp: 2013-02-07 17:57:37 Author: ycastonguay [ Details ] [ Diff ] |
Added GPLv3 headers to files. Test for committing into MantisBT. Related to issue 0000404. | ||
mod - SourceFileHeaderWriter/Program.cs | [ Diff ] [ File ] | ||
mod - SourceFileHeaderWriter/Properties/AssemblyInfo.cs | [ Diff ] [ File ] | ||
GitHub - ycastonguay/MPfm: master c54c780e
Timestamp: 2013-02-07 19:07:22 Author: ycastonguay [ Details ] [ Diff ] |
Added GPLv3 headers to every source file.\nRelated to issue 0000404. | ||
mod - MPfm/MPfm.Android/Classes/Activities/BaseActivity.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Activities/MainActivity.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Activities/PreferencesActivity.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Adapters/GenericListAdapter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Adapters/TabPagerAdapter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/AndroidNavigationManager.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Application.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Fragments/AudioPreferencesFragment.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Fragments/Base/BaseDialogFragment.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Fragments/Base/BaseFragment.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Fragments/Base/BaseListFragment.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Fragments/GeneralPreferencesFragment.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Fragments/LibraryPreferencesFragment.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Fragments/MobileLibraryBrowserFragment.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Fragments/PlayerFragment.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Fragments/SplashFragment.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Fragments/UpdateLibraryFragment.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Helpers/BitmapCache.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Helpers/BitmapHelper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Listeners/TabListener.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Objects/ApplicationState.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Classes/Objects/GenericListItem.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Properties/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Android/Resources/Resource.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Console/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Console/ConsoleHelper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Console/Main.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Console/MonoCurses/binding.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Console/MonoCurses/constants.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Console/MonoCurses/gui.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Console/MonoCurses/handles.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Console/MonoCurses/mainloop.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Console/PlayerTest.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Core/Attributes/DatabaseFieldAttribute.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Core/ByteArrayQueue.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Core/CacheStore.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Core/Conversion.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Core/DatabaseFieldNameAttribute.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Core/Extensions/DictionaryExtension.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Core/OS.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Core/Properties/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Core/Tracing.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Core/XMLHelper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Fonts/Properties/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Classes/GtkNavigationManager.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Classes/ImageManipulation.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Main.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Windows/BaseWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Windows/EffectsWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Windows/MainWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Windows/PlaylistWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Windows/PreferencesWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Windows/SplashWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Windows/UpdateLibraryWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.EffectsWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.MainWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.PlaylistWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.PreferencesWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.SplashWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.UpdateLibraryWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/generated.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/Database/DatabaseFacade.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/Database/Interfaces/IDatabaseFacade.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/Database/Interfaces/ISQLiteGateway.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/Database/MonoSQLiteGateway.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/Database/SQLiteGateway.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/ILibrary.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/Library.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/Objects/Folder.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/Objects/History.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/Objects/PlaylistFile.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/Objects/Setting.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/Properties/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/UpdateLibrary/UpdateLibraryArgument.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/UpdateLibrary/UpdateLibraryException.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/UpdateLibrary/UpdateLibraryFinishedData.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/UpdateLibrary/UpdateLibraryMode.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/UpdateLibrary/UpdateLibraryProgressData.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Library/UpdateLibrary/UpdateLibraryProgressDataSong.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Bootstrapper/Bootstrapper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Cache/AudioFileCache.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Config/MPfmAudioConfig.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Config/MPfmConfig.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Config/MPfmControlsConfig.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Config/MPfmTableViewColumnConfig.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Config/MPfmTableViewConfig.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Config/MPfmWindowConfig.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Config/MPfmWindowsConfig.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Helpers/ConfigurationHelper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Helpers/EQPresetHelper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Messages/LibraryBrowserItemDoubleClickedMessage.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Messages/LibraryBrowserItemSelectedMessage.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Messages/PlayerStatusMessage.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Messages/PlayerStatusType.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Messages/SongBrowserItemDoubleClickedMessage.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Models/LibraryBrowserEntity.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Models/PlayerPositionEntity.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Models/PlayerTimeShiftingEntity.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Models/PlayerVolumeEntity.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Models/SongBrowserFilterEntity.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Models/SongBrowserQueryEntity.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Models/SongInformationEntity.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Models/UpdateLibraryEntity.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Navigation/MobileNavigationManager.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Navigation/NavigationManager.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/AudioPreferencesPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/BasePresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/EffectsPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/GeneralPreferencesPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/IAudioPreferencesPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/IBasePresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/IEffectsPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/IGeneralPreferencesPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/ILibraryBrowserPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/ILibraryPreferencesPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/IMainPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/IMobileLibraryBrowserPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/IPlayerPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/IPlaylistPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/ISongBrowserPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/ISplashPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/Interfaces/IUpdateLibraryPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/LibraryBrowserPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/LibraryPreferencesPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/MainPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/MobileLibraryBrowserPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/PlayerPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/PlaylistPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/SongBrowserPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/SplashPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/UpdateLibraryPresenter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/AudioFileCacheService.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/Events/ProcessEndedEventArgs.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/Events/RefreshStatusEventArgs.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/InitializationService.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/Interfaces/IAudioFileCacheService.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/Interfaces/IInitializationService.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/Interfaces/ILibraryService.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/Interfaces/IPlayerService.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/Interfaces/IUpdateLibraryService.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/LibraryService.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/PlayerService.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Services/UpdateLibraryService.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/TinyIoC/TinyIoC.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/TinyIoC/TinyMessenger.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/ViewModels/BaseViewModel.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/ViewModels/LibraryBrowserViewModel.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/ViewModels/SplashViewModel.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/IAudioPreferencesView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/IBaseView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/IEffectsView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/IGeneralPreferencesView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/ILibraryBrowserView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/ILibraryPreferencesView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/IMainView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/IMobileLibraryBrowserView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/IPlayerView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/IPlaylistView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/IPreferencesView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/ISongBrowserView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/ISplashView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Views/IUpdateLibraryView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/AppDelegate.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/AppDelegate.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Classes/MPfmWindowDelegate.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Classes/MacNavigationManager.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Controls/MPfmAlbumCoverView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Controls/MPfmButton.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Controls/MPfmIsPlayingTableCellView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Controls/MPfmScrollView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Controls/MPfmTableCellView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Controls/MPfmTableRowView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Controls/MPfmView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Controls/SongPositionSlider.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Helpers/AlbumCoverHelper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Helpers/CocoaHelper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Main.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Objects/AlbumCoverCacheService.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Objects/AlbumCoverSource.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Objects/ImageResources.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Objects/LibraryBrowserDataSource.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Objects/LibraryBrowserItem.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Objects/LibraryBrowserOutlineViewDelegate.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Objects/MainSplitViewDelegate.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Objects/SongBrowserItem.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Objects/SongBrowserSource.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Objects/SongBrowserTableViewDelegate.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Views/LibraryBrowser.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Views/LibraryBrowser.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Views/LibraryBrowserController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/Controllers/BaseWindowController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/Controllers/EditLoopWindowController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/Controllers/EditMarkerWindowController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/Controllers/EffectsWindowController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/Controllers/MainWindowController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/Controllers/PlaylistWindowController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/Controllers/PreferencesWindowController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/Controllers/SplashWindowController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/Controllers/UpdateLibraryWindowController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/EditLoopWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/EditLoopWindow.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/EditMarkerWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/EditMarkerWindow.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/EffectsWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/EffectsWindow.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/MainWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/MainWindow.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/PlaylistWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/PlaylistWindow.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/PreferencesWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/PreferencesWindow.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/SplashWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/SplashWindow.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/UpdateLibraryWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/UpdateLibraryWindow.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/Events/PlayerPlaylistIndexChangedData.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/Events/PlayerStreamCallbackData.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/Exceptions/PlayerCreateStreamException.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/IPlayer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/Objects/EQPreset.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/Objects/EQPresetBand.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/Objects/Loop.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/Objects/Marker.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/Objects/PlayerSyncProc.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/Objects/RepeatType.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/Player.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Player/Properties/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/AudioFiles/AudioFile.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/AudioFiles/AudioFileFormat.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/AudioFiles/AudioFileFormatExtension.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/AudioFiles/AudioFileFormatExtensions.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/AudioFiles/AudioTools.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/AudioFiles/ConvertAudio.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/ASIOInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/Base.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/Channel.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/ChannelType.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/Device.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/DeviceHelper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/DriverType.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/Exception.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/IChannel.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/IMixerChannel.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/ITestDevice.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/MixerChannel.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Bass.Net/TestDevice.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/ASIO/BassASIOCallbacks.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/ASIO/BassASIOEnums.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/ASIO/BassASIOMethods.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/ASIO/BassASIOStructs.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/BassCallbacks.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/BassEnums.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/BassMethods.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/BassStructs.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/BassWrapperGlobals.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/FX/BassFXCallbacks.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/FX/BassFXEnums.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/FX/BassFXMethods.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/FX/BassFXStructs.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/Mix/BassMixCallbacks.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/Mix/BassMixEnums.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/Mix/BassMixMethods.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/Mix/BassMixStructs.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/Wasapi/BassWasapiCallbacks.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/Wasapi/BassWasapiEnums.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/Wasapi/BassWasapiMethods.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/BassWrapper/Wasapi/BassWasapiStructs.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/PeakFile.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Playlists/Playlist.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Playlists/PlaylistFileFormat.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Playlists/PlaylistItem.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Playlists/PlaylistTools.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Properties/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Sound.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Tags/APEMetadata.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Tags/APETag.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Tags/ID3v2Metadata.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Tags/ID3v2Tag.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Tags/SV7Metadata.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Tags/SV7Tag.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Tags/SV8Metadata.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/Tags/SV8Tag.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Sound/XingInfoHeaderReader.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Tests/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Tests/LibraryTest.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Classes/DriverComboBoxItem.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Classes/SongQuery.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/Audio/AudioConfigurationSection.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/Audio/AudioDeviceConfigurationSection.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/Audio/AudioEQConfigurationSection.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/Audio/AudioMixerConfigurationSection.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/Controls/ControlsConfigurationSection.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/Controls/ControlsSongGridViewConfigurationSection.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/Controls/ControlsSongGridViewQueryConfigurationSection.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/General/GeneralConfigurationKeyValue.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/General/GeneralConfigurationSection.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/IMPfmConfiguration.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/MPfmConfiguration.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/Windows/WindowConfiguration.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Configuration/Windows/WindowsConfigurationSection.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmAddEditLoop.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmAddEditLoop.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmAddEditMarker.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmAddEditMarker.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmEditSongMetadata.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmEditSongMetadata.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmEffects.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmEffects.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmLoadPlaylist.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmLoadPlaylist.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmPlaylist.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmPlaylist.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmSettings.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmSettings.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmThemes.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmThemes.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmVisualizer.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Other Screens/frmVisualizer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Program.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Properties/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Properties/Resources.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/Properties/Settings.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/frmFirstRun.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/frmFirstRun.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/frmMain.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/frmMain.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/frmSplash.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/frmSplash.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/frmUpdateLibraryStatus.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Windows/frmUpdateLibraryStatus.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Audio/Fader.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Audio/FaderTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Audio/OutputMeter.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Audio/OutputMeter.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Audio/OutputMeterTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Audio/WaveForm.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Audio/WaveForm.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Audio/WaveFormDisplay.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Audio/WaveFormDisplay.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Audio/WaveFormDisplayTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Buttons-Toolbars/Button.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Buttons-Toolbars/ButtonTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Buttons-Toolbars/ToolStrip.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Buttons-Toolbars/TrackBar.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Buttons-Toolbars/TrackBarTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Containers/FlowLayoutPanel.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Containers/FlowLayoutPanelTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Containers/Form.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Containers/Panel.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Containers/PanelTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Containers/TableLayoutPanel.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Containers/TableLayoutPanelTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Control.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Fonts/CustomFont.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Fonts/CustomFontEditor.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Fonts/CustomFontEditorForm.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Fonts/CustomFontEditorForm.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Fonts/EmbeddedFont.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Fonts/EmbeddedFontCollection.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Fonts/EmbeddedFontHelper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Labels/Label.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Labels/LabelTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Labels/LinkLabel.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Labels/LinkLabelTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Library/SongGridView.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Library/SongGridView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Library/SongGridViewCache.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Library/SongGridViewColumn.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Library/SongGridViewImageCache.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Library/SongGridViewItem.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Library/SongGridViewMode.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Library/SongGridViewTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Lists/ListBox.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Lists/ReorderListView.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Lists/ReorderListView.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Misc/BackgroundGradient.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Misc/ColorManipulation.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Misc/Gradient.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Misc/ImageConversion.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Misc/ImageManipulation.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Misc/PaintHelper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Misc/TextGradient.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Misc/Tools.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Misc/Win32.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Properties/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Properties/Resources.Designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/ScrollBar/HScrollBar.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/ScrollBar/ScrollBarTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Themes/MainWindowTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Themes/SecondaryWindowTheme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Themes/Theme.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.WindowsControls/Themes/ThemeHelper.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controllers/BaseViewController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controllers/ListViewController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controllers/ListViewController.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controllers/MPfm_iOSViewController.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controllers/PlayerViewController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controllers/SplashViewController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controllers/SplashViewController.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controls/MPfmNavigationController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Delegates/AppDelegate.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Delegates/ListTableViewSource.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Main.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Objects/GenericListItem.cs | [ Diff ] [ File ] | ||
mod - ProjectSync/AssemblyInfo.cs | [ Diff ] [ File ] | ||
mod - ProjectSync/Main.cs | [ Diff ] [ File ] | ||
mod - ProjectSync/ProjectFileReader.cs | [ Diff ] [ File ] | ||
mod - ProjectSync/ProjectFileWriter.cs | [ Diff ] [ File ] | ||
mod - ProjectSync/SolutionFileReader.cs | [ Diff ] [ File ] | ||
mod - mp4m.org/trunk/mp4m.org/Controllers/RootController.cs | [ Diff ] [ File ] | ||
mod - mp4m.org/trunk/mp4m.org/Global.asax.cs | [ Diff ] [ File ] | ||
mod - mp4m.org/trunk/mp4m.org/Properties/AssemblyInfo.cs | [ Diff ] [ File ] | ||
GitHub - ycastonguay/MPfm: current eaf47fe3
Timestamp: 2013-02-07 19:54:06 Author: ycastonguay [ Details ] [ Diff ] |
Updated Mac after NavigationManager changes. Removed obj files from Mac. Related to issue 0000404. |
||
mod - MPfm/MPfm.Mac/AppDelegate.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Classes/MacNavigationManager.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Controls/SongPositionSlider.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/Controllers/BaseWindowController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.Mac/Windows/Controllers/UpdateLibraryWindowController.cs | [ Diff ] [ File ] | ||
rm - MPfm/MPfm.Mac/obj/Debug/monomac_version | [ Diff ] [ File ] | ||
rm - MPfm/MPfm.Mac/obj/Debug_MacOSX/monomac_version | [ Diff ] [ File ] | ||
GitHub - ycastonguay/MPfm: current bb473a58
Timestamp: 2013-02-07 21:35:42 Author: ycastonguay [ Details ] [ Diff ] |
Updated GTK Linux project after namespace and NavigationManager changes. Fixed SplashPresenter for Linux. Related to issue 0000404. |
||
mod - MPfm/MPfm.GTK/Classes/GtkNavigationManager.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/MPfm.GTK.csproj | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Main.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Windows/BaseWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/Windows/UpdateLibraryWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.EffectsWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.MainWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.PlaylistWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.PreferencesWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.SplashWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/MPfm.GTK.UpdateLibraryWindow.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.GTK/gtk-gui/generated.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.MVP/Presenters/SplashPresenter.cs | [ Diff ] [ File ] | ||
GitHub - ycastonguay/MPfm: master 174e164b
Timestamp: 2013-02-12 17:54:54 Author: ycastonguay [ Details ] [ Diff ] |
iOS project now using MobileNavigationManager. Related to issue 0000404 and issue 0000405. |
||
rm - MPfm/MPfm.iOS/Classes/Controllers/ListViewController.cs | [ Diff ] [ File ] | ||
add - MPfm/MPfm.iOS/Classes/Controllers/MobileLibraryBrowserViewController.cs | [ Diff ] [ File ] | ||
add - MPfm/MPfm.iOS/Classes/Controllers/MoreViewController.cs | [ Diff ] [ File ] | ||
add - MPfm/MPfm.iOS/Classes/Controllers/MoreViewController.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controllers/PlayerViewController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controllers/PlayerViewController.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controllers/SplashViewController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controllers/SplashViewController.designer.cs | [ Diff ] [ File ] | ||
add - MPfm/MPfm.iOS/Classes/Controllers/UpdateLibraryViewController.cs | [ Diff ] [ File ] | ||
add - MPfm/MPfm.iOS/Classes/Controllers/UpdateLibraryViewController.designer.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Controls/MPfmNavigationController.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Delegates/AppDelegate.cs | [ Diff ] [ File ] | ||
rm - MPfm/MPfm.iOS/Classes/Delegates/ListTableViewSource.cs | [ Diff ] [ File ] | ||
add - MPfm/MPfm.iOS/Classes/Navigation/iOSNavigationManager.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/Classes/Objects/GenericListItem.cs | [ Diff ] [ File ] | ||
mod - MPfm/MPfm.iOS/MPfm.iOS.csproj | [ Diff ] [ File ] | ||
rm - MPfm/MPfm.iOS/XIB/iPad/ListViewController_iPad.xib | [ Diff ] [ File ] | ||
add - MPfm/MPfm.iOS/XIB/iPad/MobileLibraryBrowserViewController_iPad.xib | [ Diff ] [ File ] | ||
add - MPfm/MPfm.iOS/XIB/iPad/MoreViewController_iPad.xib | [ Diff ] [ File ] | ||
add - MPfm/MPfm.iOS/XIB/iPad/UpdateLibraryViewController_iPad.xib | [ Diff ] [ File ] | ||
add - MPfm/MPfm.iOS/XIB/iPhone/MoreViewController_iPhone.xib | [ Diff ] [ File ] | ||
add - MPfm/MPfm.iOS/XIB/iPhone/UpdateLibraryViewController_iPhone.xib | [ Diff ] [ File ] | ||
mod - MPfm/MPfm_iOS.sln | [ Diff ] [ File ] | ||
Issue History | |||
Date Modified | Username | Field | Change |
2012-12-02 18:00 | ycastonguay | New Issue | |
2012-12-02 18:00 | ycastonguay | Status | new => assigned |
2012-12-02 18:00 | ycastonguay | Assigned To | => ycastonguay |
2012-12-02 18:01 | ycastonguay | Relationship added | child of 0000324 |
2012-12-02 18:02 | svn | Checkin | |
2012-12-02 18:02 | svn | Note Added: 0000864 | |
2012-12-03 18:13 | svn | Checkin | |
2012-12-03 18:13 | svn | Note Added: 0000866 | |
2012-12-03 19:54 | svn | Checkin | |
2012-12-03 19:54 | svn | Note Added: 0000868 | |
2012-12-03 21:59 | svn | Checkin | |
2012-12-03 21:59 | svn | Note Added: 0000878 | |
2012-12-03 22:06 | svn | Checkin | |
2012-12-03 22:06 | svn | Note Added: 0000880 | |
2013-02-05 22:10 | svn | Checkin | |
2013-02-05 22:10 | svn | Note Added: 0000921 | |
2013-02-07 17:59 | ycastonguay | Changeset attached | => GitHub - ycastonguay/MPfm master 3a8078d7 |
2013-02-07 19:10 | ycastonguay | Changeset attached | => GitHub - ycastonguay/MPfm master c54c780e |
2013-02-07 19:54 | ycastonguay | Changeset attached | => GitHub - ycastonguay/MPfm current eaf47fe3 |
2013-02-07 21:36 | ycastonguay | Changeset attached | => GitHub - ycastonguay/MPfm current bb473a58 |
2013-02-12 17:55 | ycastonguay | Changeset attached | => GitHub - ycastonguay/MPfm master 174e164b |
2013-02-13 18:24 | ycastonguay | Issue cloned | 0000409 |
2013-02-23 13:22 | ycastonguay | Summary | Add a NavigationManager to manage the view creation, destruction and transitions => Add a NavigationManager to manage the view creation, destruction and transitions on desktop devices |
Copyright © 2000 - 2011 MantisBT Group |