License updated to GPLv3

🧲 New features
Custom user role permissions
Employee edit form updated
Employee daily task list
Attendance and employee distribution charts on dashboard
Improvements to company structure and company assets module
Improved tables for displaying data in several modules
Faster data loading (specially for employee module)
Initials based profile pictures
Re-designed login page
Re-designed user profile page
Improvements to filtering
New REST endpoints for employee qualifications

🐛 Bug fixes
Fixed, issue with managers being able to create performance reviews for employees who are not their direct reports
Fixed, issues related to using full profile image instead of using smaller version of profile image
Changing third gender to other
Improvements and fixes for internal frontend data caching
This commit is contained in:
Thilina Pituwala
2020-10-31 19:02:37 +01:00
parent 86b8345505
commit b1df0037db
29343 changed files with 867614 additions and 2191082 deletions

View File

@@ -93,14 +93,17 @@ Upgrade from Previous Versions to Latest Version
Refer: [http://blog.icehrm.com/docs/upgrade/](http://blog.icehrm.com/docs/upgrade/)
Setup IceHrm Development Environment
------------------------------------
Setup IceHrm Development Environment (Docker)
-----------------------------------------
IceHrm uses docker to setup development environment
- Clone icehrm from https://github.com/gamonoid/icehrm.git or download the source
- Build frontend assets (refer to section *Building frontend assets*)
```
$ git clone https://github.com/gamonoid/icehrm.git
$ cd icehrm
@@ -121,7 +124,43 @@ docker-compose -f docker-compose-testing.yaml up --exit-code-from cypress
$ docker-compose -f docker-compose-prod.yaml up -d --build
```
### Building frontend assets
Setup IceHrm Development Environment (Vagrant)
---------------------------------------------
IceHrm development environment is packaged as a Vagrant box. I includes php7.3, nginx, phpunit and other
software required for running icehrm
### Preparing development VM with Vagrant
- Clone icehrm from https://github.com/gamonoid/icehrm.git
- Build frontend assets (refer to section *Building frontend assets*)
- Install Vagrant [https://www.vagrantup.com/downloads.html](https://www.vagrantup.com/downloads.html)
- Run vagrant up in icehrm root directory (this will download icehrm vagrant image which is ~1 GB)
```
~ $ vagrant up
```
- Run vagrant ssh to login to the Virtual machine
```
~ $ vagrant ssh
~ $ sudo service nginx restart
```
- Add following entry to the end of the host file to map icehrm domains to VagrantBox (on MacOS and Linux this is /etc/hosts | on windows this is Windows\System32\Drivers\etc\hosts)
```
192.168.10.12 icehrm.os
```
- Navigate to [http://icehrm.os](http://icehrm.os) to load icehrm from Vagrant. (user:admin/pass:admin)
Building frontend assets
------------------------
- When ever you have done a change to JavaScript or CSS files in icehrm/web you need to rebuild the frontend
@@ -138,7 +177,7 @@ $ npm install
$ gulp
```
- If you have only changed an admin module and you know which module it is
- For production build use
```
$ gulp admin-js --memployees
$ gulp --eprod
```