Skip to content

Commit

Permalink
Release of Taskodrome v.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AuthenticEshkinKot committed Jul 28, 2019
1 parent 71d7181 commit 23af0e0
Show file tree
Hide file tree
Showing 40 changed files with 3,903 additions and 1,840 deletions.
8 changes: 8 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 2.0.0 - 2019-07-28
### Added
- Navigation to version
- Explanation window is shown in case of forbidden transition of issue

### Changed
- EaselJS was replaced by Fabric.js (http://fabricjs.com/)

## 1.4.8 - 2019-02-09
### Fixed
- Multiple target version view if project has subprojects
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Interactive scrum board for Mantis bugtracker 1.2.9 and later.
# Installation
Copy Taskodrome catalogue to mantisbt plugin directory.

If you are upgrading from Taskodrome v.1 to v.2 you should completely remove previous installation of the plugin from your mantisbt plugin directory.

## Compatibility
MantisBT version | Branch
:---:|---
Expand Down
Binary file modified Screenshots/assignee.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Screenshots/status.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Screenshots/temperature.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Taskodrome/Taskodrome.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public function register()
$this->description = plugin_lang_get("description");
$this->page = 'config_page';

$this->version = "1.4.8";
$this->version = "2.0.0";
$this->requires = array(
"MantisCore" => "2.0.0",
);
Expand Down
67 changes: 67 additions & 0 deletions Taskodrome/files/scripts/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"env": {
"browser": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 5
},
"rules": {
"indent": [
"warn",
2,
{
"SwitchCase": 1,
"FunctionDeclaration": { "parameters": "off", "body": 1 }
}
],
"linebreak-style": [
"warn",
"unix"
],
"quotes": [
"warn",
"double"
],
"semi": [
"error",
"always"
],
"no-extra-semi": "off",
"no-console": "off",
"no-unused-vars": "off"
},
"globals": {
"fabric": false,
"checkExistence": false,
"openBoard": false,
"addRadioCallback": false,
"DataSource": false,
"DevPage": false,
"StatusPage": false,
"RelPage": false,
"Page": false,
"ColumnHandler": false,
"Grid": false,
"Block": false,
"BlockList": false,
"BlockGraphics": false,
"Card": false,
"CardCoords": false,
"CardTransferEvent": false,
"CardTransferHandler": false,
"CardTransferNotifier": false,
"ScrollbarV": false,
"ScrollbarH": false,
"Position": false,
"Size": false,
"Drawable": false,
"createShortenedText": false,
"getPathToMantisFile": false,
"IssueUpdater": false,
"IssueData": false,
"PopupAlert": false,
"MessageGenerator": false,
"MessageTypeEnum": false
}
}
Loading

0 comments on commit 23af0e0

Please sign in to comment.