Skip to content

Releases: N7ghtm4r3/Neutron

v1.0.1

23 Jan 11:53
a5c6dc0
Compare
Choose a tag to compare

In this version:

  • Implemented paginable requests to get the data for the lists
  • Created dedicated controller for changeable data, such as profile pic and the currency value
  • Integrated EquinoxItemsHelper to execute the batch queries
  • Integrated the possibility to edit the revenues and the tickets
  • Avoid the duplication of the labels due the integration of the possibility to chose the already created labels

Migration from 1.0.0 to 1.0.1 version:

To correctly migrate from the 1.0.0 to the 1.0.1 you have to follow these simple steps before launch the backend:

  • Fill the dType field of the users table with the NeutronUser value, you can do it with this sql command:
UPDATE users SET dtype = "NeutronUser";
  • Delete the existing revenue_labels table (it is required to correcting migrate from the previous version and I know that is a bit boring to retrieve the already created labels)
  • Edit the default value of the closing_date field of the general_revenues table, you can do it with sql command:
-- before alter the table
ALTER TABLE `general_revenues` CHANGE `closing_date` `closing_date` BIGINT(20) NULL DEFAULT '-1';

-- after set the default value to the previous tickets which have NULL as default value
UPDATE general_revenues SET closing_date = -1 WHERE closing_date IS NULL;

What's Changed

New Contributors

Full Changelog: 1.0.0...1.0.1

v. 1.0.0

29 Jun 09:34
Compare
Choose a tag to compare

First release of Neutron released!

Full Changelog: https://github.com/N7ghtm4r3/Neutron/commits/1.0.0