Skip to content

Releases: shigenobu/magentadesk

Ga release - v0.8.1.

27 Aug 04:36

Choose a tag to compare

  • Support for MariaDB 12.0 and MySQL 8.0.43.
  • Update dependent libraries.

Ga release - v0.8.0.

11 Jun 08:38

Choose a tag to compare

  • Change minimum java version from 8 to 17.
  • Update dependent libraries.
  • Support for MariaDB 11.8 and MySQL 8.0.42.

Ga release - v0.7.3.

15 Mar 06:22

Choose a tag to compare

  • Support for MariaDB 11.7.
  • Support from MySQL 8.0.41.

Ga release - v0.7.2.

29 Nov 14:04

Choose a tag to compare

  • Support for MariaDB 11.6.

Ga release - v0.7.1.

22 Oct 13:48

Choose a tag to compare

  • Support for MySQL 8.0.33 - 8.0.40.

Ga release - v0.7.0.

25 Sep 14:17

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

Choose a tag to compare

  • Support for MariaDB 11.5.

Ga release - v0.6.2.

09 Jun 13:05

Choose a tag to compare

  • Support for MariaDB 11.4.

Ga release - v0.6.1.

04 Mar 12:12

Choose a tag to compare

  • Modify condition expression case.

Ga release - v0.6.0.

04 Mar 09:51

Choose a tag to compare

  • Support for MariaDB 11.3.
  • Up version on libraries.