From d7fda17a66d440bacbaca171a4dfacf5cd02f084 Mon Sep 17 00:00:00 2001 From: kumo01GitHub Date: Sat, 19 Jul 2025 18:43:51 +0900 Subject: [PATCH] chore: drop unsupported platforms --- README.md | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index df74f435..0dd29f03 100644 --- a/README.md +++ b/README.md @@ -48,13 +48,8 @@ You must have `git` on your PATH to be able to install plugins directly from rem ## Supported Platforms -* Amazon Fire OS * Android -* BlackBerry 10 * iOS -* Tizen -* Windows Phone 8 -* Windows 8 ## Command Line Usage Display all available plugman commands: @@ -65,11 +60,11 @@ Display all available plugman commands: Install a plugin into a Cordova project: - plugman install --platform --project --plugin [--plugins_dir ] [--www ] [--variable = [--variable = ...]] + plugman install --platform --project --plugin [--plugins_dir ] [--www ] [--variable = [--variable = ...]] Uninstall a Plugin from a Cordova project: - plugman uninstall --platform --project --plugin [--www ] [--plugins_dir ] + plugman uninstall --platform --project --plugin [--www ] [--plugins_dir ] For each command (install and uninstall), you must specify a platform and Cordova project location for that platform. You also must specify a plugin, with the different `--plugin` parameter forms being: @@ -127,7 +122,7 @@ This section details how to consume Plugman as a node module and is only for Cor Installs a plugin into a specified cordova project of a specified platform. - * `platform`: one of `amazon-fireos`, `android`, `ios`, `blackberry10`, or `wp8` + * `platform`: `android` or `ios` * `project_dir`: path to an instance of the above specified platform's cordova project * `id`: a string representing the `id` of the plugin, a path to a cordova plugin with a valid `plugin.xml` file, or an `https://` or `git://` url to a git repository of a valid cordova plugin or a plugin published to the Cordova registry * `plugins_dir`: path to directory where plugins will be stored, defaults to `/cordova/plugins` @@ -142,7 +137,7 @@ Installs a plugin into a specified cordova project of a specified platform. Uninstalls a previously-installed cordova plugin from a specified cordova project of a specified platform. - * `platform`: one of `amazon-fireos`, `android`, `ios`, `blackberry10`, or `wp8` + * `platform`: `android` or `ios` * `project_dir`: path to an instance of the above specified platform's cordova project * `id`: a string representing the `id` of the plugin * `plugins_dir`: path to directory where plugins are stored, defaults to `/cordova/plugins` @@ -171,7 +166,7 @@ Finalizes plugin installation by making configuration file changes and setting u module.exports = function handlePrepare(project_dir, platform, plugins_dir) { * `project_dir`: path to an instance of the above specified platform's cordova project - * `platform`: one of `amazon-fireos`, `android`, `ios`, `blackberry10`, or `wp8` + * `platform`: `android` or `ios` * `plugins_dir`: path housing all plugins used in this project ## Registry related actions @@ -237,7 +232,6 @@ Add/Remove a platform from a newly created plugin - Google has a [bunch of plugins](https://github.com/MobileChromeApps/mobile-chrome-apps/tree/master/chrome-cordova/plugins) which are maintained actively by a contributor to plugman - Adobe maintains plugins for its Build cloud service, which are open sourced and [available on GitHub](https://github.com/phonegap-build) -- BlackBerry has a [bunch of plugins](https://github.com/blackberry/cordova-blackberry/tree/master/blackberry10/plugins) offering deep platform integration - Core and 3rd party plugins can be found on the [Cordova Registry](http://plugins.cordova.io). ## Development