Skip to content

Commit 320c097

Browse files
docs(filesystem): Plugin migration (#2368)
1 parent 228ae69 commit 320c097

File tree

7 files changed

+18
-6
lines changed

7 files changed

+18
-6
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ This repository contains the official Capacitor plugins maintained by the Capaci
2222
| [`@capacitor/clipboard`](https://capacitorjs.com/docs/apis/clipboard) | [`./clipboard`](./clipboard) | [![npm badge](https://img.shields.io/npm/v/@capacitor/clipboard?style=flat-square)](https://www.npmjs.com/package/@capacitor/clipboard)
2323
| [`@capacitor/device`](https://capacitorjs.com/docs/apis/device) | [`./device`](./device) | [![npm badge](https://img.shields.io/npm/v/@capacitor/device?style=flat-square)](https://www.npmjs.com/package/@capacitor/device)
2424
| [`@capacitor/dialog`](https://capacitorjs.com/docs/apis/dialog) | [`./dialog`](./dialog) | [![npm badge](https://img.shields.io/npm/v/@capacitor/dialog?style=flat-square)](https://www.npmjs.com/package/@capacitor/dialog)
25-
| [`@capacitor/filesystem`](https://capacitorjs.com/docs/apis/filesystem) | [`./filesystem`](./filesystem) | [![npm badge](https://img.shields.io/npm/v/@capacitor/filesystem?style=flat-square)](https://www.npmjs.com/package/@capacitor/filesystem)
26-
| [`@capacitor/geolocation`](https://capacitorjs.com/docs/apis/geolocation) | [Migrated](https://github.com/ionic-team/capacitor-geolocation) | [![npm badge](https://img.shields.io/npm/v/@capacitor/geolocation?style=flat-square)](https://www.npmjs.com/package/@capacitor/geolocation)
2725
| [`@capacitor/haptics`](https://capacitorjs.com/docs/apis/haptics) | [`./haptics`](./haptics) | [![npm badge](https://img.shields.io/npm/v/@capacitor/haptics?style=flat-square)](https://www.npmjs.com/package/@capacitor/haptics)
2826
| [`@capacitor/keyboard`](https://capacitorjs.com/docs/apis/keyboard) | [`./keyboard`](./keyboard) | [![npm badge](https://img.shields.io/npm/v/@capacitor/keyboard?style=flat-square)](https://www.npmjs.com/package/@capacitor/keyboard)
2927
| [`@capacitor/local-notifications`](https://capacitorjs.com/docs/apis/local-notifications) | [`./local-notifications`](./local-notifications) | [![npm badge](https://img.shields.io/npm/v/@capacitor/local-notifications?style=flat-square)](https://www.npmjs.com/package/@capacitor/local-notifications)
@@ -47,8 +45,14 @@ These are official Capacitor plugins that are not contained in this repository.
4745
| --- | --- | --- |
4846
| [Background Runner](https://github.com/ionic-team/capacitor-background-runner) | [`@capacitor/background-runner`](https://capacitorjs.com/docs/apis/background-runner) | [![npm badge](https://img.shields.io/npm/v/@capacitor/background-runner?style=flat-square)](https://www.npmjs.com/package/@capacitor/background-runner) |
4947
| [Barcode Scanner](https://github.com/ionic-team/capacitor-barcode-scanner) | [`@capacitor/barcode-scanner`](https://capacitorjs.com/docs/apis/barcode-scanner) | [![npm badge](https://img.shields.io/npm/v/@capacitor/barcode-scanner?style=flat-square)](https://www.npmjs.com/package/@capacitor/barcode-scanner) |
48+
| [Filesystem](https://github.com/ionic-team/capacitor-filesystem) (*) | [`@capacitor/geolocation`](https://capacitorjs.com/docs/apis/filesystem) | [![npm badge](https://img.shields.io/npm/v/@capacitor/filesystem?style=flat-square)](https://www.npmjs.com/package/@capacitor/filesystem) |
49+
| [File Transfer](https://github.com/ionic-team/capacitor-file-transfer) | [`@capacitor/geolocation`](https://capacitorjs.com/docs/apis/file-transfer) | [![npm badge](https://img.shields.io/npm/v/@capacitor/file-transfer?style=flat-square)](https://www.npmjs.com/package/@capacitor/file-transfer) |
50+
| [File Viewer](https://github.com/ionic-team/capacitor-file-viewer) | [`@capacitor/geolocation`](https://capacitorjs.com/docs/apis/file-viewer) | [![npm badge](https://img.shields.io/npm/v/@capacitor/file-viewer?style=flat-square)](https://www.npmjs.com/package/@capacitor/file-viewer) |
51+
| [Geolocation](https://github.com/ionic-team/capacitor-geolocation) (*) | [`@capacitor/geolocation`](https://capacitorjs.com/docs/apis/geolocation) | [![npm badge](https://img.shields.io/npm/v/@capacitor/geolocation?style=flat-square)](https://www.npmjs.com/package/@capacitor/geolocation) |
5052
| [Google Maps](https://github.com/ionic-team/capacitor-google-maps) | [`@capacitor/google-maps`](https://capacitorjs.com/docs/apis/google-maps) | [![npm badge](https://img.shields.io/npm/v/@capacitor/google-maps?style=flat-square)](https://www.npmjs.com/package/@capacitor/google-maps) |
5153

54+
(*) These plugins were once part of this repository, but have been since been revamped and migrated to a separate repository. The code pre-migration still remains in this repository for historic purposes.
55+
5256
## Capacitor Labs
5357

5458
These are experimental plugins. Use at your own risk.

filesystem/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# ⓘ Plugin migrated
2+
3+
**From version 7.1.0 onwards, this plugin is now hosted in a separate repository. Refer to the [updated CHANGELOG](https://github.com/ionic-team/capacitor-filesystem/blob/main/CHANGELOG.md).**
4+
15
# Change Log
26

37
All notable changes to this project will be documented in this file.

filesystem/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# ⓘ Plugin migrated
2+
3+
**From version 7.1.0 onwards, this plugin is now hosted in a separate repository. Refer to [capacitor-filesystem repository](https://github.com/ionic-team/capacitor-filesystem).**
4+
5+
This file remains here to serve as documentation for version 7.0.1.
6+
17
# @capacitor/filesystem
28

39
The Filesystem API provides a NodeJS-like API for working with files on the device.

geolocation/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ⓘ Plugin migrated
22

3-
**From version 7.1.0 onwards, this plugin is now housed in a separate repository. Refer to the [updated CHANGELOG](https://github.com/ionic-team/capacitor-geolocation/blob/main/CHANGELOG.md).**
3+
**From version 7.1.0 onwards, this plugin is now hosted in a separate repository. Refer to the [updated CHANGELOG](https://github.com/ionic-team/capacitor-geolocation/blob/main/CHANGELOG.md).**
44

55
This file remains here as a record of the plugin's history for versions older than 7.1.0.
66

geolocation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ⓘ Plugin migrated
22

3-
**From version 7.1.0 onwards, this plugin is now housed in a separate repository. Refer to [capacitor-geolocation repository](https://github.com/ionic-team/capacitor-geolocation).**
3+
**From version 7.1.0 onwards, this plugin is now hosted in a separate repository. Refer to [capacitor-geolocation repository](https://github.com/ionic-team/capacitor-geolocation).**
44

55
This file remains here to serve as documentation for version 7.0.0.
66

nx.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"{projectRoot}/clipboard/dist",
2121
"{projectRoot}/device/dist",
2222
"{projectRoot}/dialog/dist",
23-
"{projectRoot}/filesystem/dist",
2423
"{projectRoot}/haptics/dist",
2524
"{projectRoot}/keyboard/dist",
2625
"{projectRoot}/local-notifications/dist",

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
"clipboard",
5252
"device",
5353
"dialog",
54-
"filesystem",
5554
"haptics",
5655
"keyboard",
5756
"local-notifications",

0 commit comments

Comments
 (0)