Skip to content
This repository has been archived by the owner on Jan 3, 2025. It is now read-only.

Commit

Permalink
* Fixing exporting issues
Browse files Browse the repository at this point in the history
* Modify theme
  • Loading branch information
Hai Nguyen committed Apr 2, 2017
1 parent fd1dae7 commit e1ca230
Show file tree
Hide file tree
Showing 156 changed files with 1,593 additions and 1,108 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Free, open source CRM, Document and Project Management software
[![License](http://img.shields.io/badge/License-GPLv3-orange.svg)](http://www.gnu.org/copyleft/gpl.html) [![Project Stats](https://www.openhub.net/p/mycollab/widgets/project_thin_badge.gif)](https://www.openhub.net/p/mycollab) [![Build](https://travis-ci.org/MyCollab/mycollab.svg)](https://travis-ci.org/MyCollab/mycollab)
[![Version](https://img.shields.io/badge/Version-5.4.6-brightgreen.svg)](https://community.mycollab.com/)
[![Version](https://img.shields.io/badge/Version-5.4.8-brightgreen.svg)](https://community.mycollab.com/)
[![Github](https://img.shields.io/github/downloads/MyCollab/mycollab/total.svg)](https://github.com/MyCollab/mycollab/releases)


Expand Down Expand Up @@ -96,7 +96,7 @@ MyCollab requires a running Java Runtime Environment (8 or greater), Java comman

## Installation

The current MyCollab version is 5.4.6 released on 6th February, 2017. This branch focuses in monitoring, customize options for on-demand edition.
The current MyCollab version is 5.4.8 released on 26th February, 2017. This branch focuses in monitoring, customize options for on-demand edition.

1. Download MyCollab binary - https://www.mycollab.com/self-hosted/
2. Follow installation guideline at https://community.mycollab.com/docs/hosting-mycollab-on-your-own-server/installing-mycollab/
Expand Down
2 changes: 1 addition & 1 deletion mycollab-app-community/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
Expand Down
20 changes: 20 additions & 0 deletions mycollab-app-community/src/main/installer-resources/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,26 @@ understanding in a matter of minutes.
Last changelog
==============

Version 5.4.8
-------------

**Library Upgrades**

* Jackrabbit 2.15.1
* HikariCP 2.6.1, Cglib 3.2.5

**Improvements & New Features**

* Theme modification
* Allow upload icons for CRM account
* Several minor bug fixes

**Bug Fixes**

* [Premium] Can not edit bug in the mobile application
* Export files may fail to export wrong file type


Version 5.4.7
-------------

Expand Down
2 changes: 1 addition & 1 deletion mycollab-caching/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion mycollab-client-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>mycollab-parent-community</artifactId>
<groupId>com.mycollab</groupId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/**
* This file is part of mycollab-client-api.
*
* mycollab-client-api is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* mycollab-client-api is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with mycollab-client-api. If not, see <http://www.gnu.org/licenses/>.
*/
package com.mycollab.module.project.domain;

/**
*
* @author MyCollab Ltd
* @since 5.4.9
*/
public class ProjectDto {
private String name;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}
}
2 changes: 1 addition & 1 deletion mycollab-config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,17 @@ public class ExceptionFilter extends Filter<ILoggingEvent> {

static {
try {
blacklistClasses = new Class[]{Class.forName("org.apache.jackrabbit.core.cluster.ClusterException"),
blacklistClasses = new Class[]{
Class.forName("org.apache.jackrabbit.core.cluster.ClusterException"),
Class.forName("org.springframework.dao.UncategorizedDataAccessException"),
Class.forName("org.springframework.transaction.CannotCreateTransactionException"),
Class.forName("com.mycollab.core.SessionExpireException"),
Class.forName("java.net.SocketTimeoutException"),
Class.forName("org.apache.commons.mail.EmailException"),
Class.forName("java.net.SocketTimeoutException"),
Class.forName("java.sql.SQLTransientConnectionException"),
Class.forName("com.mysql.jdbc.exceptions.jdbc4.CommunicationsException")};
Class.forName("com.mysql.jdbc.exceptions.jdbc4.CommunicationsException"),
Class.forName("com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException")};
} catch (Exception e) {
}
}
Expand Down
2 changes: 1 addition & 1 deletion mycollab-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
Expand Down
4 changes: 2 additions & 2 deletions mycollab-core/src/main/java/com/mycollab/core/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ public class Version {
public static final String THEME_MOBILE_VERSION = "mycollab_20161111";

public static String getVersion() {
return "5.4.7";
return "5.4.8";
}

public static DateTime getReleasedDate() {
return new DateTime(2017, 2, 16, 0, 0, 0);
return new DateTime(2017, 4, 2, 0, 0, 0);
}

static int[] getVersionNumbers(String ver) {
Expand Down
2 changes: 1 addition & 1 deletion mycollab-dao/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion mycollab-deployer-community/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<name>mycollab-deployer-community</name>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-deployer-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<packaging>pom</packaging>
<prerequisites>
<maven>3.0.4</maven>
Expand Down
2 changes: 1 addition & 1 deletion mycollab-esb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion mycollab-jackrabbit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mycollab-localization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ public enum GenericI18Enum {
ACTION_SKIP,
ACTION_PRINT,
ACTION_EXPORT,
ACTION_EXPORT_MAIL,
ACTION_PREVIEW,
ACTION_SELECT_VALUE,
ACTION_SELECT_COLUMNS,
Expand Down Expand Up @@ -206,6 +207,8 @@ public enum GenericI18Enum {
OPT_SIMPLE_MODE,
OPT_CHART_MODE,
OPT_SHARED_TO_ME,
OPT_CHANGE_IMAGE,
OPT_UPLOAD_IMAGE,

M_BUTTON_BACK,
M_BUTTON_SEND
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,5 @@ public enum ClientI18nEnum {
EDIT,

OPT_NUM_PROJECTS,
OPT_REMOVE_CLIENT,
OPT_CHANGE_LOGO_HELP
OPT_REMOVE_CLIENT
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ public enum ProjectI18nEnum {
OPT_GENERAL,
OPT_FEATURES,
OPT_CLIENT_AND_BILLING,
OPT_CHANGE_LOGO_HELP,

ERROR_MUST_CHOOSE_TEMPLATE_PROJECT,
ERROR_PROJECT_KEY_INVALID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ ACTION_HELP=Help
ACTION_MODIFY=Modify
ACTION_PRINT=Print
ACTION_EXPORT=Export
ACTION_EXPORT_MAIL=Export & Mail
ACTION_PREVIEW=Preview
ACTION_SELECT_VALUE=Select {0}
ACTION_SELECT_COLUMNS=Select columns
Expand Down Expand Up @@ -198,6 +199,8 @@ OPT_COMMENT=Comment
OPT_SIMPLE_MODE=Simple mode
OPT_CHART_MODE=Chart mode
OPT_SHARED_TO_ME=Share to me
OPT_CHANGE_IMAGE=Click to change image
OPT_UPLOAD_IMAGE=Upload an image

HELP_SPAM_FILTER_PREVENT_TITLE=A note about spam filters
HELP_SPAM_FILTER_PREVENT_MESSAGE=If you do not receive the confirmation message within a few minutes of signing up, please check your Spam or Bulk E-Mail folder just in case the confirmation email got delivered there instead of your inbox. If so, select the confirmation message and mark it Not Spam, which should allow future messages to get through.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ DETAIL=Client Details
SINGLE=Client
EDIT=Edit Client
OPT_NUM_PROJECTS=Projects ({0})
OPT_REMOVE_CLIENT=Remove client "{0}"
OPT_CHANGE_LOGO_HELP=To change the client logo, select '{0}' and upload the new client logo
OPT_REMOVE_CLIENT=Remove client "{0}"
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,5 @@ OPT_SEARCH_TERM=Search for "%s" (Found: %d)
OPT_GENERAL=General
OPT_FEATURES=Features
OPT_CLIENT_AND_BILLING=Client and Billing
OPT_CHANGE_LOGO_HELP=To change the project logo, go to project menu, select {0} and upload the new project logo
ERROR_MUST_CHOOSE_TEMPLATE_PROJECT=You must choose a template project
ERROR_PROJECT_KEY_INVALID=Project key must be not null and less than 3 characters
4 changes: 2 additions & 2 deletions mycollab-migration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
Expand Down Expand Up @@ -45,7 +45,7 @@
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>4.0.3</version>
<version>4.1.2</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion mycollab-mobile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
Expand Down
16 changes: 8 additions & 8 deletions mycollab-parent-community/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<name>mycollab-parent-community</name>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<packaging>pom</packaging>
<prerequisites>
<maven>3.3.0</maven>
Expand All @@ -15,15 +15,15 @@
<springVersion>4.3.2.RELEASE</springVersion>
<aspectjVersion>1.8.9</aspectjVersion>
<java.version>1.8</java.version>
<slf4jVersion>1.7.22</slf4jVersion>
<slf4jVersion>1.7.25</slf4jVersion>
<servletVersion>3.1.0</servletVersion>
<vaadinVersion>7.7.3</vaadinVersion>
<jettyVersion>9.3.12.v20160915</jettyVersion>
<mysqlVersion>5.1.40</mysqlVersion>
<junitVersion>4.12</junitVersion>
<jackrabbitVersion>2.15.0</jackrabbitVersion>
<jackrabbitVersion>2.15.1</jackrabbitVersion>
<jacksonVersion>2.8.6</jacksonVersion>
<jodaVersion>2.9.7</jodaVersion>
<jodaVersion>2.9.9</jodaVersion>
<scala.binary.version>2.12</scala.binary.version>
<scala.version>2.12.1</scala.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -55,13 +55,13 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.1.9</version>
<version>1.2.2</version>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.9</version>
<version>1.2.2</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -204,7 +204,7 @@
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>3.2.4</version>
<version>3.2.5</version>
<exclusions>
<exclusion>
<groupId>org.apache.ant</groupId>
Expand Down Expand Up @@ -273,7 +273,7 @@
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>2.6.0</version>
<version>2.6.1</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion mycollab-reporting/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.mycollab</groupId>
<artifactId>mycollab-parent-community</artifactId>
<version>5.4.7</version>
<version>5.4.8</version>
<relativePath>../mycollab-parent-community/pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
Expand Down
Loading

0 comments on commit e1ca230

Please sign in to comment.