From bfee27756d6765385efd164edbd67ed48713cb9e Mon Sep 17 00:00:00 2001 From: prakash-a7x Date: Wed, 17 Apr 2024 13:28:32 +0600 Subject: [PATCH] version changed to 1.1.0 --- .../mod_mip_darkmode_switch/mod_mip_darkmode_switch.xml | 2 +- gulpfile.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/administrator/modules/mod_mip_darkmode_switch/mod_mip_darkmode_switch.xml b/administrator/modules/mod_mip_darkmode_switch/mod_mip_darkmode_switch.xml index 6d81bb0..ed28b35 100644 --- a/administrator/modules/mod_mip_darkmode_switch/mod_mip_darkmode_switch.xml +++ b/administrator/modules/mod_mip_darkmode_switch/mod_mip_darkmode_switch.xml @@ -7,7 +7,7 @@ GNU General Public License version 2 or later; see LICENSE.txt prakash.a7x@gmail.com https://github.com/mi-prakash - 1.0.0 + 1.1.0 A Simple module for Dark Mode On/Off switch. Publish the module on position "status" mod_mip_darkmode_switch.php diff --git a/gulpfile.js b/gulpfile.js index c66683b..33db7dc 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -22,12 +22,12 @@ gulp.task("clean_build", function () { }); gulp.task("clean_zip", function () { - return gulp.src("./mod_mip_darkmode_switch_v1.0.0.zip", { read: false, allowEmpty: true }).pipe(clean()); + return gulp.src("./mod_mip_darkmode_switch_v1.1.0.zip", { read: false, allowEmpty: true }).pipe(clean()); }); gulp.task( "default", gulp.series("clean_zip", "clean_build", "copy", "zip_it", function () { - return gulp.src("./build/**/*.*").pipe(zip("mod_mip_darkmode_switch_v1.0.0.zip")).pipe(gulp.dest("./build")); + return gulp.src("./build/**/*.*").pipe(zip("mod_mip_darkmode_switch_v1.1.0.zip")).pipe(gulp.dest("./build")); }), );