From 1f7f1110a8023ecfbd1854f8b93b6d8d9d93134b Mon Sep 17 00:00:00 2001 From: yllen Date: Wed, 9 Nov 2022 16:46:17 +0100 Subject: [PATCH] update setup --- hook.php | 4 ++-- setup.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hook.php b/hook.php index dbd0cf6..0078452 100644 --- a/hook.php +++ b/hook.php @@ -55,7 +55,7 @@ function plugin_pdf_MassiveActions($type) { function plugin_pdf_install() { global $DB; - $migration = new Migration('2.1.0'); + $migration = new Migration('3.0.0'); include_once(Plugin::getPhpDir('pdf')."/inc/profile.class.php"); PluginPdfProfile::install($migration); @@ -75,7 +75,7 @@ function plugin_pdf_install() { function plugin_pdf_uninstall() { global $DB; - $migration = new Migration('2.1.0'); + $migration = new Migration('3.0.0'); include_once(Plugin::getPhpDir('pdf')."/inc/config.class.php"); PluginPdfConfig::uninstall($migration); diff --git a/setup.php b/setup.php index a92e0a6..defaddf 100644 --- a/setup.php +++ b/setup.php @@ -97,7 +97,7 @@ function plugin_init_pdf() { function plugin_version_pdf() { return ['name' => __('Print to pdf', 'pdf'), - 'version' => '2.1.0', + 'version' => '3.0.0', 'author' => 'Remi Collet, Nelly Mahu-Lasson', 'license' => 'GPLv3+', 'homepage' => 'https://github.com/yllen/pdf',