Compare commits

...
5 Commits
5 changed files with 5 additions and 64 deletions
-21
View File
@@ -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
View File
@@ -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/
+1 -1
View File
@@ -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,
+2 -2
View File
@@ -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',
);
+2 -2
View File
@@ -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';
}
}