Add categories and set v1.2.2.

This commit is contained in:
2020-03-25 19:20:18 +01:00
parent c0fa7c40a6
commit cb340a7a78
6 changed files with 17 additions and 5 deletions

View File

@@ -5,7 +5,7 @@
<groupId>org.codiki</groupId>
<artifactId>codiki</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<packaging>jar</packaging>
<name>codiki</name>

View File

@@ -1,7 +1,7 @@
app:
name: Codiki
description: A wiki application.
version: 1.2.1
version: 1.2.2
platform: develop
codiki:

View File

@@ -0,0 +1,12 @@
INSERT INTO category (name, creator_id) VALUES
('Windows', 1),
('Outillage', 1);
INSERT INTO sub_category VALUES
(12, 2),
(13, 4);
INSERT INTO version (number) VALUES ('1.2.2');
INSERT INTO version_revision (version_id, text, bugfix) VALUES
(6, 'Ajout des catégories "Windows" et "Outillage".', FALSE);

View File

@@ -1,5 +1,5 @@
export const environment = {
production: false,
appVersion: '1.2.1',
appVersion: '1.2.2',
title: 'Intégration'
};

View File

@@ -1,5 +1,5 @@
export const environment = {
production: true,
appVersion: '1.2.1',
appVersion: '1.2.2',
title: ''
};

View File

@@ -4,7 +4,7 @@
export const environment = {
production: false,
appVersion: '1.2.1',
appVersion: '1.2.2',
title: 'Développement'
};