-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,15 +15,15 @@ use JSON qw( decode_json ); | |
use base qw(Koha::Plugins::Base); | ||
|
||
## Here we set our plugin version | ||
our $VERSION = '1.0.0'; | ||
our $VERSION = '1.0.1'; | ||
our $MINIMUM_VERSION = '21.05'; | ||
|
||
## Here is our metadata, some keys are required, some are optional | ||
our $METADATA = { | ||
name => 'Command Palette', | ||
author => 'Paul Derscheid <[email protected]>', | ||
date_authored => '2023-06-29', | ||
date_updated => '2023-06-29', | ||
date_updated => '2024-10-03', | ||
minimum_version => $MINIMUM_VERSION, | ||
maximum_version => undef, | ||
version => $VERSION, | ||
|
@@ -185,4 +185,4 @@ sub static_routes { | |
return $spec; | ||
} | ||
|
||
1; | ||
1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
{ | ||
"name": "koha-plugin-command-palette", | ||
"version": "1.0.0", | ||
"description": "This plugin adds a command palette to the Koha staff client. It aims to make navigation easier for power users.", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"format": "prettier --write \"src/**/*.ts\"", | ||
"build": "vite build", | ||
"dev": "vite dev" | ||
}, | ||
"version": "1.0.1", | ||
"license": "GPL-3.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/pders01/koha-plugin-command-palette.git" | ||
"url": "git+https://github.com/pders01/koha-plugin-command-palette.git", | ||
"type": "git" | ||
}, | ||
"keywords": [ | ||
"koha-plugin", | ||
"command-palette", | ||
"koha" | ||
], | ||
"author": "Paul Derscheid <[email protected]>", | ||
"license": "GPL-3.0", | ||
"scripts": { | ||
"build": "vite build", | ||
"dev": "vite dev", | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"format": "prettier --write \"src/**/*.ts\"" | ||
}, | ||
"main": "index.js", | ||
"devDependencies": { | ||
"vite": "^5.4.8", | ||
"prettier-plugin-organize-imports": "^3.2.2", | ||
"tslib": "^2.6.0", | ||
"typescript": "^5.6.2", | ||
"vite": "^5.4.8" | ||
"typescript": "^5.6.2" | ||
}, | ||
"dependencies": { | ||
"lit": "^3.2.0" | ||
} | ||
}, | ||
"name": "koha-plugin-command-palette" | ||
} |