Skip to content

Releases: dancher743/unity-mvp

v1.2.0

06 May 16:08
Compare
Choose a tag to compare

Description

Version 1.2.0 introduced IMessageDispatcher interface.

Changelog

  • Added defaults for view and model fields into Presenter.Clear method
  • Introduced IMessageDispatcher interface
  • Made dependency inversion for MessageDispatcher class

v1.1.0

03 Apr 02:18
Compare
Choose a tag to compare

Version 1.1.0 adds new namespaces and changes the struct of directories.

CHANGELOG

  • Renamed root directory from MVP to Mvp
  • Moved core functionality into root Mvp directory
  • Renamed Instantiating namespace to Instancing
  • Renamed SampleProject.Messaging namespace to SampleProject.Messages

v1.0.1

01 Apr 13:23
Compare
Choose a tag to compare

Version 1.0.1 brings renaming, new comments and few fixes.

CHANGELOG

Renaming

  • Renamed ICleanable interface to IClearable and all methods connected with it
  • Changed fields of UIView and UIPresenter in EntryPoint to lower case

Comments

  • Added summary to EntryPoint class
  • Corrected comment of CubeView.Color property

Fixes

  • Changed render mode of Canvas from camera to overlay
  • Changed anchors of UI's Text game object

v1.0.0

18 Mar 01:40
Compare
Choose a tag to compare

CHANGELOG

Added core funtionality:

  • IModel, IView, IPresenter
  • Presenter, MonoView

Added functionality for instantiation:

  • IPresenterFactory
  • PresenterFactory

Added functionality for messaging:

  • IMessageSubscriber
  • MessageDispatcher

Added ICleanable interface to cleaning up resources.