Skip to content

Releases: shigenobu/magentadesk

Ga release - v0.7.0.

25 Sep 14:17
Compare
Choose a tag to compare
  • Support for MySQL 8.0.31, 8.0.32.
  • Refacter several.

(Notice) upgrade from 0.6.3 to 0.7.0 for web.

Modify sqlite table below commands.

ALTER TABLE project RENAME TO project_tmp;
CREATE TABLE project (
    projectId integer primary key autoincrement,
    title text,
    explanation text,
    host text,
    port integer,
    user text,
    pass text,
    charset text,
    dbType text,
    baseDatabase text,
    compareDatabase text
);
INSERT INTO project 
SELECT projectId, title, explanation, host, port, user, pass, charset, 'mariadb', baseDatabase, compareDatabase FROM project_tmp;

If modify auto_increment, check and update auto increment.

SELECT seq FROM sqlite_sequence WHERE name = 'project_tmp';
UPDATE sqlite_sequence SET seq = ${seq} WHERE name = 'project';

Finally, drop tmp.

DROP TABLE project_tmp;

Ga release - v0.6.3.

20 Sep 13:07
Compare
Choose a tag to compare
  • Support for MariaDB 11.5.

Ga release - v0.6.2.

09 Jun 13:05
Compare
Choose a tag to compare
  • Support for MariaDB 11.4.

Ga release - v0.6.1.

04 Mar 12:12
Compare
Choose a tag to compare
  • Modify condition expression case.

Ga release - v0.6.0.

04 Mar 09:51
Compare
Choose a tag to compare
  • Support for MariaDB 11.3.
  • Up version on libraries.

Ga release - v0.5.3.

25 Nov 14:36
Compare
Choose a tag to compare
  • Add tested for MariaDB 11.2.

Ga release - v0.5.2.

31 Oct 10:49
Compare
Choose a tag to compare
  • Add environment value 'MD_WAIT'.

Ga release - v0.5.1.

08 Sep 00:52
Compare
Choose a tag to compare
  • Add tested for MariaDB 11.1.

Ga release - v0.5.0.

06 Jul 06:49
Compare
Choose a tag to compare
  • Add tested for MariaDB 11.0.
  • Update sqlite-jdbc driver.

Ga release - v0.4.9.

22 Mar 06:52
Compare
Choose a tag to compare
  • Add test for MariaDB 10.11.