Compare commits
5 Commits
eb110c8ac0
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3daff175e0 | ||
|
|
3d5dff5791 | ||
|
|
fc04a81bb0 | ||
|
|
7600ec164e | ||
|
|
83ed1878ac |
21
.github/issue_template.md
vendored
21
.github/issue_template.md
vendored
@@ -1,21 +0,0 @@
|
||||
**Please, do not create duplicate issues**
|
||||
|
||||
|
||||
### Actual behaviour
|
||||
|
||||
|
||||
### Expected behaviour
|
||||
|
||||
|
||||
### Steps to reproduce
|
||||
|
||||
|
||||
### Configuration
|
||||
|
||||
- Plugin version:
|
||||
- Kanboard version:
|
||||
- Database type and version:
|
||||
- PHP version:
|
||||
- OS:
|
||||
- Browser:
|
||||
|
||||
38
.travis.yml
38
.travis.yml
@@ -1,38 +0,0 @@
|
||||
language: php
|
||||
sudo: false
|
||||
notifications:
|
||||
email: false
|
||||
|
||||
services:
|
||||
- postgresql
|
||||
- mysql
|
||||
|
||||
php:
|
||||
- 7.1
|
||||
- 7.0
|
||||
- 5.6
|
||||
|
||||
env:
|
||||
global:
|
||||
- PLUGIN=Calendar
|
||||
- KANBOARD_REPO=https://github.com/kanboard/kanboard.git
|
||||
matrix:
|
||||
- DB=sqlite
|
||||
- DB=mysql
|
||||
- DB=postgres
|
||||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
|
||||
install:
|
||||
- git clone --depth 1 $KANBOARD_REPO
|
||||
- ln -s $TRAVIS_BUILD_DIR kanboard/plugins/$PLUGIN
|
||||
|
||||
before_script:
|
||||
- cd kanboard
|
||||
- phpenv config-add tests/php.ini
|
||||
- composer install
|
||||
- ls -la plugins/
|
||||
|
||||
script:
|
||||
- ./vendor/bin/phpunit -c tests/units.$DB.xml plugins/$PLUGIN/Test/
|
||||
@@ -14,7 +14,7 @@ KB.component('calendar', function (containerElement, options) {
|
||||
}
|
||||
|
||||
calendar.fullCalendar({
|
||||
locale: $("body").data("js-lang"),
|
||||
locale: $("html").attr('lang'),
|
||||
editable: true,
|
||||
eventLimit: true,
|
||||
defaultView: mode,
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
return array(
|
||||
'Calendar' => 'Kalendář',
|
||||
'Calendar settings' => 'Nastavení kalendáře',
|
||||
// 'Project calendar view' => '',
|
||||
'Project calendar view' => 'Zobrazení kalendáře projektu',
|
||||
'User calendar view' => 'Zobrazení kalendáře uživatele',
|
||||
'My calendar' => 'Můj kalendář',
|
||||
'Switch to the list view' => 'Přepnout na seznam zobrazení',
|
||||
'Show tasks based on the start date' => 'Zobrazit úkoly podle datumu zahájení',
|
||||
'Show tasks based on the start date' => 'Zobrazit úkoly podle data zahájení',
|
||||
'Subtasks time tracking' => 'Dílčí úkoly s časovačem',
|
||||
);
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ class Plugin extends Base
|
||||
|
||||
public function getPluginVersion()
|
||||
{
|
||||
return '1.1.0';
|
||||
return '1.1.1';
|
||||
}
|
||||
|
||||
public function getPluginHomepage()
|
||||
@@ -65,7 +65,7 @@ class Plugin extends Base
|
||||
|
||||
public function getCompatibleVersion()
|
||||
{
|
||||
return '>=1.0.44';
|
||||
return '>=1.2.13';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user