Compare commits

...

5 Commits

Author SHA1 Message Date
Frédéric Guillot
3daff175e0 Archive project (Not maintained anymore) 2020-12-23 11:52:28 -08:00
trendspotter
3d5dff5791 Update cs_CZ translations 2020-11-17 20:58:55 -08:00
Frédéric Guillot
fc04a81bb0 Setup GitHub CI 2020-04-04 21:19:13 -07:00
Frédéric Guillot
7600ec164e Update plugin version 2019-12-21 21:10:41 -08:00
Timo
83ed1878ac Update plugin according to latest changes in KB 2019-12-21 21:07:28 -08:00
5 changed files with 5 additions and 64 deletions

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:

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/

View File

@@ -14,7 +14,7 @@ KB.component('calendar', function (containerElement, options) {
} }
calendar.fullCalendar({ calendar.fullCalendar({
locale: $("body").data("js-lang"), locale: $("html").attr('lang'),
editable: true, editable: true,
eventLimit: true, eventLimit: true,
defaultView: mode, defaultView: mode,

View File

@@ -3,11 +3,11 @@
return array( return array(
'Calendar' => 'Kalendář', 'Calendar' => 'Kalendář',
'Calendar settings' => 'Nastavení kalendáře', 'Calendar settings' => 'Nastavení kalendáře',
// 'Project calendar view' => '', 'Project calendar view' => 'Zobrazení kalendáře projektu',
'User calendar view' => 'Zobrazení kalendáře uživatele', 'User calendar view' => 'Zobrazení kalendáře uživatele',
'My calendar' => 'Můj kalendář', 'My calendar' => 'Můj kalendář',
'Switch to the list view' => 'Přepnout na seznam zobrazení', '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', 'Subtasks time tracking' => 'Dílčí úkoly s časovačem',
); );

View File

@@ -55,7 +55,7 @@ class Plugin extends Base
public function getPluginVersion() public function getPluginVersion()
{ {
return '1.1.0'; return '1.1.1';
} }
public function getPluginHomepage() public function getPluginHomepage()
@@ -65,7 +65,7 @@ class Plugin extends Base
public function getCompatibleVersion() public function getCompatibleVersion()
{ {
return '>=1.0.44'; return '>=1.2.13';
} }
} }