You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/core/operations/PLISTViewer.mjs
+10-23
Original file line number
Diff line number
Diff line change
@@ -7,36 +7,23 @@
7
7
importOperationfrom"../Operation.mjs";
8
8
9
9
/**
10
-
* PLIST Viewer operation
10
+
* P-list Viewer operation
11
11
*/
12
-
classPLISTViewerextendsOperation{
12
+
classPlistViewerextendsOperation{
13
13
14
14
/**
15
-
* PLISTViewer constructor
15
+
* PlistViewer constructor
16
16
*/
17
17
constructor(){
18
18
super();
19
19
20
-
this.name="PLIST Viewer";
21
-
this.module="Other";
22
-
this.description="Converts PLISTXML file into a human readable format.";
23
-
this.infoURL="";
20
+
this.name="P-list Viewer";
21
+
this.module="Default";
22
+
this.description="In the macOS, iOS, NeXTSTEP, and GNUstep programming frameworks, property list files are files that store serialized objects. Property list files use the filename extension .plist, and thus are often referred to as p-list files.<br><br>This operation displays plist files in a human readable format.";
0 commit comments