Skip to content

Commit

Permalink
prepare for 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lbayle committed Feb 9, 2022
1 parent 34ab171 commit c4da9f3
Show file tree
Hide file tree
Showing 13 changed files with 318 additions and 420 deletions.
7 changes: 4 additions & 3 deletions classes/config.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ public function getArrayKeyFromValue($value) {
class Config {

// TODO Move to a more appropriate class
const codevVersion = "v1.6.0";
const codevVersionDate = "27 Mar 2021";
const databaseVersion = 21; // used to check codev_config_table.database_version and apply upgrades.
const codevVersion = "v1.7.0";
const codevVersionDate = "14 Feb 2022";
const databaseVersion = 22; // used to check codev_config_table.database_version and apply upgrades.

const configType_int = 1;
const configType_string = 2;
Expand Down Expand Up @@ -170,6 +170,7 @@ class Config {
"v1.4.0" => "(12 May 2019) - remove FilterBugList, multiple TeamAdmins, BlogPlugin, SubmittedResolvedPlugin, TimetrackListPlugin, ManagementCostsPlugin, WbsExportPlugin, TasksPivotTablePlugin, remove effortAdd",
"v1.5.0" => "(01 Jun 2020) - customField:DailyPrice, remove CSV export pages, Domain:User, fix:mantisPlugin, NewPlugins:SallingPriceForPeriod,OngoingTasks,AdminTools",
"v1.6.0" => "(21 Mar 2021) - ProjectJobTeam asso, Admin enhancements, timesheets JS, issueInfoFilters, NewPlugins:FillPeriodWithTimetracks,ImportRelationshipTreeToCommand,LoadPerUserGroups,BurndownChart,IssueSeniority,TimetrackingAnalysis",
"v1.7.0" => "(14 Feb 2022) - PHP8, moveConfigFile, moveToGitHub, newPage:MissingTimetracks, Select2_lazyLoad, UserGroups, NewPlugins:ResetDashboard,LoadPerCustomfieldValues",
);

/**
Expand Down
Binary file modified classmap.ser
Binary file not shown.
52 changes: 0 additions & 52 deletions doc/BACKUPS.TXT

This file was deleted.

4 changes: 2 additions & 2 deletions doc/codevtt_current_version.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
; This file is downloaded from GitHub when a CodevTT instance checks for updates
[current_version]
version = 'v1.6.0'
release_date = '27 Mar 2021'
version = 'v1.7.0'
release_date = '14 Feb 2022'
mantisPlugin_version = '0.7.3'

5 changes: 2 additions & 3 deletions doc/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ RUN set -xe \
# ------------------
# install CodevTT

ENV CODEVTT_VER 1.6.0
ENV CODEVTT_VER 1.7.0
ENV CODEVTT_FILE codevtt_v${CODEVTT_VER}.zip
ENV CODEVTT_URL https://github.com/lbayle/codev/releases/download/1.6.0/${CODEVTT_FILE}

Expand Down Expand Up @@ -184,8 +184,7 @@ ADD mantis_config/config_inc.php /var/www/html/mantis/config
ADD mantis_config/custom_constants_inc.php /var/www/html/mantis/config
ADD mantis_config/custom_relationships_inc.php /var/www/html/mantis/config
ADD mantis_config/custom_strings_inc.php /var/www/html/mantis/config
ADD codevtt_config/config.ini /var/www/html/codevtt
#ADD codevtt_config/config.ini /var/www/html/codevtt/config
ADD codevtt_config/config.ini /var/www/html/codevtt/config
ADD codevtt_config/log4php.xml /var/www/html/codevtt
ADD index.html /var/www/html/index.html

Expand Down
Loading

0 comments on commit c4da9f3

Please sign in to comment.