+6
-3
changelog
+6
-3
changelog
···
78
v0.2.4:
79
- Refactor loading system to not load all photos at the start
80
(should help with large numbers of photos)
81
-
- Update UI to work on linux
82
- Opening files on linux now works
83
-
- Fixed not rendering properly on linux
84
- Switch world data api to vrchat
85
-
- Fixed icons being MASSIVE on linux
86
- Photos are in the correct order on linux now
87
88
Dev Stuff:
89
- Implemented a view transition handler, should help with transitions when the app is scaled
···
78
v0.2.4:
79
- Refactor loading system to not load all photos at the start
80
(should help with large numbers of photos)
81
+
- Update UI to work on webkitgtk
82
- Opening files on linux now works
83
+
- Fixed not rendering properly when using webkitgtk
84
- Switch world data api to vrchat
85
+
- Fixed icons being MASSIVE when using webkitgtk
86
- Photos are in the correct order on linux now
87
+
- Fixed photos not rendering if the window isn't resized or reopened when using webkitgtk
88
+
- Fixed scrolling being more and more snappy when the window is closed and reopened when using webkitgtk
89
+
- Fixed render being called multiple times per frame when using webkitgtk
90
91
Dev Stuff:
92
- Implemented a view transition handler, should help with transitions when the app is scaled
+1
-1
src-tauri/Cargo.toml
+1
-1
src-tauri/Cargo.toml
+865
-371
src-tauri/gen/schemas/windows-schema.json
+865
-371
src-tauri/gen/schemas/windows-schema.json
···
37
],
38
"definitions": {
39
"Capability": {
40
-
"description": "A grouping and boundary mechanism developers can use to isolate access to the IPC layer.\n\nIt controls application windows fine grained access to the Tauri core, application, or plugin commands. If a window is not matching any capability then it has no access to the IPC layer at all.\n\nThis can be done to create groups of windows, based on their required system access, which can reduce impact of frontend vulnerabilities in less privileged windows. Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`. A Window can have none, one, or multiple associated capabilities.\n\n## Example\n\n```json { \"identifier\": \"main-user-files-write\", \"description\": \"This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programatic access to files selected by the user.\", \"windows\": [ \"main\" ], \"permissions\": [ \"core:default\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] }, \"platforms\": [\"macOS\",\"windows\"] } ```",
41
"type": "object",
42
"required": [
43
"identifier",
···
49
"type": "string"
50
},
51
"description": {
52
-
"description": "Description of what the capability is intended to allow on associated windows.\n\nIt should contain a description of what the grouped permissions should allow.\n\n## Example\n\nThis capability allows the `main` window access to `filesystem` write related commands and `dialog` commands to enable programatic access to files selected by the user.",
53
"default": "",
54
"type": "string"
55
},
···
70
"type": "boolean"
71
},
72
"windows": {
73
-
"description": "List of windows that are affected by this capability. Can be a glob pattern.\n\nOn multiwebview windows, prefer [`Self::webviews`] for a fine grained access control.\n\n## Example\n\n`[\"main\"]`",
74
"type": "array",
75
"items": {
76
"type": "string"
77
}
78
},
79
"webviews": {
80
-
"description": "List of webviews that are affected by this capability. Can be a glob pattern.\n\nThis is only required when using on multiwebview contexts, by default all child webviews of a window that matches [`Self::windows`] are linked.\n\n## Example\n\n`[\"sub-webview-one\", \"sub-webview-two\"]`",
81
"type": "array",
82
"items": {
83
"type": "string"
84
}
85
},
86
"permissions": {
87
-
"description": "List of permissions attached to this capability.\n\nMust include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`. For commands directly implemented in the application itself only `${permission-name}` is required.\n\n## Example\n\n```json [ \"core:default\", \"shell:allow-open\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] } ```",
88
"type": "array",
89
"items": {
90
"$ref": "#/definitions/PermissionEntry"
···
140
"identifier": {
141
"anyOf": [
142
{
143
-
"description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n",
144
"type": "string",
145
-
"const": "http:default"
146
},
147
{
148
"description": "Enables the fetch command without any pre-configured scope.",
149
"type": "string",
150
-
"const": "http:allow-fetch"
151
},
152
{
153
"description": "Enables the fetch_cancel command without any pre-configured scope.",
154
"type": "string",
155
-
"const": "http:allow-fetch-cancel"
156
},
157
{
158
"description": "Enables the fetch_read_body command without any pre-configured scope.",
159
"type": "string",
160
-
"const": "http:allow-fetch-read-body"
161
},
162
{
163
"description": "Enables the fetch_send command without any pre-configured scope.",
164
"type": "string",
165
-
"const": "http:allow-fetch-send"
166
},
167
{
168
"description": "Denies the fetch command without any pre-configured scope.",
169
"type": "string",
170
-
"const": "http:deny-fetch"
171
},
172
{
173
"description": "Denies the fetch_cancel command without any pre-configured scope.",
174
"type": "string",
175
-
"const": "http:deny-fetch-cancel"
176
},
177
{
178
"description": "Denies the fetch_read_body command without any pre-configured scope.",
179
"type": "string",
180
-
"const": "http:deny-fetch-read-body"
181
},
182
{
183
"description": "Denies the fetch_send command without any pre-configured scope.",
184
"type": "string",
185
-
"const": "http:deny-fetch-send"
186
}
187
]
188
}
···
257
"identifier": {
258
"anyOf": [
259
{
260
-
"description": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality without any specific\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n",
261
"type": "string",
262
-
"const": "shell:default"
263
},
264
{
265
"description": "Enables the execute command without any pre-configured scope.",
266
"type": "string",
267
-
"const": "shell:allow-execute"
268
},
269
{
270
"description": "Enables the kill command without any pre-configured scope.",
271
"type": "string",
272
-
"const": "shell:allow-kill"
273
},
274
{
275
"description": "Enables the open command without any pre-configured scope.",
276
"type": "string",
277
-
"const": "shell:allow-open"
278
},
279
{
280
"description": "Enables the spawn command without any pre-configured scope.",
281
"type": "string",
282
-
"const": "shell:allow-spawn"
283
},
284
{
285
"description": "Enables the stdin_write command without any pre-configured scope.",
286
"type": "string",
287
-
"const": "shell:allow-stdin-write"
288
},
289
{
290
"description": "Denies the execute command without any pre-configured scope.",
291
"type": "string",
292
-
"const": "shell:deny-execute"
293
},
294
{
295
"description": "Denies the kill command without any pre-configured scope.",
296
"type": "string",
297
-
"const": "shell:deny-kill"
298
},
299
{
300
"description": "Denies the open command without any pre-configured scope.",
301
"type": "string",
302
-
"const": "shell:deny-open"
303
},
304
{
305
"description": "Denies the spawn command without any pre-configured scope.",
306
"type": "string",
307
-
"const": "shell:deny-spawn"
308
},
309
{
310
"description": "Denies the stdin_write command without any pre-configured scope.",
311
"type": "string",
312
-
"const": "shell:deny-stdin-write"
313
}
314
]
315
}
···
493
"description": "Permission identifier",
494
"oneOf": [
495
{
496
-
"description": "Default core plugins set which includes:\n- 'core:path:default'\n- 'core:event:default'\n- 'core:window:default'\n- 'core:webview:default'\n- 'core:app:default'\n- 'core:image:default'\n- 'core:resources:default'\n- 'core:menu:default'\n- 'core:tray:default'\n",
497
"type": "string",
498
-
"const": "core:default"
499
},
500
{
501
-
"description": "Default permissions for the plugin.",
502
"type": "string",
503
-
"const": "core:app:default"
504
},
505
{
506
"description": "Enables the app_hide command without any pre-configured scope.",
507
"type": "string",
508
-
"const": "core:app:allow-app-hide"
509
},
510
{
511
"description": "Enables the app_show command without any pre-configured scope.",
512
"type": "string",
513
-
"const": "core:app:allow-app-show"
514
},
515
{
516
"description": "Enables the default_window_icon command without any pre-configured scope.",
517
"type": "string",
518
-
"const": "core:app:allow-default-window-icon"
519
},
520
{
521
"description": "Enables the name command without any pre-configured scope.",
522
"type": "string",
523
-
"const": "core:app:allow-name"
524
},
525
{
526
"description": "Enables the set_app_theme command without any pre-configured scope.",
527
"type": "string",
528
-
"const": "core:app:allow-set-app-theme"
529
},
530
{
531
"description": "Enables the tauri_version command without any pre-configured scope.",
532
"type": "string",
533
-
"const": "core:app:allow-tauri-version"
534
},
535
{
536
"description": "Enables the version command without any pre-configured scope.",
537
"type": "string",
538
-
"const": "core:app:allow-version"
539
},
540
{
541
"description": "Denies the app_hide command without any pre-configured scope.",
542
"type": "string",
543
-
"const": "core:app:deny-app-hide"
544
},
545
{
546
"description": "Denies the app_show command without any pre-configured scope.",
547
"type": "string",
548
-
"const": "core:app:deny-app-show"
549
},
550
{
551
"description": "Denies the default_window_icon command without any pre-configured scope.",
552
"type": "string",
553
-
"const": "core:app:deny-default-window-icon"
554
},
555
{
556
"description": "Denies the name command without any pre-configured scope.",
557
"type": "string",
558
-
"const": "core:app:deny-name"
559
},
560
{
561
"description": "Denies the set_app_theme command without any pre-configured scope.",
562
"type": "string",
563
-
"const": "core:app:deny-set-app-theme"
564
},
565
{
566
"description": "Denies the tauri_version command without any pre-configured scope.",
567
"type": "string",
568
-
"const": "core:app:deny-tauri-version"
569
},
570
{
571
"description": "Denies the version command without any pre-configured scope.",
572
"type": "string",
573
-
"const": "core:app:deny-version"
574
},
575
{
576
-
"description": "Default permissions for the plugin.",
577
"type": "string",
578
-
"const": "core:event:default"
579
},
580
{
581
"description": "Enables the emit command without any pre-configured scope.",
582
"type": "string",
583
-
"const": "core:event:allow-emit"
584
},
585
{
586
"description": "Enables the emit_to command without any pre-configured scope.",
587
"type": "string",
588
-
"const": "core:event:allow-emit-to"
589
},
590
{
591
"description": "Enables the listen command without any pre-configured scope.",
592
"type": "string",
593
-
"const": "core:event:allow-listen"
594
},
595
{
596
"description": "Enables the unlisten command without any pre-configured scope.",
597
"type": "string",
598
-
"const": "core:event:allow-unlisten"
599
},
600
{
601
"description": "Denies the emit command without any pre-configured scope.",
602
"type": "string",
603
-
"const": "core:event:deny-emit"
604
},
605
{
606
"description": "Denies the emit_to command without any pre-configured scope.",
607
"type": "string",
608
-
"const": "core:event:deny-emit-to"
609
},
610
{
611
"description": "Denies the listen command without any pre-configured scope.",
612
"type": "string",
613
-
"const": "core:event:deny-listen"
614
},
615
{
616
"description": "Denies the unlisten command without any pre-configured scope.",
617
"type": "string",
618
-
"const": "core:event:deny-unlisten"
619
},
620
{
621
-
"description": "Default permissions for the plugin.",
622
"type": "string",
623
-
"const": "core:image:default"
624
},
625
{
626
"description": "Enables the from_bytes command without any pre-configured scope.",
627
"type": "string",
628
-
"const": "core:image:allow-from-bytes"
629
},
630
{
631
"description": "Enables the from_path command without any pre-configured scope.",
632
"type": "string",
633
-
"const": "core:image:allow-from-path"
634
},
635
{
636
"description": "Enables the new command without any pre-configured scope.",
637
"type": "string",
638
-
"const": "core:image:allow-new"
639
},
640
{
641
"description": "Enables the rgba command without any pre-configured scope.",
642
"type": "string",
643
-
"const": "core:image:allow-rgba"
644
},
645
{
646
"description": "Enables the size command without any pre-configured scope.",
647
"type": "string",
648
-
"const": "core:image:allow-size"
649
},
650
{
651
"description": "Denies the from_bytes command without any pre-configured scope.",
652
"type": "string",
653
-
"const": "core:image:deny-from-bytes"
654
},
655
{
656
"description": "Denies the from_path command without any pre-configured scope.",
657
"type": "string",
658
-
"const": "core:image:deny-from-path"
659
},
660
{
661
"description": "Denies the new command without any pre-configured scope.",
662
"type": "string",
663
-
"const": "core:image:deny-new"
664
},
665
{
666
"description": "Denies the rgba command without any pre-configured scope.",
667
"type": "string",
668
-
"const": "core:image:deny-rgba"
669
},
670
{
671
"description": "Denies the size command without any pre-configured scope.",
672
"type": "string",
673
-
"const": "core:image:deny-size"
674
},
675
{
676
-
"description": "Default permissions for the plugin.",
677
"type": "string",
678
-
"const": "core:menu:default"
679
},
680
{
681
"description": "Enables the append command without any pre-configured scope.",
682
"type": "string",
683
-
"const": "core:menu:allow-append"
684
},
685
{
686
"description": "Enables the create_default command without any pre-configured scope.",
687
"type": "string",
688
-
"const": "core:menu:allow-create-default"
689
},
690
{
691
"description": "Enables the get command without any pre-configured scope.",
692
"type": "string",
693
-
"const": "core:menu:allow-get"
694
},
695
{
696
"description": "Enables the insert command without any pre-configured scope.",
697
"type": "string",
698
-
"const": "core:menu:allow-insert"
699
},
700
{
701
"description": "Enables the is_checked command without any pre-configured scope.",
702
"type": "string",
703
-
"const": "core:menu:allow-is-checked"
704
},
705
{
706
"description": "Enables the is_enabled command without any pre-configured scope.",
707
"type": "string",
708
-
"const": "core:menu:allow-is-enabled"
709
},
710
{
711
"description": "Enables the items command without any pre-configured scope.",
712
"type": "string",
713
-
"const": "core:menu:allow-items"
714
},
715
{
716
"description": "Enables the new command without any pre-configured scope.",
717
"type": "string",
718
-
"const": "core:menu:allow-new"
719
},
720
{
721
"description": "Enables the popup command without any pre-configured scope.",
722
"type": "string",
723
-
"const": "core:menu:allow-popup"
724
},
725
{
726
"description": "Enables the prepend command without any pre-configured scope.",
727
"type": "string",
728
-
"const": "core:menu:allow-prepend"
729
},
730
{
731
"description": "Enables the remove command without any pre-configured scope.",
732
"type": "string",
733
-
"const": "core:menu:allow-remove"
734
},
735
{
736
"description": "Enables the remove_at command without any pre-configured scope.",
737
"type": "string",
738
-
"const": "core:menu:allow-remove-at"
739
},
740
{
741
"description": "Enables the set_accelerator command without any pre-configured scope.",
742
"type": "string",
743
-
"const": "core:menu:allow-set-accelerator"
744
},
745
{
746
"description": "Enables the set_as_app_menu command without any pre-configured scope.",
747
"type": "string",
748
-
"const": "core:menu:allow-set-as-app-menu"
749
},
750
{
751
"description": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.",
752
"type": "string",
753
-
"const": "core:menu:allow-set-as-help-menu-for-nsapp"
754
},
755
{
756
"description": "Enables the set_as_window_menu command without any pre-configured scope.",
757
"type": "string",
758
-
"const": "core:menu:allow-set-as-window-menu"
759
},
760
{
761
"description": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
762
"type": "string",
763
-
"const": "core:menu:allow-set-as-windows-menu-for-nsapp"
764
},
765
{
766
"description": "Enables the set_checked command without any pre-configured scope.",
767
"type": "string",
768
-
"const": "core:menu:allow-set-checked"
769
},
770
{
771
"description": "Enables the set_enabled command without any pre-configured scope.",
772
"type": "string",
773
-
"const": "core:menu:allow-set-enabled"
774
},
775
{
776
"description": "Enables the set_icon command without any pre-configured scope.",
777
"type": "string",
778
-
"const": "core:menu:allow-set-icon"
779
},
780
{
781
"description": "Enables the set_text command without any pre-configured scope.",
782
"type": "string",
783
-
"const": "core:menu:allow-set-text"
784
},
785
{
786
"description": "Enables the text command without any pre-configured scope.",
787
"type": "string",
788
-
"const": "core:menu:allow-text"
789
},
790
{
791
"description": "Denies the append command without any pre-configured scope.",
792
"type": "string",
793
-
"const": "core:menu:deny-append"
794
},
795
{
796
"description": "Denies the create_default command without any pre-configured scope.",
797
"type": "string",
798
-
"const": "core:menu:deny-create-default"
799
},
800
{
801
"description": "Denies the get command without any pre-configured scope.",
802
"type": "string",
803
-
"const": "core:menu:deny-get"
804
},
805
{
806
"description": "Denies the insert command without any pre-configured scope.",
807
"type": "string",
808
-
"const": "core:menu:deny-insert"
809
},
810
{
811
"description": "Denies the is_checked command without any pre-configured scope.",
812
"type": "string",
813
-
"const": "core:menu:deny-is-checked"
814
},
815
{
816
"description": "Denies the is_enabled command without any pre-configured scope.",
817
"type": "string",
818
-
"const": "core:menu:deny-is-enabled"
819
},
820
{
821
"description": "Denies the items command without any pre-configured scope.",
822
"type": "string",
823
-
"const": "core:menu:deny-items"
824
},
825
{
826
"description": "Denies the new command without any pre-configured scope.",
827
"type": "string",
828
-
"const": "core:menu:deny-new"
829
},
830
{
831
"description": "Denies the popup command without any pre-configured scope.",
832
"type": "string",
833
-
"const": "core:menu:deny-popup"
834
},
835
{
836
"description": "Denies the prepend command without any pre-configured scope.",
837
"type": "string",
838
-
"const": "core:menu:deny-prepend"
839
},
840
{
841
"description": "Denies the remove command without any pre-configured scope.",
842
"type": "string",
843
-
"const": "core:menu:deny-remove"
844
},
845
{
846
"description": "Denies the remove_at command without any pre-configured scope.",
847
"type": "string",
848
-
"const": "core:menu:deny-remove-at"
849
},
850
{
851
"description": "Denies the set_accelerator command without any pre-configured scope.",
852
"type": "string",
853
-
"const": "core:menu:deny-set-accelerator"
854
},
855
{
856
"description": "Denies the set_as_app_menu command without any pre-configured scope.",
857
"type": "string",
858
-
"const": "core:menu:deny-set-as-app-menu"
859
},
860
{
861
"description": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.",
862
"type": "string",
863
-
"const": "core:menu:deny-set-as-help-menu-for-nsapp"
864
},
865
{
866
"description": "Denies the set_as_window_menu command without any pre-configured scope.",
867
"type": "string",
868
-
"const": "core:menu:deny-set-as-window-menu"
869
},
870
{
871
"description": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
872
"type": "string",
873
-
"const": "core:menu:deny-set-as-windows-menu-for-nsapp"
874
},
875
{
876
"description": "Denies the set_checked command without any pre-configured scope.",
877
"type": "string",
878
-
"const": "core:menu:deny-set-checked"
879
},
880
{
881
"description": "Denies the set_enabled command without any pre-configured scope.",
882
"type": "string",
883
-
"const": "core:menu:deny-set-enabled"
884
},
885
{
886
"description": "Denies the set_icon command without any pre-configured scope.",
887
"type": "string",
888
-
"const": "core:menu:deny-set-icon"
889
},
890
{
891
"description": "Denies the set_text command without any pre-configured scope.",
892
"type": "string",
893
-
"const": "core:menu:deny-set-text"
894
},
895
{
896
"description": "Denies the text command without any pre-configured scope.",
897
"type": "string",
898
-
"const": "core:menu:deny-text"
899
},
900
{
901
-
"description": "Default permissions for the plugin.",
902
"type": "string",
903
-
"const": "core:path:default"
904
},
905
{
906
"description": "Enables the basename command without any pre-configured scope.",
907
"type": "string",
908
-
"const": "core:path:allow-basename"
909
},
910
{
911
"description": "Enables the dirname command without any pre-configured scope.",
912
"type": "string",
913
-
"const": "core:path:allow-dirname"
914
},
915
{
916
"description": "Enables the extname command without any pre-configured scope.",
917
"type": "string",
918
-
"const": "core:path:allow-extname"
919
},
920
{
921
"description": "Enables the is_absolute command without any pre-configured scope.",
922
"type": "string",
923
-
"const": "core:path:allow-is-absolute"
924
},
925
{
926
"description": "Enables the join command without any pre-configured scope.",
927
"type": "string",
928
-
"const": "core:path:allow-join"
929
},
930
{
931
"description": "Enables the normalize command without any pre-configured scope.",
932
"type": "string",
933
-
"const": "core:path:allow-normalize"
934
},
935
{
936
"description": "Enables the resolve command without any pre-configured scope.",
937
"type": "string",
938
-
"const": "core:path:allow-resolve"
939
},
940
{
941
"description": "Enables the resolve_directory command without any pre-configured scope.",
942
"type": "string",
943
-
"const": "core:path:allow-resolve-directory"
944
},
945
{
946
"description": "Denies the basename command without any pre-configured scope.",
947
"type": "string",
948
-
"const": "core:path:deny-basename"
949
},
950
{
951
"description": "Denies the dirname command without any pre-configured scope.",
952
"type": "string",
953
-
"const": "core:path:deny-dirname"
954
},
955
{
956
"description": "Denies the extname command without any pre-configured scope.",
957
"type": "string",
958
-
"const": "core:path:deny-extname"
959
},
960
{
961
"description": "Denies the is_absolute command without any pre-configured scope.",
962
"type": "string",
963
-
"const": "core:path:deny-is-absolute"
964
},
965
{
966
"description": "Denies the join command without any pre-configured scope.",
967
"type": "string",
968
-
"const": "core:path:deny-join"
969
},
970
{
971
"description": "Denies the normalize command without any pre-configured scope.",
972
"type": "string",
973
-
"const": "core:path:deny-normalize"
974
},
975
{
976
"description": "Denies the resolve command without any pre-configured scope.",
977
"type": "string",
978
-
"const": "core:path:deny-resolve"
979
},
980
{
981
"description": "Denies the resolve_directory command without any pre-configured scope.",
982
"type": "string",
983
-
"const": "core:path:deny-resolve-directory"
984
},
985
{
986
-
"description": "Default permissions for the plugin.",
987
"type": "string",
988
-
"const": "core:resources:default"
989
},
990
{
991
"description": "Enables the close command without any pre-configured scope.",
992
"type": "string",
993
-
"const": "core:resources:allow-close"
994
},
995
{
996
"description": "Denies the close command without any pre-configured scope.",
997
"type": "string",
998
-
"const": "core:resources:deny-close"
999
},
1000
{
1001
-
"description": "Default permissions for the plugin.",
1002
"type": "string",
1003
-
"const": "core:tray:default"
1004
},
1005
{
1006
"description": "Enables the get_by_id command without any pre-configured scope.",
1007
"type": "string",
1008
-
"const": "core:tray:allow-get-by-id"
1009
},
1010
{
1011
"description": "Enables the new command without any pre-configured scope.",
1012
"type": "string",
1013
-
"const": "core:tray:allow-new"
1014
},
1015
{
1016
"description": "Enables the remove_by_id command without any pre-configured scope.",
1017
"type": "string",
1018
-
"const": "core:tray:allow-remove-by-id"
1019
},
1020
{
1021
"description": "Enables the set_icon command without any pre-configured scope.",
1022
"type": "string",
1023
-
"const": "core:tray:allow-set-icon"
1024
},
1025
{
1026
"description": "Enables the set_icon_as_template command without any pre-configured scope.",
1027
"type": "string",
1028
-
"const": "core:tray:allow-set-icon-as-template"
1029
},
1030
{
1031
"description": "Enables the set_menu command without any pre-configured scope.",
1032
"type": "string",
1033
-
"const": "core:tray:allow-set-menu"
1034
},
1035
{
1036
"description": "Enables the set_show_menu_on_left_click command without any pre-configured scope.",
1037
"type": "string",
1038
-
"const": "core:tray:allow-set-show-menu-on-left-click"
1039
},
1040
{
1041
"description": "Enables the set_temp_dir_path command without any pre-configured scope.",
1042
"type": "string",
1043
-
"const": "core:tray:allow-set-temp-dir-path"
1044
},
1045
{
1046
"description": "Enables the set_title command without any pre-configured scope.",
1047
"type": "string",
1048
-
"const": "core:tray:allow-set-title"
1049
},
1050
{
1051
"description": "Enables the set_tooltip command without any pre-configured scope.",
1052
"type": "string",
1053
-
"const": "core:tray:allow-set-tooltip"
1054
},
1055
{
1056
"description": "Enables the set_visible command without any pre-configured scope.",
1057
"type": "string",
1058
-
"const": "core:tray:allow-set-visible"
1059
},
1060
{
1061
"description": "Denies the get_by_id command without any pre-configured scope.",
1062
"type": "string",
1063
-
"const": "core:tray:deny-get-by-id"
1064
},
1065
{
1066
"description": "Denies the new command without any pre-configured scope.",
1067
"type": "string",
1068
-
"const": "core:tray:deny-new"
1069
},
1070
{
1071
"description": "Denies the remove_by_id command without any pre-configured scope.",
1072
"type": "string",
1073
-
"const": "core:tray:deny-remove-by-id"
1074
},
1075
{
1076
"description": "Denies the set_icon command without any pre-configured scope.",
1077
"type": "string",
1078
-
"const": "core:tray:deny-set-icon"
1079
},
1080
{
1081
"description": "Denies the set_icon_as_template command without any pre-configured scope.",
1082
"type": "string",
1083
-
"const": "core:tray:deny-set-icon-as-template"
1084
},
1085
{
1086
"description": "Denies the set_menu command without any pre-configured scope.",
1087
"type": "string",
1088
-
"const": "core:tray:deny-set-menu"
1089
},
1090
{
1091
"description": "Denies the set_show_menu_on_left_click command without any pre-configured scope.",
1092
"type": "string",
1093
-
"const": "core:tray:deny-set-show-menu-on-left-click"
1094
},
1095
{
1096
"description": "Denies the set_temp_dir_path command without any pre-configured scope.",
1097
"type": "string",
1098
-
"const": "core:tray:deny-set-temp-dir-path"
1099
},
1100
{
1101
"description": "Denies the set_title command without any pre-configured scope.",
1102
"type": "string",
1103
-
"const": "core:tray:deny-set-title"
1104
},
1105
{
1106
"description": "Denies the set_tooltip command without any pre-configured scope.",
1107
"type": "string",
1108
-
"const": "core:tray:deny-set-tooltip"
1109
},
1110
{
1111
"description": "Denies the set_visible command without any pre-configured scope.",
1112
"type": "string",
1113
-
"const": "core:tray:deny-set-visible"
1114
},
1115
{
1116
-
"description": "Default permissions for the plugin.",
1117
"type": "string",
1118
-
"const": "core:webview:default"
1119
},
1120
{
1121
"description": "Enables the clear_all_browsing_data command without any pre-configured scope.",
1122
"type": "string",
1123
-
"const": "core:webview:allow-clear-all-browsing-data"
1124
},
1125
{
1126
"description": "Enables the create_webview command without any pre-configured scope.",
1127
"type": "string",
1128
-
"const": "core:webview:allow-create-webview"
1129
},
1130
{
1131
"description": "Enables the create_webview_window command without any pre-configured scope.",
1132
"type": "string",
1133
-
"const": "core:webview:allow-create-webview-window"
1134
},
1135
{
1136
"description": "Enables the get_all_webviews command without any pre-configured scope.",
1137
"type": "string",
1138
-
"const": "core:webview:allow-get-all-webviews"
1139
},
1140
{
1141
"description": "Enables the internal_toggle_devtools command without any pre-configured scope.",
1142
"type": "string",
1143
-
"const": "core:webview:allow-internal-toggle-devtools"
1144
},
1145
{
1146
"description": "Enables the print command without any pre-configured scope.",
1147
"type": "string",
1148
-
"const": "core:webview:allow-print"
1149
},
1150
{
1151
"description": "Enables the reparent command without any pre-configured scope.",
1152
"type": "string",
1153
-
"const": "core:webview:allow-reparent"
1154
},
1155
{
1156
"description": "Enables the set_webview_focus command without any pre-configured scope.",
1157
"type": "string",
1158
-
"const": "core:webview:allow-set-webview-focus"
1159
},
1160
{
1161
"description": "Enables the set_webview_position command without any pre-configured scope.",
1162
"type": "string",
1163
-
"const": "core:webview:allow-set-webview-position"
1164
},
1165
{
1166
"description": "Enables the set_webview_size command without any pre-configured scope.",
1167
"type": "string",
1168
-
"const": "core:webview:allow-set-webview-size"
1169
},
1170
{
1171
"description": "Enables the set_webview_zoom command without any pre-configured scope.",
1172
"type": "string",
1173
-
"const": "core:webview:allow-set-webview-zoom"
1174
},
1175
{
1176
"description": "Enables the webview_close command without any pre-configured scope.",
1177
"type": "string",
1178
-
"const": "core:webview:allow-webview-close"
1179
},
1180
{
1181
"description": "Enables the webview_hide command without any pre-configured scope.",
1182
"type": "string",
1183
-
"const": "core:webview:allow-webview-hide"
1184
},
1185
{
1186
"description": "Enables the webview_position command without any pre-configured scope.",
1187
"type": "string",
1188
-
"const": "core:webview:allow-webview-position"
1189
},
1190
{
1191
"description": "Enables the webview_show command without any pre-configured scope.",
1192
"type": "string",
1193
-
"const": "core:webview:allow-webview-show"
1194
},
1195
{
1196
"description": "Enables the webview_size command without any pre-configured scope.",
1197
"type": "string",
1198
-
"const": "core:webview:allow-webview-size"
1199
},
1200
{
1201
"description": "Denies the clear_all_browsing_data command without any pre-configured scope.",
1202
"type": "string",
1203
-
"const": "core:webview:deny-clear-all-browsing-data"
1204
},
1205
{
1206
"description": "Denies the create_webview command without any pre-configured scope.",
1207
"type": "string",
1208
-
"const": "core:webview:deny-create-webview"
1209
},
1210
{
1211
"description": "Denies the create_webview_window command without any pre-configured scope.",
1212
"type": "string",
1213
-
"const": "core:webview:deny-create-webview-window"
1214
},
1215
{
1216
"description": "Denies the get_all_webviews command without any pre-configured scope.",
1217
"type": "string",
1218
-
"const": "core:webview:deny-get-all-webviews"
1219
},
1220
{
1221
"description": "Denies the internal_toggle_devtools command without any pre-configured scope.",
1222
"type": "string",
1223
-
"const": "core:webview:deny-internal-toggle-devtools"
1224
},
1225
{
1226
"description": "Denies the print command without any pre-configured scope.",
1227
"type": "string",
1228
-
"const": "core:webview:deny-print"
1229
},
1230
{
1231
"description": "Denies the reparent command without any pre-configured scope.",
1232
"type": "string",
1233
-
"const": "core:webview:deny-reparent"
1234
},
1235
{
1236
"description": "Denies the set_webview_focus command without any pre-configured scope.",
1237
"type": "string",
1238
-
"const": "core:webview:deny-set-webview-focus"
1239
},
1240
{
1241
"description": "Denies the set_webview_position command without any pre-configured scope.",
1242
"type": "string",
1243
-
"const": "core:webview:deny-set-webview-position"
1244
},
1245
{
1246
"description": "Denies the set_webview_size command without any pre-configured scope.",
1247
"type": "string",
1248
-
"const": "core:webview:deny-set-webview-size"
1249
},
1250
{
1251
"description": "Denies the set_webview_zoom command without any pre-configured scope.",
1252
"type": "string",
1253
-
"const": "core:webview:deny-set-webview-zoom"
1254
},
1255
{
1256
"description": "Denies the webview_close command without any pre-configured scope.",
1257
"type": "string",
1258
-
"const": "core:webview:deny-webview-close"
1259
},
1260
{
1261
"description": "Denies the webview_hide command without any pre-configured scope.",
1262
"type": "string",
1263
-
"const": "core:webview:deny-webview-hide"
1264
},
1265
{
1266
"description": "Denies the webview_position command without any pre-configured scope.",
1267
"type": "string",
1268
-
"const": "core:webview:deny-webview-position"
1269
},
1270
{
1271
"description": "Denies the webview_show command without any pre-configured scope.",
1272
"type": "string",
1273
-
"const": "core:webview:deny-webview-show"
1274
},
1275
{
1276
"description": "Denies the webview_size command without any pre-configured scope.",
1277
"type": "string",
1278
-
"const": "core:webview:deny-webview-size"
1279
},
1280
{
1281
-
"description": "Default permissions for the plugin.",
1282
"type": "string",
1283
-
"const": "core:window:default"
1284
},
1285
{
1286
"description": "Enables the available_monitors command without any pre-configured scope.",
1287
"type": "string",
1288
-
"const": "core:window:allow-available-monitors"
1289
},
1290
{
1291
"description": "Enables the center command without any pre-configured scope.",
1292
"type": "string",
1293
-
"const": "core:window:allow-center"
1294
},
1295
{
1296
"description": "Enables the close command without any pre-configured scope.",
1297
"type": "string",
1298
-
"const": "core:window:allow-close"
1299
},
1300
{
1301
"description": "Enables the create command without any pre-configured scope.",
1302
"type": "string",
1303
-
"const": "core:window:allow-create"
1304
},
1305
{
1306
"description": "Enables the current_monitor command without any pre-configured scope.",
1307
"type": "string",
1308
-
"const": "core:window:allow-current-monitor"
1309
},
1310
{
1311
"description": "Enables the cursor_position command without any pre-configured scope.",
1312
"type": "string",
1313
-
"const": "core:window:allow-cursor-position"
1314
},
1315
{
1316
"description": "Enables the destroy command without any pre-configured scope.",
1317
"type": "string",
1318
-
"const": "core:window:allow-destroy"
1319
},
1320
{
1321
"description": "Enables the get_all_windows command without any pre-configured scope.",
1322
"type": "string",
1323
-
"const": "core:window:allow-get-all-windows"
1324
},
1325
{
1326
"description": "Enables the hide command without any pre-configured scope.",
1327
"type": "string",
1328
-
"const": "core:window:allow-hide"
1329
},
1330
{
1331
"description": "Enables the inner_position command without any pre-configured scope.",
1332
"type": "string",
1333
-
"const": "core:window:allow-inner-position"
1334
},
1335
{
1336
"description": "Enables the inner_size command without any pre-configured scope.",
1337
"type": "string",
1338
-
"const": "core:window:allow-inner-size"
1339
},
1340
{
1341
"description": "Enables the internal_toggle_maximize command without any pre-configured scope.",
1342
"type": "string",
1343
-
"const": "core:window:allow-internal-toggle-maximize"
1344
},
1345
{
1346
"description": "Enables the is_closable command without any pre-configured scope.",
1347
"type": "string",
1348
-
"const": "core:window:allow-is-closable"
1349
},
1350
{
1351
"description": "Enables the is_decorated command without any pre-configured scope.",
1352
"type": "string",
1353
-
"const": "core:window:allow-is-decorated"
1354
},
1355
{
1356
"description": "Enables the is_enabled command without any pre-configured scope.",
1357
"type": "string",
1358
-
"const": "core:window:allow-is-enabled"
1359
},
1360
{
1361
"description": "Enables the is_focused command without any pre-configured scope.",
1362
"type": "string",
1363
-
"const": "core:window:allow-is-focused"
1364
},
1365
{
1366
"description": "Enables the is_fullscreen command without any pre-configured scope.",
1367
"type": "string",
1368
-
"const": "core:window:allow-is-fullscreen"
1369
},
1370
{
1371
"description": "Enables the is_maximizable command without any pre-configured scope.",
1372
"type": "string",
1373
-
"const": "core:window:allow-is-maximizable"
1374
},
1375
{
1376
"description": "Enables the is_maximized command without any pre-configured scope.",
1377
"type": "string",
1378
-
"const": "core:window:allow-is-maximized"
1379
},
1380
{
1381
"description": "Enables the is_minimizable command without any pre-configured scope.",
1382
"type": "string",
1383
-
"const": "core:window:allow-is-minimizable"
1384
},
1385
{
1386
"description": "Enables the is_minimized command without any pre-configured scope.",
1387
"type": "string",
1388
-
"const": "core:window:allow-is-minimized"
1389
},
1390
{
1391
"description": "Enables the is_resizable command without any pre-configured scope.",
1392
"type": "string",
1393
-
"const": "core:window:allow-is-resizable"
1394
},
1395
{
1396
"description": "Enables the is_visible command without any pre-configured scope.",
1397
"type": "string",
1398
-
"const": "core:window:allow-is-visible"
1399
},
1400
{
1401
"description": "Enables the maximize command without any pre-configured scope.",
1402
"type": "string",
1403
-
"const": "core:window:allow-maximize"
1404
},
1405
{
1406
"description": "Enables the minimize command without any pre-configured scope.",
1407
"type": "string",
1408
-
"const": "core:window:allow-minimize"
1409
},
1410
{
1411
"description": "Enables the monitor_from_point command without any pre-configured scope.",
1412
"type": "string",
1413
-
"const": "core:window:allow-monitor-from-point"
1414
},
1415
{
1416
"description": "Enables the outer_position command without any pre-configured scope.",
1417
"type": "string",
1418
-
"const": "core:window:allow-outer-position"
1419
},
1420
{
1421
"description": "Enables the outer_size command without any pre-configured scope.",
1422
"type": "string",
1423
-
"const": "core:window:allow-outer-size"
1424
},
1425
{
1426
"description": "Enables the primary_monitor command without any pre-configured scope.",
1427
"type": "string",
1428
-
"const": "core:window:allow-primary-monitor"
1429
},
1430
{
1431
"description": "Enables the request_user_attention command without any pre-configured scope.",
1432
"type": "string",
1433
-
"const": "core:window:allow-request-user-attention"
1434
},
1435
{
1436
"description": "Enables the scale_factor command without any pre-configured scope.",
1437
"type": "string",
1438
-
"const": "core:window:allow-scale-factor"
1439
},
1440
{
1441
"description": "Enables the set_always_on_bottom command without any pre-configured scope.",
1442
"type": "string",
1443
-
"const": "core:window:allow-set-always-on-bottom"
1444
},
1445
{
1446
"description": "Enables the set_always_on_top command without any pre-configured scope.",
1447
"type": "string",
1448
-
"const": "core:window:allow-set-always-on-top"
1449
},
1450
{
1451
"description": "Enables the set_closable command without any pre-configured scope.",
1452
"type": "string",
1453
-
"const": "core:window:allow-set-closable"
1454
},
1455
{
1456
"description": "Enables the set_content_protected command without any pre-configured scope.",
1457
"type": "string",
1458
-
"const": "core:window:allow-set-content-protected"
1459
},
1460
{
1461
"description": "Enables the set_cursor_grab command without any pre-configured scope.",
1462
"type": "string",
1463
-
"const": "core:window:allow-set-cursor-grab"
1464
},
1465
{
1466
"description": "Enables the set_cursor_icon command without any pre-configured scope.",
1467
"type": "string",
1468
-
"const": "core:window:allow-set-cursor-icon"
1469
},
1470
{
1471
"description": "Enables the set_cursor_position command without any pre-configured scope.",
1472
"type": "string",
1473
-
"const": "core:window:allow-set-cursor-position"
1474
},
1475
{
1476
"description": "Enables the set_cursor_visible command without any pre-configured scope.",
1477
"type": "string",
1478
-
"const": "core:window:allow-set-cursor-visible"
1479
},
1480
{
1481
"description": "Enables the set_decorations command without any pre-configured scope.",
1482
"type": "string",
1483
-
"const": "core:window:allow-set-decorations"
1484
},
1485
{
1486
"description": "Enables the set_effects command without any pre-configured scope.",
1487
"type": "string",
1488
-
"const": "core:window:allow-set-effects"
1489
},
1490
{
1491
"description": "Enables the set_enabled command without any pre-configured scope.",
1492
"type": "string",
1493
-
"const": "core:window:allow-set-enabled"
1494
},
1495
{
1496
"description": "Enables the set_focus command without any pre-configured scope.",
1497
"type": "string",
1498
-
"const": "core:window:allow-set-focus"
1499
},
1500
{
1501
"description": "Enables the set_fullscreen command without any pre-configured scope.",
1502
"type": "string",
1503
-
"const": "core:window:allow-set-fullscreen"
1504
},
1505
{
1506
"description": "Enables the set_icon command without any pre-configured scope.",
1507
"type": "string",
1508
-
"const": "core:window:allow-set-icon"
1509
},
1510
{
1511
"description": "Enables the set_ignore_cursor_events command without any pre-configured scope.",
1512
"type": "string",
1513
-
"const": "core:window:allow-set-ignore-cursor-events"
1514
},
1515
{
1516
"description": "Enables the set_max_size command without any pre-configured scope.",
1517
"type": "string",
1518
-
"const": "core:window:allow-set-max-size"
1519
},
1520
{
1521
"description": "Enables the set_maximizable command without any pre-configured scope.",
1522
"type": "string",
1523
-
"const": "core:window:allow-set-maximizable"
1524
},
1525
{
1526
"description": "Enables the set_min_size command without any pre-configured scope.",
1527
"type": "string",
1528
-
"const": "core:window:allow-set-min-size"
1529
},
1530
{
1531
"description": "Enables the set_minimizable command without any pre-configured scope.",
1532
"type": "string",
1533
-
"const": "core:window:allow-set-minimizable"
1534
},
1535
{
1536
"description": "Enables the set_position command without any pre-configured scope.",
1537
"type": "string",
1538
-
"const": "core:window:allow-set-position"
1539
},
1540
{
1541
"description": "Enables the set_progress_bar command without any pre-configured scope.",
1542
"type": "string",
1543
-
"const": "core:window:allow-set-progress-bar"
1544
},
1545
{
1546
"description": "Enables the set_resizable command without any pre-configured scope.",
1547
"type": "string",
1548
-
"const": "core:window:allow-set-resizable"
1549
},
1550
{
1551
"description": "Enables the set_shadow command without any pre-configured scope.",
1552
"type": "string",
1553
-
"const": "core:window:allow-set-shadow"
1554
},
1555
{
1556
"description": "Enables the set_size command without any pre-configured scope.",
1557
"type": "string",
1558
-
"const": "core:window:allow-set-size"
1559
},
1560
{
1561
"description": "Enables the set_size_constraints command without any pre-configured scope.",
1562
"type": "string",
1563
-
"const": "core:window:allow-set-size-constraints"
1564
},
1565
{
1566
"description": "Enables the set_skip_taskbar command without any pre-configured scope.",
1567
"type": "string",
1568
-
"const": "core:window:allow-set-skip-taskbar"
1569
},
1570
{
1571
"description": "Enables the set_theme command without any pre-configured scope.",
1572
"type": "string",
1573
-
"const": "core:window:allow-set-theme"
1574
},
1575
{
1576
"description": "Enables the set_title command without any pre-configured scope.",
1577
"type": "string",
1578
-
"const": "core:window:allow-set-title"
1579
},
1580
{
1581
"description": "Enables the set_title_bar_style command without any pre-configured scope.",
1582
"type": "string",
1583
-
"const": "core:window:allow-set-title-bar-style"
1584
},
1585
{
1586
"description": "Enables the set_visible_on_all_workspaces command without any pre-configured scope.",
1587
"type": "string",
1588
-
"const": "core:window:allow-set-visible-on-all-workspaces"
1589
},
1590
{
1591
"description": "Enables the show command without any pre-configured scope.",
1592
"type": "string",
1593
-
"const": "core:window:allow-show"
1594
},
1595
{
1596
"description": "Enables the start_dragging command without any pre-configured scope.",
1597
"type": "string",
1598
-
"const": "core:window:allow-start-dragging"
1599
},
1600
{
1601
"description": "Enables the start_resize_dragging command without any pre-configured scope.",
1602
"type": "string",
1603
-
"const": "core:window:allow-start-resize-dragging"
1604
},
1605
{
1606
"description": "Enables the theme command without any pre-configured scope.",
1607
"type": "string",
1608
-
"const": "core:window:allow-theme"
1609
},
1610
{
1611
"description": "Enables the title command without any pre-configured scope.",
1612
"type": "string",
1613
-
"const": "core:window:allow-title"
1614
},
1615
{
1616
"description": "Enables the toggle_maximize command without any pre-configured scope.",
1617
"type": "string",
1618
-
"const": "core:window:allow-toggle-maximize"
1619
},
1620
{
1621
"description": "Enables the unmaximize command without any pre-configured scope.",
1622
"type": "string",
1623
-
"const": "core:window:allow-unmaximize"
1624
},
1625
{
1626
"description": "Enables the unminimize command without any pre-configured scope.",
1627
"type": "string",
1628
-
"const": "core:window:allow-unminimize"
1629
},
1630
{
1631
"description": "Denies the available_monitors command without any pre-configured scope.",
1632
"type": "string",
1633
-
"const": "core:window:deny-available-monitors"
1634
},
1635
{
1636
"description": "Denies the center command without any pre-configured scope.",
1637
"type": "string",
1638
-
"const": "core:window:deny-center"
1639
},
1640
{
1641
"description": "Denies the close command without any pre-configured scope.",
1642
"type": "string",
1643
-
"const": "core:window:deny-close"
1644
},
1645
{
1646
"description": "Denies the create command without any pre-configured scope.",
1647
"type": "string",
1648
-
"const": "core:window:deny-create"
1649
},
1650
{
1651
"description": "Denies the current_monitor command without any pre-configured scope.",
1652
"type": "string",
1653
-
"const": "core:window:deny-current-monitor"
1654
},
1655
{
1656
"description": "Denies the cursor_position command without any pre-configured scope.",
1657
"type": "string",
1658
-
"const": "core:window:deny-cursor-position"
1659
},
1660
{
1661
"description": "Denies the destroy command without any pre-configured scope.",
1662
"type": "string",
1663
-
"const": "core:window:deny-destroy"
1664
},
1665
{
1666
"description": "Denies the get_all_windows command without any pre-configured scope.",
1667
"type": "string",
1668
-
"const": "core:window:deny-get-all-windows"
1669
},
1670
{
1671
"description": "Denies the hide command without any pre-configured scope.",
1672
"type": "string",
1673
-
"const": "core:window:deny-hide"
1674
},
1675
{
1676
"description": "Denies the inner_position command without any pre-configured scope.",
1677
"type": "string",
1678
-
"const": "core:window:deny-inner-position"
1679
},
1680
{
1681
"description": "Denies the inner_size command without any pre-configured scope.",
1682
"type": "string",
1683
-
"const": "core:window:deny-inner-size"
1684
},
1685
{
1686
"description": "Denies the internal_toggle_maximize command without any pre-configured scope.",
1687
"type": "string",
1688
-
"const": "core:window:deny-internal-toggle-maximize"
1689
},
1690
{
1691
"description": "Denies the is_closable command without any pre-configured scope.",
1692
"type": "string",
1693
-
"const": "core:window:deny-is-closable"
1694
},
1695
{
1696
"description": "Denies the is_decorated command without any pre-configured scope.",
1697
"type": "string",
1698
-
"const": "core:window:deny-is-decorated"
1699
},
1700
{
1701
"description": "Denies the is_enabled command without any pre-configured scope.",
1702
"type": "string",
1703
-
"const": "core:window:deny-is-enabled"
1704
},
1705
{
1706
"description": "Denies the is_focused command without any pre-configured scope.",
1707
"type": "string",
1708
-
"const": "core:window:deny-is-focused"
1709
},
1710
{
1711
"description": "Denies the is_fullscreen command without any pre-configured scope.",
1712
"type": "string",
1713
-
"const": "core:window:deny-is-fullscreen"
1714
},
1715
{
1716
"description": "Denies the is_maximizable command without any pre-configured scope.",
1717
"type": "string",
1718
-
"const": "core:window:deny-is-maximizable"
1719
},
1720
{
1721
"description": "Denies the is_maximized command without any pre-configured scope.",
1722
"type": "string",
1723
-
"const": "core:window:deny-is-maximized"
1724
},
1725
{
1726
"description": "Denies the is_minimizable command without any pre-configured scope.",
1727
"type": "string",
1728
-
"const": "core:window:deny-is-minimizable"
1729
},
1730
{
1731
"description": "Denies the is_minimized command without any pre-configured scope.",
1732
"type": "string",
1733
-
"const": "core:window:deny-is-minimized"
1734
},
1735
{
1736
"description": "Denies the is_resizable command without any pre-configured scope.",
1737
"type": "string",
1738
-
"const": "core:window:deny-is-resizable"
1739
},
1740
{
1741
"description": "Denies the is_visible command without any pre-configured scope.",
1742
"type": "string",
1743
-
"const": "core:window:deny-is-visible"
1744
},
1745
{
1746
"description": "Denies the maximize command without any pre-configured scope.",
1747
"type": "string",
1748
-
"const": "core:window:deny-maximize"
1749
},
1750
{
1751
"description": "Denies the minimize command without any pre-configured scope.",
1752
"type": "string",
1753
-
"const": "core:window:deny-minimize"
1754
},
1755
{
1756
"description": "Denies the monitor_from_point command without any pre-configured scope.",
1757
"type": "string",
1758
-
"const": "core:window:deny-monitor-from-point"
1759
},
1760
{
1761
"description": "Denies the outer_position command without any pre-configured scope.",
1762
"type": "string",
1763
-
"const": "core:window:deny-outer-position"
1764
},
1765
{
1766
"description": "Denies the outer_size command without any pre-configured scope.",
1767
"type": "string",
1768
-
"const": "core:window:deny-outer-size"
1769
},
1770
{
1771
"description": "Denies the primary_monitor command without any pre-configured scope.",
1772
"type": "string",
1773
-
"const": "core:window:deny-primary-monitor"
1774
},
1775
{
1776
"description": "Denies the request_user_attention command without any pre-configured scope.",
1777
"type": "string",
1778
-
"const": "core:window:deny-request-user-attention"
1779
},
1780
{
1781
"description": "Denies the scale_factor command without any pre-configured scope.",
1782
"type": "string",
1783
-
"const": "core:window:deny-scale-factor"
1784
},
1785
{
1786
"description": "Denies the set_always_on_bottom command without any pre-configured scope.",
1787
"type": "string",
1788
-
"const": "core:window:deny-set-always-on-bottom"
1789
},
1790
{
1791
"description": "Denies the set_always_on_top command without any pre-configured scope.",
1792
"type": "string",
1793
-
"const": "core:window:deny-set-always-on-top"
1794
},
1795
{
1796
"description": "Denies the set_closable command without any pre-configured scope.",
1797
"type": "string",
1798
-
"const": "core:window:deny-set-closable"
1799
},
1800
{
1801
"description": "Denies the set_content_protected command without any pre-configured scope.",
1802
"type": "string",
1803
-
"const": "core:window:deny-set-content-protected"
1804
},
1805
{
1806
"description": "Denies the set_cursor_grab command without any pre-configured scope.",
1807
"type": "string",
1808
-
"const": "core:window:deny-set-cursor-grab"
1809
},
1810
{
1811
"description": "Denies the set_cursor_icon command without any pre-configured scope.",
1812
"type": "string",
1813
-
"const": "core:window:deny-set-cursor-icon"
1814
},
1815
{
1816
"description": "Denies the set_cursor_position command without any pre-configured scope.",
1817
"type": "string",
1818
-
"const": "core:window:deny-set-cursor-position"
1819
},
1820
{
1821
"description": "Denies the set_cursor_visible command without any pre-configured scope.",
1822
"type": "string",
1823
-
"const": "core:window:deny-set-cursor-visible"
1824
},
1825
{
1826
"description": "Denies the set_decorations command without any pre-configured scope.",
1827
"type": "string",
1828
-
"const": "core:window:deny-set-decorations"
1829
},
1830
{
1831
"description": "Denies the set_effects command without any pre-configured scope.",
1832
"type": "string",
1833
-
"const": "core:window:deny-set-effects"
1834
},
1835
{
1836
"description": "Denies the set_enabled command without any pre-configured scope.",
1837
"type": "string",
1838
-
"const": "core:window:deny-set-enabled"
1839
},
1840
{
1841
"description": "Denies the set_focus command without any pre-configured scope.",
1842
"type": "string",
1843
-
"const": "core:window:deny-set-focus"
1844
},
1845
{
1846
"description": "Denies the set_fullscreen command without any pre-configured scope.",
1847
"type": "string",
1848
-
"const": "core:window:deny-set-fullscreen"
1849
},
1850
{
1851
"description": "Denies the set_icon command without any pre-configured scope.",
1852
"type": "string",
1853
-
"const": "core:window:deny-set-icon"
1854
},
1855
{
1856
"description": "Denies the set_ignore_cursor_events command without any pre-configured scope.",
1857
"type": "string",
1858
-
"const": "core:window:deny-set-ignore-cursor-events"
1859
},
1860
{
1861
"description": "Denies the set_max_size command without any pre-configured scope.",
1862
"type": "string",
1863
-
"const": "core:window:deny-set-max-size"
1864
},
1865
{
1866
"description": "Denies the set_maximizable command without any pre-configured scope.",
1867
"type": "string",
1868
-
"const": "core:window:deny-set-maximizable"
1869
},
1870
{
1871
"description": "Denies the set_min_size command without any pre-configured scope.",
1872
"type": "string",
1873
-
"const": "core:window:deny-set-min-size"
1874
},
1875
{
1876
"description": "Denies the set_minimizable command without any pre-configured scope.",
1877
"type": "string",
1878
-
"const": "core:window:deny-set-minimizable"
1879
},
1880
{
1881
"description": "Denies the set_position command without any pre-configured scope.",
1882
"type": "string",
1883
-
"const": "core:window:deny-set-position"
1884
},
1885
{
1886
"description": "Denies the set_progress_bar command without any pre-configured scope.",
1887
"type": "string",
1888
-
"const": "core:window:deny-set-progress-bar"
1889
},
1890
{
1891
"description": "Denies the set_resizable command without any pre-configured scope.",
1892
"type": "string",
1893
-
"const": "core:window:deny-set-resizable"
1894
},
1895
{
1896
"description": "Denies the set_shadow command without any pre-configured scope.",
1897
"type": "string",
1898
-
"const": "core:window:deny-set-shadow"
1899
},
1900
{
1901
"description": "Denies the set_size command without any pre-configured scope.",
1902
"type": "string",
1903
-
"const": "core:window:deny-set-size"
1904
},
1905
{
1906
"description": "Denies the set_size_constraints command without any pre-configured scope.",
1907
"type": "string",
1908
-
"const": "core:window:deny-set-size-constraints"
1909
},
1910
{
1911
"description": "Denies the set_skip_taskbar command without any pre-configured scope.",
1912
"type": "string",
1913
-
"const": "core:window:deny-set-skip-taskbar"
1914
},
1915
{
1916
"description": "Denies the set_theme command without any pre-configured scope.",
1917
"type": "string",
1918
-
"const": "core:window:deny-set-theme"
1919
},
1920
{
1921
"description": "Denies the set_title command without any pre-configured scope.",
1922
"type": "string",
1923
-
"const": "core:window:deny-set-title"
1924
},
1925
{
1926
"description": "Denies the set_title_bar_style command without any pre-configured scope.",
1927
"type": "string",
1928
-
"const": "core:window:deny-set-title-bar-style"
1929
},
1930
{
1931
"description": "Denies the set_visible_on_all_workspaces command without any pre-configured scope.",
1932
"type": "string",
1933
-
"const": "core:window:deny-set-visible-on-all-workspaces"
1934
},
1935
{
1936
"description": "Denies the show command without any pre-configured scope.",
1937
"type": "string",
1938
-
"const": "core:window:deny-show"
1939
},
1940
{
1941
"description": "Denies the start_dragging command without any pre-configured scope.",
1942
"type": "string",
1943
-
"const": "core:window:deny-start-dragging"
1944
},
1945
{
1946
"description": "Denies the start_resize_dragging command without any pre-configured scope.",
1947
"type": "string",
1948
-
"const": "core:window:deny-start-resize-dragging"
1949
},
1950
{
1951
"description": "Denies the theme command without any pre-configured scope.",
1952
"type": "string",
1953
-
"const": "core:window:deny-theme"
1954
},
1955
{
1956
"description": "Denies the title command without any pre-configured scope.",
1957
"type": "string",
1958
-
"const": "core:window:deny-title"
1959
},
1960
{
1961
"description": "Denies the toggle_maximize command without any pre-configured scope.",
1962
"type": "string",
1963
-
"const": "core:window:deny-toggle-maximize"
1964
},
1965
{
1966
"description": "Denies the unmaximize command without any pre-configured scope.",
1967
"type": "string",
1968
-
"const": "core:window:deny-unmaximize"
1969
},
1970
{
1971
"description": "Denies the unminimize command without any pre-configured scope.",
1972
"type": "string",
1973
-
"const": "core:window:deny-unminimize"
1974
},
1975
{
1976
-
"description": "Allows reading the opened deep link via the get_current command",
1977
"type": "string",
1978
-
"const": "deep-link:default"
1979
},
1980
{
1981
"description": "Enables the get_current command without any pre-configured scope.",
1982
"type": "string",
1983
-
"const": "deep-link:allow-get-current"
1984
},
1985
{
1986
"description": "Enables the is_registered command without any pre-configured scope.",
1987
"type": "string",
1988
-
"const": "deep-link:allow-is-registered"
1989
},
1990
{
1991
"description": "Enables the register command without any pre-configured scope.",
1992
"type": "string",
1993
-
"const": "deep-link:allow-register"
1994
},
1995
{
1996
"description": "Enables the unregister command without any pre-configured scope.",
1997
"type": "string",
1998
-
"const": "deep-link:allow-unregister"
1999
},
2000
{
2001
"description": "Denies the get_current command without any pre-configured scope.",
2002
"type": "string",
2003
-
"const": "deep-link:deny-get-current"
2004
},
2005
{
2006
"description": "Denies the is_registered command without any pre-configured scope.",
2007
"type": "string",
2008
-
"const": "deep-link:deny-is-registered"
2009
},
2010
{
2011
"description": "Denies the register command without any pre-configured scope.",
2012
"type": "string",
2013
-
"const": "deep-link:deny-register"
2014
},
2015
{
2016
"description": "Denies the unregister command without any pre-configured scope.",
2017
"type": "string",
2018
-
"const": "deep-link:deny-unregister"
2019
},
2020
{
2021
-
"description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n",
2022
"type": "string",
2023
-
"const": "http:default"
2024
},
2025
{
2026
"description": "Enables the fetch command without any pre-configured scope.",
2027
"type": "string",
2028
-
"const": "http:allow-fetch"
2029
},
2030
{
2031
"description": "Enables the fetch_cancel command without any pre-configured scope.",
2032
"type": "string",
2033
-
"const": "http:allow-fetch-cancel"
2034
},
2035
{
2036
"description": "Enables the fetch_read_body command without any pre-configured scope.",
2037
"type": "string",
2038
-
"const": "http:allow-fetch-read-body"
2039
},
2040
{
2041
"description": "Enables the fetch_send command without any pre-configured scope.",
2042
"type": "string",
2043
-
"const": "http:allow-fetch-send"
2044
},
2045
{
2046
"description": "Denies the fetch command without any pre-configured scope.",
2047
"type": "string",
2048
-
"const": "http:deny-fetch"
2049
},
2050
{
2051
"description": "Denies the fetch_cancel command without any pre-configured scope.",
2052
"type": "string",
2053
-
"const": "http:deny-fetch-cancel"
2054
},
2055
{
2056
"description": "Denies the fetch_read_body command without any pre-configured scope.",
2057
"type": "string",
2058
-
"const": "http:deny-fetch-read-body"
2059
},
2060
{
2061
"description": "Denies the fetch_send command without any pre-configured scope.",
2062
"type": "string",
2063
-
"const": "http:deny-fetch-send"
2064
},
2065
{
2066
-
"description": "This permission set configures which\nprocess feeatures are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n",
2067
"type": "string",
2068
-
"const": "process:default"
2069
},
2070
{
2071
"description": "Enables the exit command without any pre-configured scope.",
2072
"type": "string",
2073
-
"const": "process:allow-exit"
2074
},
2075
{
2076
"description": "Enables the restart command without any pre-configured scope.",
2077
"type": "string",
2078
-
"const": "process:allow-restart"
2079
},
2080
{
2081
"description": "Denies the exit command without any pre-configured scope.",
2082
"type": "string",
2083
-
"const": "process:deny-exit"
2084
},
2085
{
2086
"description": "Denies the restart command without any pre-configured scope.",
2087
"type": "string",
2088
-
"const": "process:deny-restart"
2089
},
2090
{
2091
-
"description": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality without any specific\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n",
2092
"type": "string",
2093
-
"const": "shell:default"
2094
},
2095
{
2096
"description": "Enables the execute command without any pre-configured scope.",
2097
"type": "string",
2098
-
"const": "shell:allow-execute"
2099
},
2100
{
2101
"description": "Enables the kill command without any pre-configured scope.",
2102
"type": "string",
2103
-
"const": "shell:allow-kill"
2104
},
2105
{
2106
"description": "Enables the open command without any pre-configured scope.",
2107
"type": "string",
2108
-
"const": "shell:allow-open"
2109
},
2110
{
2111
"description": "Enables the spawn command without any pre-configured scope.",
2112
"type": "string",
2113
-
"const": "shell:allow-spawn"
2114
},
2115
{
2116
"description": "Enables the stdin_write command without any pre-configured scope.",
2117
"type": "string",
2118
-
"const": "shell:allow-stdin-write"
2119
},
2120
{
2121
"description": "Denies the execute command without any pre-configured scope.",
2122
"type": "string",
2123
-
"const": "shell:deny-execute"
2124
},
2125
{
2126
"description": "Denies the kill command without any pre-configured scope.",
2127
"type": "string",
2128
-
"const": "shell:deny-kill"
2129
},
2130
{
2131
"description": "Denies the open command without any pre-configured scope.",
2132
"type": "string",
2133
-
"const": "shell:deny-open"
2134
},
2135
{
2136
"description": "Denies the spawn command without any pre-configured scope.",
2137
"type": "string",
2138
-
"const": "shell:deny-spawn"
2139
},
2140
{
2141
"description": "Denies the stdin_write command without any pre-configured scope.",
2142
"type": "string",
2143
-
"const": "shell:deny-stdin-write"
2144
}
2145
]
2146
},
···
37
],
38
"definitions": {
39
"Capability": {
40
+
"description": "A grouping and boundary mechanism developers can use to isolate access to the IPC layer.\n\nIt controls application windows' and webviews' fine grained access to the Tauri core, application, or plugin commands. If a webview or its window is not matching any capability then it has no access to the IPC layer at all.\n\nThis can be done to create groups of windows, based on their required system access, which can reduce impact of frontend vulnerabilities in less privileged windows. Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`. A Window can have none, one, or multiple associated capabilities.\n\n## Example\n\n```json { \"identifier\": \"main-user-files-write\", \"description\": \"This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.\", \"windows\": [ \"main\" ], \"permissions\": [ \"core:default\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] }, ], \"platforms\": [\"macOS\",\"windows\"] } ```",
41
"type": "object",
42
"required": [
43
"identifier",
···
49
"type": "string"
50
},
51
"description": {
52
+
"description": "Description of what the capability is intended to allow on associated windows.\n\nIt should contain a description of what the grouped permissions should allow.\n\n## Example\n\nThis capability allows the `main` window access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.",
53
"default": "",
54
"type": "string"
55
},
···
70
"type": "boolean"
71
},
72
"windows": {
73
+
"description": "List of windows that are affected by this capability. Can be a glob pattern.\n\nIf a window label matches any of the patterns in this list, the capability will be enabled on all the webviews of that window, regardless of the value of [`Self::webviews`].\n\nOn multiwebview windows, prefer specifying [`Self::webviews`] and omitting [`Self::windows`] for a fine grained access control.\n\n## Example\n\n`[\"main\"]`",
74
"type": "array",
75
"items": {
76
"type": "string"
77
}
78
},
79
"webviews": {
80
+
"description": "List of webviews that are affected by this capability. Can be a glob pattern.\n\nThe capability will be enabled on all the webviews whose label matches any of the patterns in this list, regardless of whether the webview's window label matches a pattern in [`Self::windows`].\n\n## Example\n\n`[\"sub-webview-one\", \"sub-webview-two\"]`",
81
"type": "array",
82
"items": {
83
"type": "string"
84
}
85
},
86
"permissions": {
87
+
"description": "List of permissions attached to this capability.\n\nMust include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`. For commands directly implemented in the application itself only `${permission-name}` is required.\n\n## Example\n\n```json [ \"core:default\", \"shell:allow-open\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] } ] ```",
88
"type": "array",
89
"items": {
90
"$ref": "#/definitions/PermissionEntry"
···
140
"identifier": {
141
"anyOf": [
142
{
143
+
"description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-read-body`\n- `allow-fetch-send`",
144
"type": "string",
145
+
"const": "http:default",
146
+
"markdownDescription": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-read-body`\n- `allow-fetch-send`"
147
},
148
{
149
"description": "Enables the fetch command without any pre-configured scope.",
150
"type": "string",
151
+
"const": "http:allow-fetch",
152
+
"markdownDescription": "Enables the fetch command without any pre-configured scope."
153
},
154
{
155
"description": "Enables the fetch_cancel command without any pre-configured scope.",
156
"type": "string",
157
+
"const": "http:allow-fetch-cancel",
158
+
"markdownDescription": "Enables the fetch_cancel command without any pre-configured scope."
159
},
160
{
161
"description": "Enables the fetch_read_body command without any pre-configured scope.",
162
"type": "string",
163
+
"const": "http:allow-fetch-read-body",
164
+
"markdownDescription": "Enables the fetch_read_body command without any pre-configured scope."
165
},
166
{
167
"description": "Enables the fetch_send command without any pre-configured scope.",
168
"type": "string",
169
+
"const": "http:allow-fetch-send",
170
+
"markdownDescription": "Enables the fetch_send command without any pre-configured scope."
171
},
172
{
173
"description": "Denies the fetch command without any pre-configured scope.",
174
"type": "string",
175
+
"const": "http:deny-fetch",
176
+
"markdownDescription": "Denies the fetch command without any pre-configured scope."
177
},
178
{
179
"description": "Denies the fetch_cancel command without any pre-configured scope.",
180
"type": "string",
181
+
"const": "http:deny-fetch-cancel",
182
+
"markdownDescription": "Denies the fetch_cancel command without any pre-configured scope."
183
},
184
{
185
"description": "Denies the fetch_read_body command without any pre-configured scope.",
186
"type": "string",
187
+
"const": "http:deny-fetch-read-body",
188
+
"markdownDescription": "Denies the fetch_read_body command without any pre-configured scope."
189
},
190
{
191
"description": "Denies the fetch_send command without any pre-configured scope.",
192
"type": "string",
193
+
"const": "http:deny-fetch-send",
194
+
"markdownDescription": "Denies the fetch_send command without any pre-configured scope."
195
}
196
]
197
}
···
266
"identifier": {
267
"anyOf": [
268
{
269
+
"description": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`",
270
"type": "string",
271
+
"const": "shell:default",
272
+
"markdownDescription": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`"
273
},
274
{
275
"description": "Enables the execute command without any pre-configured scope.",
276
"type": "string",
277
+
"const": "shell:allow-execute",
278
+
"markdownDescription": "Enables the execute command without any pre-configured scope."
279
},
280
{
281
"description": "Enables the kill command without any pre-configured scope.",
282
"type": "string",
283
+
"const": "shell:allow-kill",
284
+
"markdownDescription": "Enables the kill command without any pre-configured scope."
285
},
286
{
287
"description": "Enables the open command without any pre-configured scope.",
288
"type": "string",
289
+
"const": "shell:allow-open",
290
+
"markdownDescription": "Enables the open command without any pre-configured scope."
291
},
292
{
293
"description": "Enables the spawn command without any pre-configured scope.",
294
"type": "string",
295
+
"const": "shell:allow-spawn",
296
+
"markdownDescription": "Enables the spawn command without any pre-configured scope."
297
},
298
{
299
"description": "Enables the stdin_write command without any pre-configured scope.",
300
"type": "string",
301
+
"const": "shell:allow-stdin-write",
302
+
"markdownDescription": "Enables the stdin_write command without any pre-configured scope."
303
},
304
{
305
"description": "Denies the execute command without any pre-configured scope.",
306
"type": "string",
307
+
"const": "shell:deny-execute",
308
+
"markdownDescription": "Denies the execute command without any pre-configured scope."
309
},
310
{
311
"description": "Denies the kill command without any pre-configured scope.",
312
"type": "string",
313
+
"const": "shell:deny-kill",
314
+
"markdownDescription": "Denies the kill command without any pre-configured scope."
315
},
316
{
317
"description": "Denies the open command without any pre-configured scope.",
318
"type": "string",
319
+
"const": "shell:deny-open",
320
+
"markdownDescription": "Denies the open command without any pre-configured scope."
321
},
322
{
323
"description": "Denies the spawn command without any pre-configured scope.",
324
"type": "string",
325
+
"const": "shell:deny-spawn",
326
+
"markdownDescription": "Denies the spawn command without any pre-configured scope."
327
},
328
{
329
"description": "Denies the stdin_write command without any pre-configured scope.",
330
"type": "string",
331
+
"const": "shell:deny-stdin-write",
332
+
"markdownDescription": "Denies the stdin_write command without any pre-configured scope."
333
}
334
]
335
}
···
513
"description": "Permission identifier",
514
"oneOf": [
515
{
516
+
"description": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`",
517
"type": "string",
518
+
"const": "core:default",
519
+
"markdownDescription": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`"
520
},
521
{
522
+
"description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`",
523
"type": "string",
524
+
"const": "core:app:default",
525
+
"markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`"
526
},
527
{
528
"description": "Enables the app_hide command without any pre-configured scope.",
529
"type": "string",
530
+
"const": "core:app:allow-app-hide",
531
+
"markdownDescription": "Enables the app_hide command without any pre-configured scope."
532
},
533
{
534
"description": "Enables the app_show command without any pre-configured scope.",
535
"type": "string",
536
+
"const": "core:app:allow-app-show",
537
+
"markdownDescription": "Enables the app_show command without any pre-configured scope."
538
+
},
539
+
{
540
+
"description": "Enables the bundle_type command without any pre-configured scope.",
541
+
"type": "string",
542
+
"const": "core:app:allow-bundle-type",
543
+
"markdownDescription": "Enables the bundle_type command without any pre-configured scope."
544
},
545
{
546
"description": "Enables the default_window_icon command without any pre-configured scope.",
547
"type": "string",
548
+
"const": "core:app:allow-default-window-icon",
549
+
"markdownDescription": "Enables the default_window_icon command without any pre-configured scope."
550
+
},
551
+
{
552
+
"description": "Enables the fetch_data_store_identifiers command without any pre-configured scope.",
553
+
"type": "string",
554
+
"const": "core:app:allow-fetch-data-store-identifiers",
555
+
"markdownDescription": "Enables the fetch_data_store_identifiers command without any pre-configured scope."
556
+
},
557
+
{
558
+
"description": "Enables the identifier command without any pre-configured scope.",
559
+
"type": "string",
560
+
"const": "core:app:allow-identifier",
561
+
"markdownDescription": "Enables the identifier command without any pre-configured scope."
562
},
563
{
564
"description": "Enables the name command without any pre-configured scope.",
565
"type": "string",
566
+
"const": "core:app:allow-name",
567
+
"markdownDescription": "Enables the name command without any pre-configured scope."
568
+
},
569
+
{
570
+
"description": "Enables the remove_data_store command without any pre-configured scope.",
571
+
"type": "string",
572
+
"const": "core:app:allow-remove-data-store",
573
+
"markdownDescription": "Enables the remove_data_store command without any pre-configured scope."
574
},
575
{
576
"description": "Enables the set_app_theme command without any pre-configured scope.",
577
"type": "string",
578
+
"const": "core:app:allow-set-app-theme",
579
+
"markdownDescription": "Enables the set_app_theme command without any pre-configured scope."
580
+
},
581
+
{
582
+
"description": "Enables the set_dock_visibility command without any pre-configured scope.",
583
+
"type": "string",
584
+
"const": "core:app:allow-set-dock-visibility",
585
+
"markdownDescription": "Enables the set_dock_visibility command without any pre-configured scope."
586
},
587
{
588
"description": "Enables the tauri_version command without any pre-configured scope.",
589
"type": "string",
590
+
"const": "core:app:allow-tauri-version",
591
+
"markdownDescription": "Enables the tauri_version command without any pre-configured scope."
592
},
593
{
594
"description": "Enables the version command without any pre-configured scope.",
595
"type": "string",
596
+
"const": "core:app:allow-version",
597
+
"markdownDescription": "Enables the version command without any pre-configured scope."
598
},
599
{
600
"description": "Denies the app_hide command without any pre-configured scope.",
601
"type": "string",
602
+
"const": "core:app:deny-app-hide",
603
+
"markdownDescription": "Denies the app_hide command without any pre-configured scope."
604
},
605
{
606
"description": "Denies the app_show command without any pre-configured scope.",
607
"type": "string",
608
+
"const": "core:app:deny-app-show",
609
+
"markdownDescription": "Denies the app_show command without any pre-configured scope."
610
+
},
611
+
{
612
+
"description": "Denies the bundle_type command without any pre-configured scope.",
613
+
"type": "string",
614
+
"const": "core:app:deny-bundle-type",
615
+
"markdownDescription": "Denies the bundle_type command without any pre-configured scope."
616
},
617
{
618
"description": "Denies the default_window_icon command without any pre-configured scope.",
619
"type": "string",
620
+
"const": "core:app:deny-default-window-icon",
621
+
"markdownDescription": "Denies the default_window_icon command without any pre-configured scope."
622
+
},
623
+
{
624
+
"description": "Denies the fetch_data_store_identifiers command without any pre-configured scope.",
625
+
"type": "string",
626
+
"const": "core:app:deny-fetch-data-store-identifiers",
627
+
"markdownDescription": "Denies the fetch_data_store_identifiers command without any pre-configured scope."
628
+
},
629
+
{
630
+
"description": "Denies the identifier command without any pre-configured scope.",
631
+
"type": "string",
632
+
"const": "core:app:deny-identifier",
633
+
"markdownDescription": "Denies the identifier command without any pre-configured scope."
634
},
635
{
636
"description": "Denies the name command without any pre-configured scope.",
637
"type": "string",
638
+
"const": "core:app:deny-name",
639
+
"markdownDescription": "Denies the name command without any pre-configured scope."
640
+
},
641
+
{
642
+
"description": "Denies the remove_data_store command without any pre-configured scope.",
643
+
"type": "string",
644
+
"const": "core:app:deny-remove-data-store",
645
+
"markdownDescription": "Denies the remove_data_store command without any pre-configured scope."
646
},
647
{
648
"description": "Denies the set_app_theme command without any pre-configured scope.",
649
"type": "string",
650
+
"const": "core:app:deny-set-app-theme",
651
+
"markdownDescription": "Denies the set_app_theme command without any pre-configured scope."
652
+
},
653
+
{
654
+
"description": "Denies the set_dock_visibility command without any pre-configured scope.",
655
+
"type": "string",
656
+
"const": "core:app:deny-set-dock-visibility",
657
+
"markdownDescription": "Denies the set_dock_visibility command without any pre-configured scope."
658
},
659
{
660
"description": "Denies the tauri_version command without any pre-configured scope.",
661
"type": "string",
662
+
"const": "core:app:deny-tauri-version",
663
+
"markdownDescription": "Denies the tauri_version command without any pre-configured scope."
664
},
665
{
666
"description": "Denies the version command without any pre-configured scope.",
667
"type": "string",
668
+
"const": "core:app:deny-version",
669
+
"markdownDescription": "Denies the version command without any pre-configured scope."
670
},
671
{
672
+
"description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`",
673
"type": "string",
674
+
"const": "core:event:default",
675
+
"markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`"
676
},
677
{
678
"description": "Enables the emit command without any pre-configured scope.",
679
"type": "string",
680
+
"const": "core:event:allow-emit",
681
+
"markdownDescription": "Enables the emit command without any pre-configured scope."
682
},
683
{
684
"description": "Enables the emit_to command without any pre-configured scope.",
685
"type": "string",
686
+
"const": "core:event:allow-emit-to",
687
+
"markdownDescription": "Enables the emit_to command without any pre-configured scope."
688
},
689
{
690
"description": "Enables the listen command without any pre-configured scope.",
691
"type": "string",
692
+
"const": "core:event:allow-listen",
693
+
"markdownDescription": "Enables the listen command without any pre-configured scope."
694
},
695
{
696
"description": "Enables the unlisten command without any pre-configured scope.",
697
"type": "string",
698
+
"const": "core:event:allow-unlisten",
699
+
"markdownDescription": "Enables the unlisten command without any pre-configured scope."
700
},
701
{
702
"description": "Denies the emit command without any pre-configured scope.",
703
"type": "string",
704
+
"const": "core:event:deny-emit",
705
+
"markdownDescription": "Denies the emit command without any pre-configured scope."
706
},
707
{
708
"description": "Denies the emit_to command without any pre-configured scope.",
709
"type": "string",
710
+
"const": "core:event:deny-emit-to",
711
+
"markdownDescription": "Denies the emit_to command without any pre-configured scope."
712
},
713
{
714
"description": "Denies the listen command without any pre-configured scope.",
715
"type": "string",
716
+
"const": "core:event:deny-listen",
717
+
"markdownDescription": "Denies the listen command without any pre-configured scope."
718
},
719
{
720
"description": "Denies the unlisten command without any pre-configured scope.",
721
"type": "string",
722
+
"const": "core:event:deny-unlisten",
723
+
"markdownDescription": "Denies the unlisten command without any pre-configured scope."
724
},
725
{
726
+
"description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`",
727
"type": "string",
728
+
"const": "core:image:default",
729
+
"markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`"
730
},
731
{
732
"description": "Enables the from_bytes command without any pre-configured scope.",
733
"type": "string",
734
+
"const": "core:image:allow-from-bytes",
735
+
"markdownDescription": "Enables the from_bytes command without any pre-configured scope."
736
},
737
{
738
"description": "Enables the from_path command without any pre-configured scope.",
739
"type": "string",
740
+
"const": "core:image:allow-from-path",
741
+
"markdownDescription": "Enables the from_path command without any pre-configured scope."
742
},
743
{
744
"description": "Enables the new command without any pre-configured scope.",
745
"type": "string",
746
+
"const": "core:image:allow-new",
747
+
"markdownDescription": "Enables the new command without any pre-configured scope."
748
},
749
{
750
"description": "Enables the rgba command without any pre-configured scope.",
751
"type": "string",
752
+
"const": "core:image:allow-rgba",
753
+
"markdownDescription": "Enables the rgba command without any pre-configured scope."
754
},
755
{
756
"description": "Enables the size command without any pre-configured scope.",
757
"type": "string",
758
+
"const": "core:image:allow-size",
759
+
"markdownDescription": "Enables the size command without any pre-configured scope."
760
},
761
{
762
"description": "Denies the from_bytes command without any pre-configured scope.",
763
"type": "string",
764
+
"const": "core:image:deny-from-bytes",
765
+
"markdownDescription": "Denies the from_bytes command without any pre-configured scope."
766
},
767
{
768
"description": "Denies the from_path command without any pre-configured scope.",
769
"type": "string",
770
+
"const": "core:image:deny-from-path",
771
+
"markdownDescription": "Denies the from_path command without any pre-configured scope."
772
},
773
{
774
"description": "Denies the new command without any pre-configured scope.",
775
"type": "string",
776
+
"const": "core:image:deny-new",
777
+
"markdownDescription": "Denies the new command without any pre-configured scope."
778
},
779
{
780
"description": "Denies the rgba command without any pre-configured scope.",
781
"type": "string",
782
+
"const": "core:image:deny-rgba",
783
+
"markdownDescription": "Denies the rgba command without any pre-configured scope."
784
},
785
{
786
"description": "Denies the size command without any pre-configured scope.",
787
"type": "string",
788
+
"const": "core:image:deny-size",
789
+
"markdownDescription": "Denies the size command without any pre-configured scope."
790
},
791
{
792
+
"description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`",
793
"type": "string",
794
+
"const": "core:menu:default",
795
+
"markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`"
796
},
797
{
798
"description": "Enables the append command without any pre-configured scope.",
799
"type": "string",
800
+
"const": "core:menu:allow-append",
801
+
"markdownDescription": "Enables the append command without any pre-configured scope."
802
},
803
{
804
"description": "Enables the create_default command without any pre-configured scope.",
805
"type": "string",
806
+
"const": "core:menu:allow-create-default",
807
+
"markdownDescription": "Enables the create_default command without any pre-configured scope."
808
},
809
{
810
"description": "Enables the get command without any pre-configured scope.",
811
"type": "string",
812
+
"const": "core:menu:allow-get",
813
+
"markdownDescription": "Enables the get command without any pre-configured scope."
814
},
815
{
816
"description": "Enables the insert command without any pre-configured scope.",
817
"type": "string",
818
+
"const": "core:menu:allow-insert",
819
+
"markdownDescription": "Enables the insert command without any pre-configured scope."
820
},
821
{
822
"description": "Enables the is_checked command without any pre-configured scope.",
823
"type": "string",
824
+
"const": "core:menu:allow-is-checked",
825
+
"markdownDescription": "Enables the is_checked command without any pre-configured scope."
826
},
827
{
828
"description": "Enables the is_enabled command without any pre-configured scope.",
829
"type": "string",
830
+
"const": "core:menu:allow-is-enabled",
831
+
"markdownDescription": "Enables the is_enabled command without any pre-configured scope."
832
},
833
{
834
"description": "Enables the items command without any pre-configured scope.",
835
"type": "string",
836
+
"const": "core:menu:allow-items",
837
+
"markdownDescription": "Enables the items command without any pre-configured scope."
838
},
839
{
840
"description": "Enables the new command without any pre-configured scope.",
841
"type": "string",
842
+
"const": "core:menu:allow-new",
843
+
"markdownDescription": "Enables the new command without any pre-configured scope."
844
},
845
{
846
"description": "Enables the popup command without any pre-configured scope.",
847
"type": "string",
848
+
"const": "core:menu:allow-popup",
849
+
"markdownDescription": "Enables the popup command without any pre-configured scope."
850
},
851
{
852
"description": "Enables the prepend command without any pre-configured scope.",
853
"type": "string",
854
+
"const": "core:menu:allow-prepend",
855
+
"markdownDescription": "Enables the prepend command without any pre-configured scope."
856
},
857
{
858
"description": "Enables the remove command without any pre-configured scope.",
859
"type": "string",
860
+
"const": "core:menu:allow-remove",
861
+
"markdownDescription": "Enables the remove command without any pre-configured scope."
862
},
863
{
864
"description": "Enables the remove_at command without any pre-configured scope.",
865
"type": "string",
866
+
"const": "core:menu:allow-remove-at",
867
+
"markdownDescription": "Enables the remove_at command without any pre-configured scope."
868
},
869
{
870
"description": "Enables the set_accelerator command without any pre-configured scope.",
871
"type": "string",
872
+
"const": "core:menu:allow-set-accelerator",
873
+
"markdownDescription": "Enables the set_accelerator command without any pre-configured scope."
874
},
875
{
876
"description": "Enables the set_as_app_menu command without any pre-configured scope.",
877
"type": "string",
878
+
"const": "core:menu:allow-set-as-app-menu",
879
+
"markdownDescription": "Enables the set_as_app_menu command without any pre-configured scope."
880
},
881
{
882
"description": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.",
883
"type": "string",
884
+
"const": "core:menu:allow-set-as-help-menu-for-nsapp",
885
+
"markdownDescription": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope."
886
},
887
{
888
"description": "Enables the set_as_window_menu command without any pre-configured scope.",
889
"type": "string",
890
+
"const": "core:menu:allow-set-as-window-menu",
891
+
"markdownDescription": "Enables the set_as_window_menu command without any pre-configured scope."
892
},
893
{
894
"description": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
895
"type": "string",
896
+
"const": "core:menu:allow-set-as-windows-menu-for-nsapp",
897
+
"markdownDescription": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope."
898
},
899
{
900
"description": "Enables the set_checked command without any pre-configured scope.",
901
"type": "string",
902
+
"const": "core:menu:allow-set-checked",
903
+
"markdownDescription": "Enables the set_checked command without any pre-configured scope."
904
},
905
{
906
"description": "Enables the set_enabled command without any pre-configured scope.",
907
"type": "string",
908
+
"const": "core:menu:allow-set-enabled",
909
+
"markdownDescription": "Enables the set_enabled command without any pre-configured scope."
910
},
911
{
912
"description": "Enables the set_icon command without any pre-configured scope.",
913
"type": "string",
914
+
"const": "core:menu:allow-set-icon",
915
+
"markdownDescription": "Enables the set_icon command without any pre-configured scope."
916
},
917
{
918
"description": "Enables the set_text command without any pre-configured scope.",
919
"type": "string",
920
+
"const": "core:menu:allow-set-text",
921
+
"markdownDescription": "Enables the set_text command without any pre-configured scope."
922
},
923
{
924
"description": "Enables the text command without any pre-configured scope.",
925
"type": "string",
926
+
"const": "core:menu:allow-text",
927
+
"markdownDescription": "Enables the text command without any pre-configured scope."
928
},
929
{
930
"description": "Denies the append command without any pre-configured scope.",
931
"type": "string",
932
+
"const": "core:menu:deny-append",
933
+
"markdownDescription": "Denies the append command without any pre-configured scope."
934
},
935
{
936
"description": "Denies the create_default command without any pre-configured scope.",
937
"type": "string",
938
+
"const": "core:menu:deny-create-default",
939
+
"markdownDescription": "Denies the create_default command without any pre-configured scope."
940
},
941
{
942
"description": "Denies the get command without any pre-configured scope.",
943
"type": "string",
944
+
"const": "core:menu:deny-get",
945
+
"markdownDescription": "Denies the get command without any pre-configured scope."
946
},
947
{
948
"description": "Denies the insert command without any pre-configured scope.",
949
"type": "string",
950
+
"const": "core:menu:deny-insert",
951
+
"markdownDescription": "Denies the insert command without any pre-configured scope."
952
},
953
{
954
"description": "Denies the is_checked command without any pre-configured scope.",
955
"type": "string",
956
+
"const": "core:menu:deny-is-checked",
957
+
"markdownDescription": "Denies the is_checked command without any pre-configured scope."
958
},
959
{
960
"description": "Denies the is_enabled command without any pre-configured scope.",
961
"type": "string",
962
+
"const": "core:menu:deny-is-enabled",
963
+
"markdownDescription": "Denies the is_enabled command without any pre-configured scope."
964
},
965
{
966
"description": "Denies the items command without any pre-configured scope.",
967
"type": "string",
968
+
"const": "core:menu:deny-items",
969
+
"markdownDescription": "Denies the items command without any pre-configured scope."
970
},
971
{
972
"description": "Denies the new command without any pre-configured scope.",
973
"type": "string",
974
+
"const": "core:menu:deny-new",
975
+
"markdownDescription": "Denies the new command without any pre-configured scope."
976
},
977
{
978
"description": "Denies the popup command without any pre-configured scope.",
979
"type": "string",
980
+
"const": "core:menu:deny-popup",
981
+
"markdownDescription": "Denies the popup command without any pre-configured scope."
982
},
983
{
984
"description": "Denies the prepend command without any pre-configured scope.",
985
"type": "string",
986
+
"const": "core:menu:deny-prepend",
987
+
"markdownDescription": "Denies the prepend command without any pre-configured scope."
988
},
989
{
990
"description": "Denies the remove command without any pre-configured scope.",
991
"type": "string",
992
+
"const": "core:menu:deny-remove",
993
+
"markdownDescription": "Denies the remove command without any pre-configured scope."
994
},
995
{
996
"description": "Denies the remove_at command without any pre-configured scope.",
997
"type": "string",
998
+
"const": "core:menu:deny-remove-at",
999
+
"markdownDescription": "Denies the remove_at command without any pre-configured scope."
1000
},
1001
{
1002
"description": "Denies the set_accelerator command without any pre-configured scope.",
1003
"type": "string",
1004
+
"const": "core:menu:deny-set-accelerator",
1005
+
"markdownDescription": "Denies the set_accelerator command without any pre-configured scope."
1006
},
1007
{
1008
"description": "Denies the set_as_app_menu command without any pre-configured scope.",
1009
"type": "string",
1010
+
"const": "core:menu:deny-set-as-app-menu",
1011
+
"markdownDescription": "Denies the set_as_app_menu command without any pre-configured scope."
1012
},
1013
{
1014
"description": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.",
1015
"type": "string",
1016
+
"const": "core:menu:deny-set-as-help-menu-for-nsapp",
1017
+
"markdownDescription": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope."
1018
},
1019
{
1020
"description": "Denies the set_as_window_menu command without any pre-configured scope.",
1021
"type": "string",
1022
+
"const": "core:menu:deny-set-as-window-menu",
1023
+
"markdownDescription": "Denies the set_as_window_menu command without any pre-configured scope."
1024
},
1025
{
1026
"description": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
1027
"type": "string",
1028
+
"const": "core:menu:deny-set-as-windows-menu-for-nsapp",
1029
+
"markdownDescription": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope."
1030
},
1031
{
1032
"description": "Denies the set_checked command without any pre-configured scope.",
1033
"type": "string",
1034
+
"const": "core:menu:deny-set-checked",
1035
+
"markdownDescription": "Denies the set_checked command without any pre-configured scope."
1036
},
1037
{
1038
"description": "Denies the set_enabled command without any pre-configured scope.",
1039
"type": "string",
1040
+
"const": "core:menu:deny-set-enabled",
1041
+
"markdownDescription": "Denies the set_enabled command without any pre-configured scope."
1042
},
1043
{
1044
"description": "Denies the set_icon command without any pre-configured scope.",
1045
"type": "string",
1046
+
"const": "core:menu:deny-set-icon",
1047
+
"markdownDescription": "Denies the set_icon command without any pre-configured scope."
1048
},
1049
{
1050
"description": "Denies the set_text command without any pre-configured scope.",
1051
"type": "string",
1052
+
"const": "core:menu:deny-set-text",
1053
+
"markdownDescription": "Denies the set_text command without any pre-configured scope."
1054
},
1055
{
1056
"description": "Denies the text command without any pre-configured scope.",
1057
"type": "string",
1058
+
"const": "core:menu:deny-text",
1059
+
"markdownDescription": "Denies the text command without any pre-configured scope."
1060
},
1061
{
1062
+
"description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`",
1063
"type": "string",
1064
+
"const": "core:path:default",
1065
+
"markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`"
1066
},
1067
{
1068
"description": "Enables the basename command without any pre-configured scope.",
1069
"type": "string",
1070
+
"const": "core:path:allow-basename",
1071
+
"markdownDescription": "Enables the basename command without any pre-configured scope."
1072
},
1073
{
1074
"description": "Enables the dirname command without any pre-configured scope.",
1075
"type": "string",
1076
+
"const": "core:path:allow-dirname",
1077
+
"markdownDescription": "Enables the dirname command without any pre-configured scope."
1078
},
1079
{
1080
"description": "Enables the extname command without any pre-configured scope.",
1081
"type": "string",
1082
+
"const": "core:path:allow-extname",
1083
+
"markdownDescription": "Enables the extname command without any pre-configured scope."
1084
},
1085
{
1086
"description": "Enables the is_absolute command without any pre-configured scope.",
1087
"type": "string",
1088
+
"const": "core:path:allow-is-absolute",
1089
+
"markdownDescription": "Enables the is_absolute command without any pre-configured scope."
1090
},
1091
{
1092
"description": "Enables the join command without any pre-configured scope.",
1093
"type": "string",
1094
+
"const": "core:path:allow-join",
1095
+
"markdownDescription": "Enables the join command without any pre-configured scope."
1096
},
1097
{
1098
"description": "Enables the normalize command without any pre-configured scope.",
1099
"type": "string",
1100
+
"const": "core:path:allow-normalize",
1101
+
"markdownDescription": "Enables the normalize command without any pre-configured scope."
1102
},
1103
{
1104
"description": "Enables the resolve command without any pre-configured scope.",
1105
"type": "string",
1106
+
"const": "core:path:allow-resolve",
1107
+
"markdownDescription": "Enables the resolve command without any pre-configured scope."
1108
},
1109
{
1110
"description": "Enables the resolve_directory command without any pre-configured scope.",
1111
"type": "string",
1112
+
"const": "core:path:allow-resolve-directory",
1113
+
"markdownDescription": "Enables the resolve_directory command without any pre-configured scope."
1114
},
1115
{
1116
"description": "Denies the basename command without any pre-configured scope.",
1117
"type": "string",
1118
+
"const": "core:path:deny-basename",
1119
+
"markdownDescription": "Denies the basename command without any pre-configured scope."
1120
},
1121
{
1122
"description": "Denies the dirname command without any pre-configured scope.",
1123
"type": "string",
1124
+
"const": "core:path:deny-dirname",
1125
+
"markdownDescription": "Denies the dirname command without any pre-configured scope."
1126
},
1127
{
1128
"description": "Denies the extname command without any pre-configured scope.",
1129
"type": "string",
1130
+
"const": "core:path:deny-extname",
1131
+
"markdownDescription": "Denies the extname command without any pre-configured scope."
1132
},
1133
{
1134
"description": "Denies the is_absolute command without any pre-configured scope.",
1135
"type": "string",
1136
+
"const": "core:path:deny-is-absolute",
1137
+
"markdownDescription": "Denies the is_absolute command without any pre-configured scope."
1138
},
1139
{
1140
"description": "Denies the join command without any pre-configured scope.",
1141
"type": "string",
1142
+
"const": "core:path:deny-join",
1143
+
"markdownDescription": "Denies the join command without any pre-configured scope."
1144
},
1145
{
1146
"description": "Denies the normalize command without any pre-configured scope.",
1147
"type": "string",
1148
+
"const": "core:path:deny-normalize",
1149
+
"markdownDescription": "Denies the normalize command without any pre-configured scope."
1150
},
1151
{
1152
"description": "Denies the resolve command without any pre-configured scope.",
1153
"type": "string",
1154
+
"const": "core:path:deny-resolve",
1155
+
"markdownDescription": "Denies the resolve command without any pre-configured scope."
1156
},
1157
{
1158
"description": "Denies the resolve_directory command without any pre-configured scope.",
1159
"type": "string",
1160
+
"const": "core:path:deny-resolve-directory",
1161
+
"markdownDescription": "Denies the resolve_directory command without any pre-configured scope."
1162
},
1163
{
1164
+
"description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`",
1165
"type": "string",
1166
+
"const": "core:resources:default",
1167
+
"markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`"
1168
},
1169
{
1170
"description": "Enables the close command without any pre-configured scope.",
1171
"type": "string",
1172
+
"const": "core:resources:allow-close",
1173
+
"markdownDescription": "Enables the close command without any pre-configured scope."
1174
},
1175
{
1176
"description": "Denies the close command without any pre-configured scope.",
1177
"type": "string",
1178
+
"const": "core:resources:deny-close",
1179
+
"markdownDescription": "Denies the close command without any pre-configured scope."
1180
},
1181
{
1182
+
"description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`",
1183
"type": "string",
1184
+
"const": "core:tray:default",
1185
+
"markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`"
1186
},
1187
{
1188
"description": "Enables the get_by_id command without any pre-configured scope.",
1189
"type": "string",
1190
+
"const": "core:tray:allow-get-by-id",
1191
+
"markdownDescription": "Enables the get_by_id command without any pre-configured scope."
1192
},
1193
{
1194
"description": "Enables the new command without any pre-configured scope.",
1195
"type": "string",
1196
+
"const": "core:tray:allow-new",
1197
+
"markdownDescription": "Enables the new command without any pre-configured scope."
1198
},
1199
{
1200
"description": "Enables the remove_by_id command without any pre-configured scope.",
1201
"type": "string",
1202
+
"const": "core:tray:allow-remove-by-id",
1203
+
"markdownDescription": "Enables the remove_by_id command without any pre-configured scope."
1204
},
1205
{
1206
"description": "Enables the set_icon command without any pre-configured scope.",
1207
"type": "string",
1208
+
"const": "core:tray:allow-set-icon",
1209
+
"markdownDescription": "Enables the set_icon command without any pre-configured scope."
1210
},
1211
{
1212
"description": "Enables the set_icon_as_template command without any pre-configured scope.",
1213
"type": "string",
1214
+
"const": "core:tray:allow-set-icon-as-template",
1215
+
"markdownDescription": "Enables the set_icon_as_template command without any pre-configured scope."
1216
},
1217
{
1218
"description": "Enables the set_menu command without any pre-configured scope.",
1219
"type": "string",
1220
+
"const": "core:tray:allow-set-menu",
1221
+
"markdownDescription": "Enables the set_menu command without any pre-configured scope."
1222
},
1223
{
1224
"description": "Enables the set_show_menu_on_left_click command without any pre-configured scope.",
1225
"type": "string",
1226
+
"const": "core:tray:allow-set-show-menu-on-left-click",
1227
+
"markdownDescription": "Enables the set_show_menu_on_left_click command without any pre-configured scope."
1228
},
1229
{
1230
"description": "Enables the set_temp_dir_path command without any pre-configured scope.",
1231
"type": "string",
1232
+
"const": "core:tray:allow-set-temp-dir-path",
1233
+
"markdownDescription": "Enables the set_temp_dir_path command without any pre-configured scope."
1234
},
1235
{
1236
"description": "Enables the set_title command without any pre-configured scope.",
1237
"type": "string",
1238
+
"const": "core:tray:allow-set-title",
1239
+
"markdownDescription": "Enables the set_title command without any pre-configured scope."
1240
},
1241
{
1242
"description": "Enables the set_tooltip command without any pre-configured scope.",
1243
"type": "string",
1244
+
"const": "core:tray:allow-set-tooltip",
1245
+
"markdownDescription": "Enables the set_tooltip command without any pre-configured scope."
1246
},
1247
{
1248
"description": "Enables the set_visible command without any pre-configured scope.",
1249
"type": "string",
1250
+
"const": "core:tray:allow-set-visible",
1251
+
"markdownDescription": "Enables the set_visible command without any pre-configured scope."
1252
},
1253
{
1254
"description": "Denies the get_by_id command without any pre-configured scope.",
1255
"type": "string",
1256
+
"const": "core:tray:deny-get-by-id",
1257
+
"markdownDescription": "Denies the get_by_id command without any pre-configured scope."
1258
},
1259
{
1260
"description": "Denies the new command without any pre-configured scope.",
1261
"type": "string",
1262
+
"const": "core:tray:deny-new",
1263
+
"markdownDescription": "Denies the new command without any pre-configured scope."
1264
},
1265
{
1266
"description": "Denies the remove_by_id command without any pre-configured scope.",
1267
"type": "string",
1268
+
"const": "core:tray:deny-remove-by-id",
1269
+
"markdownDescription": "Denies the remove_by_id command without any pre-configured scope."
1270
},
1271
{
1272
"description": "Denies the set_icon command without any pre-configured scope.",
1273
"type": "string",
1274
+
"const": "core:tray:deny-set-icon",
1275
+
"markdownDescription": "Denies the set_icon command without any pre-configured scope."
1276
},
1277
{
1278
"description": "Denies the set_icon_as_template command without any pre-configured scope.",
1279
"type": "string",
1280
+
"const": "core:tray:deny-set-icon-as-template",
1281
+
"markdownDescription": "Denies the set_icon_as_template command without any pre-configured scope."
1282
},
1283
{
1284
"description": "Denies the set_menu command without any pre-configured scope.",
1285
"type": "string",
1286
+
"const": "core:tray:deny-set-menu",
1287
+
"markdownDescription": "Denies the set_menu command without any pre-configured scope."
1288
},
1289
{
1290
"description": "Denies the set_show_menu_on_left_click command without any pre-configured scope.",
1291
"type": "string",
1292
+
"const": "core:tray:deny-set-show-menu-on-left-click",
1293
+
"markdownDescription": "Denies the set_show_menu_on_left_click command without any pre-configured scope."
1294
},
1295
{
1296
"description": "Denies the set_temp_dir_path command without any pre-configured scope.",
1297
"type": "string",
1298
+
"const": "core:tray:deny-set-temp-dir-path",
1299
+
"markdownDescription": "Denies the set_temp_dir_path command without any pre-configured scope."
1300
},
1301
{
1302
"description": "Denies the set_title command without any pre-configured scope.",
1303
"type": "string",
1304
+
"const": "core:tray:deny-set-title",
1305
+
"markdownDescription": "Denies the set_title command without any pre-configured scope."
1306
},
1307
{
1308
"description": "Denies the set_tooltip command without any pre-configured scope.",
1309
"type": "string",
1310
+
"const": "core:tray:deny-set-tooltip",
1311
+
"markdownDescription": "Denies the set_tooltip command without any pre-configured scope."
1312
},
1313
{
1314
"description": "Denies the set_visible command without any pre-configured scope.",
1315
"type": "string",
1316
+
"const": "core:tray:deny-set-visible",
1317
+
"markdownDescription": "Denies the set_visible command without any pre-configured scope."
1318
},
1319
{
1320
+
"description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`",
1321
"type": "string",
1322
+
"const": "core:webview:default",
1323
+
"markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`"
1324
},
1325
{
1326
"description": "Enables the clear_all_browsing_data command without any pre-configured scope.",
1327
"type": "string",
1328
+
"const": "core:webview:allow-clear-all-browsing-data",
1329
+
"markdownDescription": "Enables the clear_all_browsing_data command without any pre-configured scope."
1330
},
1331
{
1332
"description": "Enables the create_webview command without any pre-configured scope.",
1333
"type": "string",
1334
+
"const": "core:webview:allow-create-webview",
1335
+
"markdownDescription": "Enables the create_webview command without any pre-configured scope."
1336
},
1337
{
1338
"description": "Enables the create_webview_window command without any pre-configured scope.",
1339
"type": "string",
1340
+
"const": "core:webview:allow-create-webview-window",
1341
+
"markdownDescription": "Enables the create_webview_window command without any pre-configured scope."
1342
},
1343
{
1344
"description": "Enables the get_all_webviews command without any pre-configured scope.",
1345
"type": "string",
1346
+
"const": "core:webview:allow-get-all-webviews",
1347
+
"markdownDescription": "Enables the get_all_webviews command without any pre-configured scope."
1348
},
1349
{
1350
"description": "Enables the internal_toggle_devtools command without any pre-configured scope.",
1351
"type": "string",
1352
+
"const": "core:webview:allow-internal-toggle-devtools",
1353
+
"markdownDescription": "Enables the internal_toggle_devtools command without any pre-configured scope."
1354
},
1355
{
1356
"description": "Enables the print command without any pre-configured scope.",
1357
"type": "string",
1358
+
"const": "core:webview:allow-print",
1359
+
"markdownDescription": "Enables the print command without any pre-configured scope."
1360
},
1361
{
1362
"description": "Enables the reparent command without any pre-configured scope.",
1363
"type": "string",
1364
+
"const": "core:webview:allow-reparent",
1365
+
"markdownDescription": "Enables the reparent command without any pre-configured scope."
1366
+
},
1367
+
{
1368
+
"description": "Enables the set_webview_auto_resize command without any pre-configured scope.",
1369
+
"type": "string",
1370
+
"const": "core:webview:allow-set-webview-auto-resize",
1371
+
"markdownDescription": "Enables the set_webview_auto_resize command without any pre-configured scope."
1372
+
},
1373
+
{
1374
+
"description": "Enables the set_webview_background_color command without any pre-configured scope.",
1375
+
"type": "string",
1376
+
"const": "core:webview:allow-set-webview-background-color",
1377
+
"markdownDescription": "Enables the set_webview_background_color command without any pre-configured scope."
1378
},
1379
{
1380
"description": "Enables the set_webview_focus command without any pre-configured scope.",
1381
"type": "string",
1382
+
"const": "core:webview:allow-set-webview-focus",
1383
+
"markdownDescription": "Enables the set_webview_focus command without any pre-configured scope."
1384
},
1385
{
1386
"description": "Enables the set_webview_position command without any pre-configured scope.",
1387
"type": "string",
1388
+
"const": "core:webview:allow-set-webview-position",
1389
+
"markdownDescription": "Enables the set_webview_position command without any pre-configured scope."
1390
},
1391
{
1392
"description": "Enables the set_webview_size command without any pre-configured scope.",
1393
"type": "string",
1394
+
"const": "core:webview:allow-set-webview-size",
1395
+
"markdownDescription": "Enables the set_webview_size command without any pre-configured scope."
1396
},
1397
{
1398
"description": "Enables the set_webview_zoom command without any pre-configured scope.",
1399
"type": "string",
1400
+
"const": "core:webview:allow-set-webview-zoom",
1401
+
"markdownDescription": "Enables the set_webview_zoom command without any pre-configured scope."
1402
},
1403
{
1404
"description": "Enables the webview_close command without any pre-configured scope.",
1405
"type": "string",
1406
+
"const": "core:webview:allow-webview-close",
1407
+
"markdownDescription": "Enables the webview_close command without any pre-configured scope."
1408
},
1409
{
1410
"description": "Enables the webview_hide command without any pre-configured scope.",
1411
"type": "string",
1412
+
"const": "core:webview:allow-webview-hide",
1413
+
"markdownDescription": "Enables the webview_hide command without any pre-configured scope."
1414
},
1415
{
1416
"description": "Enables the webview_position command without any pre-configured scope.",
1417
"type": "string",
1418
+
"const": "core:webview:allow-webview-position",
1419
+
"markdownDescription": "Enables the webview_position command without any pre-configured scope."
1420
},
1421
{
1422
"description": "Enables the webview_show command without any pre-configured scope.",
1423
"type": "string",
1424
+
"const": "core:webview:allow-webview-show",
1425
+
"markdownDescription": "Enables the webview_show command without any pre-configured scope."
1426
},
1427
{
1428
"description": "Enables the webview_size command without any pre-configured scope.",
1429
"type": "string",
1430
+
"const": "core:webview:allow-webview-size",
1431
+
"markdownDescription": "Enables the webview_size command without any pre-configured scope."
1432
},
1433
{
1434
"description": "Denies the clear_all_browsing_data command without any pre-configured scope.",
1435
"type": "string",
1436
+
"const": "core:webview:deny-clear-all-browsing-data",
1437
+
"markdownDescription": "Denies the clear_all_browsing_data command without any pre-configured scope."
1438
},
1439
{
1440
"description": "Denies the create_webview command without any pre-configured scope.",
1441
"type": "string",
1442
+
"const": "core:webview:deny-create-webview",
1443
+
"markdownDescription": "Denies the create_webview command without any pre-configured scope."
1444
},
1445
{
1446
"description": "Denies the create_webview_window command without any pre-configured scope.",
1447
"type": "string",
1448
+
"const": "core:webview:deny-create-webview-window",
1449
+
"markdownDescription": "Denies the create_webview_window command without any pre-configured scope."
1450
},
1451
{
1452
"description": "Denies the get_all_webviews command without any pre-configured scope.",
1453
"type": "string",
1454
+
"const": "core:webview:deny-get-all-webviews",
1455
+
"markdownDescription": "Denies the get_all_webviews command without any pre-configured scope."
1456
},
1457
{
1458
"description": "Denies the internal_toggle_devtools command without any pre-configured scope.",
1459
"type": "string",
1460
+
"const": "core:webview:deny-internal-toggle-devtools",
1461
+
"markdownDescription": "Denies the internal_toggle_devtools command without any pre-configured scope."
1462
},
1463
{
1464
"description": "Denies the print command without any pre-configured scope.",
1465
"type": "string",
1466
+
"const": "core:webview:deny-print",
1467
+
"markdownDescription": "Denies the print command without any pre-configured scope."
1468
},
1469
{
1470
"description": "Denies the reparent command without any pre-configured scope.",
1471
"type": "string",
1472
+
"const": "core:webview:deny-reparent",
1473
+
"markdownDescription": "Denies the reparent command without any pre-configured scope."
1474
+
},
1475
+
{
1476
+
"description": "Denies the set_webview_auto_resize command without any pre-configured scope.",
1477
+
"type": "string",
1478
+
"const": "core:webview:deny-set-webview-auto-resize",
1479
+
"markdownDescription": "Denies the set_webview_auto_resize command without any pre-configured scope."
1480
+
},
1481
+
{
1482
+
"description": "Denies the set_webview_background_color command without any pre-configured scope.",
1483
+
"type": "string",
1484
+
"const": "core:webview:deny-set-webview-background-color",
1485
+
"markdownDescription": "Denies the set_webview_background_color command without any pre-configured scope."
1486
},
1487
{
1488
"description": "Denies the set_webview_focus command without any pre-configured scope.",
1489
"type": "string",
1490
+
"const": "core:webview:deny-set-webview-focus",
1491
+
"markdownDescription": "Denies the set_webview_focus command without any pre-configured scope."
1492
},
1493
{
1494
"description": "Denies the set_webview_position command without any pre-configured scope.",
1495
"type": "string",
1496
+
"const": "core:webview:deny-set-webview-position",
1497
+
"markdownDescription": "Denies the set_webview_position command without any pre-configured scope."
1498
},
1499
{
1500
"description": "Denies the set_webview_size command without any pre-configured scope.",
1501
"type": "string",
1502
+
"const": "core:webview:deny-set-webview-size",
1503
+
"markdownDescription": "Denies the set_webview_size command without any pre-configured scope."
1504
},
1505
{
1506
"description": "Denies the set_webview_zoom command without any pre-configured scope.",
1507
"type": "string",
1508
+
"const": "core:webview:deny-set-webview-zoom",
1509
+
"markdownDescription": "Denies the set_webview_zoom command without any pre-configured scope."
1510
},
1511
{
1512
"description": "Denies the webview_close command without any pre-configured scope.",
1513
"type": "string",
1514
+
"const": "core:webview:deny-webview-close",
1515
+
"markdownDescription": "Denies the webview_close command without any pre-configured scope."
1516
},
1517
{
1518
"description": "Denies the webview_hide command without any pre-configured scope.",
1519
"type": "string",
1520
+
"const": "core:webview:deny-webview-hide",
1521
+
"markdownDescription": "Denies the webview_hide command without any pre-configured scope."
1522
},
1523
{
1524
"description": "Denies the webview_position command without any pre-configured scope.",
1525
"type": "string",
1526
+
"const": "core:webview:deny-webview-position",
1527
+
"markdownDescription": "Denies the webview_position command without any pre-configured scope."
1528
},
1529
{
1530
"description": "Denies the webview_show command without any pre-configured scope.",
1531
"type": "string",
1532
+
"const": "core:webview:deny-webview-show",
1533
+
"markdownDescription": "Denies the webview_show command without any pre-configured scope."
1534
},
1535
{
1536
"description": "Denies the webview_size command without any pre-configured scope.",
1537
"type": "string",
1538
+
"const": "core:webview:deny-webview-size",
1539
+
"markdownDescription": "Denies the webview_size command without any pre-configured scope."
1540
},
1541
{
1542
+
"description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`",
1543
"type": "string",
1544
+
"const": "core:window:default",
1545
+
"markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`"
1546
},
1547
{
1548
"description": "Enables the available_monitors command without any pre-configured scope.",
1549
"type": "string",
1550
+
"const": "core:window:allow-available-monitors",
1551
+
"markdownDescription": "Enables the available_monitors command without any pre-configured scope."
1552
},
1553
{
1554
"description": "Enables the center command without any pre-configured scope.",
1555
"type": "string",
1556
+
"const": "core:window:allow-center",
1557
+
"markdownDescription": "Enables the center command without any pre-configured scope."
1558
},
1559
{
1560
"description": "Enables the close command without any pre-configured scope.",
1561
"type": "string",
1562
+
"const": "core:window:allow-close",
1563
+
"markdownDescription": "Enables the close command without any pre-configured scope."
1564
},
1565
{
1566
"description": "Enables the create command without any pre-configured scope.",
1567
"type": "string",
1568
+
"const": "core:window:allow-create",
1569
+
"markdownDescription": "Enables the create command without any pre-configured scope."
1570
},
1571
{
1572
"description": "Enables the current_monitor command without any pre-configured scope.",
1573
"type": "string",
1574
+
"const": "core:window:allow-current-monitor",
1575
+
"markdownDescription": "Enables the current_monitor command without any pre-configured scope."
1576
},
1577
{
1578
"description": "Enables the cursor_position command without any pre-configured scope.",
1579
"type": "string",
1580
+
"const": "core:window:allow-cursor-position",
1581
+
"markdownDescription": "Enables the cursor_position command without any pre-configured scope."
1582
},
1583
{
1584
"description": "Enables the destroy command without any pre-configured scope.",
1585
"type": "string",
1586
+
"const": "core:window:allow-destroy",
1587
+
"markdownDescription": "Enables the destroy command without any pre-configured scope."
1588
},
1589
{
1590
"description": "Enables the get_all_windows command without any pre-configured scope.",
1591
"type": "string",
1592
+
"const": "core:window:allow-get-all-windows",
1593
+
"markdownDescription": "Enables the get_all_windows command without any pre-configured scope."
1594
},
1595
{
1596
"description": "Enables the hide command without any pre-configured scope.",
1597
"type": "string",
1598
+
"const": "core:window:allow-hide",
1599
+
"markdownDescription": "Enables the hide command without any pre-configured scope."
1600
},
1601
{
1602
"description": "Enables the inner_position command without any pre-configured scope.",
1603
"type": "string",
1604
+
"const": "core:window:allow-inner-position",
1605
+
"markdownDescription": "Enables the inner_position command without any pre-configured scope."
1606
},
1607
{
1608
"description": "Enables the inner_size command without any pre-configured scope.",
1609
"type": "string",
1610
+
"const": "core:window:allow-inner-size",
1611
+
"markdownDescription": "Enables the inner_size command without any pre-configured scope."
1612
},
1613
{
1614
"description": "Enables the internal_toggle_maximize command without any pre-configured scope.",
1615
"type": "string",
1616
+
"const": "core:window:allow-internal-toggle-maximize",
1617
+
"markdownDescription": "Enables the internal_toggle_maximize command without any pre-configured scope."
1618
+
},
1619
+
{
1620
+
"description": "Enables the is_always_on_top command without any pre-configured scope.",
1621
+
"type": "string",
1622
+
"const": "core:window:allow-is-always-on-top",
1623
+
"markdownDescription": "Enables the is_always_on_top command without any pre-configured scope."
1624
},
1625
{
1626
"description": "Enables the is_closable command without any pre-configured scope.",
1627
"type": "string",
1628
+
"const": "core:window:allow-is-closable",
1629
+
"markdownDescription": "Enables the is_closable command without any pre-configured scope."
1630
},
1631
{
1632
"description": "Enables the is_decorated command without any pre-configured scope.",
1633
"type": "string",
1634
+
"const": "core:window:allow-is-decorated",
1635
+
"markdownDescription": "Enables the is_decorated command without any pre-configured scope."
1636
},
1637
{
1638
"description": "Enables the is_enabled command without any pre-configured scope.",
1639
"type": "string",
1640
+
"const": "core:window:allow-is-enabled",
1641
+
"markdownDescription": "Enables the is_enabled command without any pre-configured scope."
1642
},
1643
{
1644
"description": "Enables the is_focused command without any pre-configured scope.",
1645
"type": "string",
1646
+
"const": "core:window:allow-is-focused",
1647
+
"markdownDescription": "Enables the is_focused command without any pre-configured scope."
1648
},
1649
{
1650
"description": "Enables the is_fullscreen command without any pre-configured scope.",
1651
"type": "string",
1652
+
"const": "core:window:allow-is-fullscreen",
1653
+
"markdownDescription": "Enables the is_fullscreen command without any pre-configured scope."
1654
},
1655
{
1656
"description": "Enables the is_maximizable command without any pre-configured scope.",
1657
"type": "string",
1658
+
"const": "core:window:allow-is-maximizable",
1659
+
"markdownDescription": "Enables the is_maximizable command without any pre-configured scope."
1660
},
1661
{
1662
"description": "Enables the is_maximized command without any pre-configured scope.",
1663
"type": "string",
1664
+
"const": "core:window:allow-is-maximized",
1665
+
"markdownDescription": "Enables the is_maximized command without any pre-configured scope."
1666
},
1667
{
1668
"description": "Enables the is_minimizable command without any pre-configured scope.",
1669
"type": "string",
1670
+
"const": "core:window:allow-is-minimizable",
1671
+
"markdownDescription": "Enables the is_minimizable command without any pre-configured scope."
1672
},
1673
{
1674
"description": "Enables the is_minimized command without any pre-configured scope.",
1675
"type": "string",
1676
+
"const": "core:window:allow-is-minimized",
1677
+
"markdownDescription": "Enables the is_minimized command without any pre-configured scope."
1678
},
1679
{
1680
"description": "Enables the is_resizable command without any pre-configured scope.",
1681
"type": "string",
1682
+
"const": "core:window:allow-is-resizable",
1683
+
"markdownDescription": "Enables the is_resizable command without any pre-configured scope."
1684
},
1685
{
1686
"description": "Enables the is_visible command without any pre-configured scope.",
1687
"type": "string",
1688
+
"const": "core:window:allow-is-visible",
1689
+
"markdownDescription": "Enables the is_visible command without any pre-configured scope."
1690
},
1691
{
1692
"description": "Enables the maximize command without any pre-configured scope.",
1693
"type": "string",
1694
+
"const": "core:window:allow-maximize",
1695
+
"markdownDescription": "Enables the maximize command without any pre-configured scope."
1696
},
1697
{
1698
"description": "Enables the minimize command without any pre-configured scope.",
1699
"type": "string",
1700
+
"const": "core:window:allow-minimize",
1701
+
"markdownDescription": "Enables the minimize command without any pre-configured scope."
1702
},
1703
{
1704
"description": "Enables the monitor_from_point command without any pre-configured scope.",
1705
"type": "string",
1706
+
"const": "core:window:allow-monitor-from-point",
1707
+
"markdownDescription": "Enables the monitor_from_point command without any pre-configured scope."
1708
},
1709
{
1710
"description": "Enables the outer_position command without any pre-configured scope.",
1711
"type": "string",
1712
+
"const": "core:window:allow-outer-position",
1713
+
"markdownDescription": "Enables the outer_position command without any pre-configured scope."
1714
},
1715
{
1716
"description": "Enables the outer_size command without any pre-configured scope.",
1717
"type": "string",
1718
+
"const": "core:window:allow-outer-size",
1719
+
"markdownDescription": "Enables the outer_size command without any pre-configured scope."
1720
},
1721
{
1722
"description": "Enables the primary_monitor command without any pre-configured scope.",
1723
"type": "string",
1724
+
"const": "core:window:allow-primary-monitor",
1725
+
"markdownDescription": "Enables the primary_monitor command without any pre-configured scope."
1726
},
1727
{
1728
"description": "Enables the request_user_attention command without any pre-configured scope.",
1729
"type": "string",
1730
+
"const": "core:window:allow-request-user-attention",
1731
+
"markdownDescription": "Enables the request_user_attention command without any pre-configured scope."
1732
},
1733
{
1734
"description": "Enables the scale_factor command without any pre-configured scope.",
1735
"type": "string",
1736
+
"const": "core:window:allow-scale-factor",
1737
+
"markdownDescription": "Enables the scale_factor command without any pre-configured scope."
1738
},
1739
{
1740
"description": "Enables the set_always_on_bottom command without any pre-configured scope.",
1741
"type": "string",
1742
+
"const": "core:window:allow-set-always-on-bottom",
1743
+
"markdownDescription": "Enables the set_always_on_bottom command without any pre-configured scope."
1744
},
1745
{
1746
"description": "Enables the set_always_on_top command without any pre-configured scope.",
1747
"type": "string",
1748
+
"const": "core:window:allow-set-always-on-top",
1749
+
"markdownDescription": "Enables the set_always_on_top command without any pre-configured scope."
1750
+
},
1751
+
{
1752
+
"description": "Enables the set_background_color command without any pre-configured scope.",
1753
+
"type": "string",
1754
+
"const": "core:window:allow-set-background-color",
1755
+
"markdownDescription": "Enables the set_background_color command without any pre-configured scope."
1756
+
},
1757
+
{
1758
+
"description": "Enables the set_badge_count command without any pre-configured scope.",
1759
+
"type": "string",
1760
+
"const": "core:window:allow-set-badge-count",
1761
+
"markdownDescription": "Enables the set_badge_count command without any pre-configured scope."
1762
+
},
1763
+
{
1764
+
"description": "Enables the set_badge_label command without any pre-configured scope.",
1765
+
"type": "string",
1766
+
"const": "core:window:allow-set-badge-label",
1767
+
"markdownDescription": "Enables the set_badge_label command without any pre-configured scope."
1768
},
1769
{
1770
"description": "Enables the set_closable command without any pre-configured scope.",
1771
"type": "string",
1772
+
"const": "core:window:allow-set-closable",
1773
+
"markdownDescription": "Enables the set_closable command without any pre-configured scope."
1774
},
1775
{
1776
"description": "Enables the set_content_protected command without any pre-configured scope.",
1777
"type": "string",
1778
+
"const": "core:window:allow-set-content-protected",
1779
+
"markdownDescription": "Enables the set_content_protected command without any pre-configured scope."
1780
},
1781
{
1782
"description": "Enables the set_cursor_grab command without any pre-configured scope.",
1783
"type": "string",
1784
+
"const": "core:window:allow-set-cursor-grab",
1785
+
"markdownDescription": "Enables the set_cursor_grab command without any pre-configured scope."
1786
},
1787
{
1788
"description": "Enables the set_cursor_icon command without any pre-configured scope.",
1789
"type": "string",
1790
+
"const": "core:window:allow-set-cursor-icon",
1791
+
"markdownDescription": "Enables the set_cursor_icon command without any pre-configured scope."
1792
},
1793
{
1794
"description": "Enables the set_cursor_position command without any pre-configured scope.",
1795
"type": "string",
1796
+
"const": "core:window:allow-set-cursor-position",
1797
+
"markdownDescription": "Enables the set_cursor_position command without any pre-configured scope."
1798
},
1799
{
1800
"description": "Enables the set_cursor_visible command without any pre-configured scope.",
1801
"type": "string",
1802
+
"const": "core:window:allow-set-cursor-visible",
1803
+
"markdownDescription": "Enables the set_cursor_visible command without any pre-configured scope."
1804
},
1805
{
1806
"description": "Enables the set_decorations command without any pre-configured scope.",
1807
"type": "string",
1808
+
"const": "core:window:allow-set-decorations",
1809
+
"markdownDescription": "Enables the set_decorations command without any pre-configured scope."
1810
},
1811
{
1812
"description": "Enables the set_effects command without any pre-configured scope.",
1813
"type": "string",
1814
+
"const": "core:window:allow-set-effects",
1815
+
"markdownDescription": "Enables the set_effects command without any pre-configured scope."
1816
},
1817
{
1818
"description": "Enables the set_enabled command without any pre-configured scope.",
1819
"type": "string",
1820
+
"const": "core:window:allow-set-enabled",
1821
+
"markdownDescription": "Enables the set_enabled command without any pre-configured scope."
1822
},
1823
{
1824
"description": "Enables the set_focus command without any pre-configured scope.",
1825
"type": "string",
1826
+
"const": "core:window:allow-set-focus",
1827
+
"markdownDescription": "Enables the set_focus command without any pre-configured scope."
1828
},
1829
{
1830
"description": "Enables the set_fullscreen command without any pre-configured scope.",
1831
"type": "string",
1832
+
"const": "core:window:allow-set-fullscreen",
1833
+
"markdownDescription": "Enables the set_fullscreen command without any pre-configured scope."
1834
},
1835
{
1836
"description": "Enables the set_icon command without any pre-configured scope.",
1837
"type": "string",
1838
+
"const": "core:window:allow-set-icon",
1839
+
"markdownDescription": "Enables the set_icon command without any pre-configured scope."
1840
},
1841
{
1842
"description": "Enables the set_ignore_cursor_events command without any pre-configured scope.",
1843
"type": "string",
1844
+
"const": "core:window:allow-set-ignore-cursor-events",
1845
+
"markdownDescription": "Enables the set_ignore_cursor_events command without any pre-configured scope."
1846
},
1847
{
1848
"description": "Enables the set_max_size command without any pre-configured scope.",
1849
"type": "string",
1850
+
"const": "core:window:allow-set-max-size",
1851
+
"markdownDescription": "Enables the set_max_size command without any pre-configured scope."
1852
},
1853
{
1854
"description": "Enables the set_maximizable command without any pre-configured scope.",
1855
"type": "string",
1856
+
"const": "core:window:allow-set-maximizable",
1857
+
"markdownDescription": "Enables the set_maximizable command without any pre-configured scope."
1858
},
1859
{
1860
"description": "Enables the set_min_size command without any pre-configured scope.",
1861
"type": "string",
1862
+
"const": "core:window:allow-set-min-size",
1863
+
"markdownDescription": "Enables the set_min_size command without any pre-configured scope."
1864
},
1865
{
1866
"description": "Enables the set_minimizable command without any pre-configured scope.",
1867
"type": "string",
1868
+
"const": "core:window:allow-set-minimizable",
1869
+
"markdownDescription": "Enables the set_minimizable command without any pre-configured scope."
1870
+
},
1871
+
{
1872
+
"description": "Enables the set_overlay_icon command without any pre-configured scope.",
1873
+
"type": "string",
1874
+
"const": "core:window:allow-set-overlay-icon",
1875
+
"markdownDescription": "Enables the set_overlay_icon command without any pre-configured scope."
1876
},
1877
{
1878
"description": "Enables the set_position command without any pre-configured scope.",
1879
"type": "string",
1880
+
"const": "core:window:allow-set-position",
1881
+
"markdownDescription": "Enables the set_position command without any pre-configured scope."
1882
},
1883
{
1884
"description": "Enables the set_progress_bar command without any pre-configured scope.",
1885
"type": "string",
1886
+
"const": "core:window:allow-set-progress-bar",
1887
+
"markdownDescription": "Enables the set_progress_bar command without any pre-configured scope."
1888
},
1889
{
1890
"description": "Enables the set_resizable command without any pre-configured scope.",
1891
"type": "string",
1892
+
"const": "core:window:allow-set-resizable",
1893
+
"markdownDescription": "Enables the set_resizable command without any pre-configured scope."
1894
},
1895
{
1896
"description": "Enables the set_shadow command without any pre-configured scope.",
1897
"type": "string",
1898
+
"const": "core:window:allow-set-shadow",
1899
+
"markdownDescription": "Enables the set_shadow command without any pre-configured scope."
1900
},
1901
{
1902
"description": "Enables the set_size command without any pre-configured scope.",
1903
"type": "string",
1904
+
"const": "core:window:allow-set-size",
1905
+
"markdownDescription": "Enables the set_size command without any pre-configured scope."
1906
},
1907
{
1908
"description": "Enables the set_size_constraints command without any pre-configured scope.",
1909
"type": "string",
1910
+
"const": "core:window:allow-set-size-constraints",
1911
+
"markdownDescription": "Enables the set_size_constraints command without any pre-configured scope."
1912
},
1913
{
1914
"description": "Enables the set_skip_taskbar command without any pre-configured scope.",
1915
"type": "string",
1916
+
"const": "core:window:allow-set-skip-taskbar",
1917
+
"markdownDescription": "Enables the set_skip_taskbar command without any pre-configured scope."
1918
},
1919
{
1920
"description": "Enables the set_theme command without any pre-configured scope.",
1921
"type": "string",
1922
+
"const": "core:window:allow-set-theme",
1923
+
"markdownDescription": "Enables the set_theme command without any pre-configured scope."
1924
},
1925
{
1926
"description": "Enables the set_title command without any pre-configured scope.",
1927
"type": "string",
1928
+
"const": "core:window:allow-set-title",
1929
+
"markdownDescription": "Enables the set_title command without any pre-configured scope."
1930
},
1931
{
1932
"description": "Enables the set_title_bar_style command without any pre-configured scope.",
1933
"type": "string",
1934
+
"const": "core:window:allow-set-title-bar-style",
1935
+
"markdownDescription": "Enables the set_title_bar_style command without any pre-configured scope."
1936
},
1937
{
1938
"description": "Enables the set_visible_on_all_workspaces command without any pre-configured scope.",
1939
"type": "string",
1940
+
"const": "core:window:allow-set-visible-on-all-workspaces",
1941
+
"markdownDescription": "Enables the set_visible_on_all_workspaces command without any pre-configured scope."
1942
},
1943
{
1944
"description": "Enables the show command without any pre-configured scope.",
1945
"type": "string",
1946
+
"const": "core:window:allow-show",
1947
+
"markdownDescription": "Enables the show command without any pre-configured scope."
1948
},
1949
{
1950
"description": "Enables the start_dragging command without any pre-configured scope.",
1951
"type": "string",
1952
+
"const": "core:window:allow-start-dragging",
1953
+
"markdownDescription": "Enables the start_dragging command without any pre-configured scope."
1954
},
1955
{
1956
"description": "Enables the start_resize_dragging command without any pre-configured scope.",
1957
"type": "string",
1958
+
"const": "core:window:allow-start-resize-dragging",
1959
+
"markdownDescription": "Enables the start_resize_dragging command without any pre-configured scope."
1960
},
1961
{
1962
"description": "Enables the theme command without any pre-configured scope.",
1963
"type": "string",
1964
+
"const": "core:window:allow-theme",
1965
+
"markdownDescription": "Enables the theme command without any pre-configured scope."
1966
},
1967
{
1968
"description": "Enables the title command without any pre-configured scope.",
1969
"type": "string",
1970
+
"const": "core:window:allow-title",
1971
+
"markdownDescription": "Enables the title command without any pre-configured scope."
1972
},
1973
{
1974
"description": "Enables the toggle_maximize command without any pre-configured scope.",
1975
"type": "string",
1976
+
"const": "core:window:allow-toggle-maximize",
1977
+
"markdownDescription": "Enables the toggle_maximize command without any pre-configured scope."
1978
},
1979
{
1980
"description": "Enables the unmaximize command without any pre-configured scope.",
1981
"type": "string",
1982
+
"const": "core:window:allow-unmaximize",
1983
+
"markdownDescription": "Enables the unmaximize command without any pre-configured scope."
1984
},
1985
{
1986
"description": "Enables the unminimize command without any pre-configured scope.",
1987
"type": "string",
1988
+
"const": "core:window:allow-unminimize",
1989
+
"markdownDescription": "Enables the unminimize command without any pre-configured scope."
1990
},
1991
{
1992
"description": "Denies the available_monitors command without any pre-configured scope.",
1993
"type": "string",
1994
+
"const": "core:window:deny-available-monitors",
1995
+
"markdownDescription": "Denies the available_monitors command without any pre-configured scope."
1996
},
1997
{
1998
"description": "Denies the center command without any pre-configured scope.",
1999
"type": "string",
2000
+
"const": "core:window:deny-center",
2001
+
"markdownDescription": "Denies the center command without any pre-configured scope."
2002
},
2003
{
2004
"description": "Denies the close command without any pre-configured scope.",
2005
"type": "string",
2006
+
"const": "core:window:deny-close",
2007
+
"markdownDescription": "Denies the close command without any pre-configured scope."
2008
},
2009
{
2010
"description": "Denies the create command without any pre-configured scope.",
2011
"type": "string",
2012
+
"const": "core:window:deny-create",
2013
+
"markdownDescription": "Denies the create command without any pre-configured scope."
2014
},
2015
{
2016
"description": "Denies the current_monitor command without any pre-configured scope.",
2017
"type": "string",
2018
+
"const": "core:window:deny-current-monitor",
2019
+
"markdownDescription": "Denies the current_monitor command without any pre-configured scope."
2020
},
2021
{
2022
"description": "Denies the cursor_position command without any pre-configured scope.",
2023
"type": "string",
2024
+
"const": "core:window:deny-cursor-position",
2025
+
"markdownDescription": "Denies the cursor_position command without any pre-configured scope."
2026
},
2027
{
2028
"description": "Denies the destroy command without any pre-configured scope.",
2029
"type": "string",
2030
+
"const": "core:window:deny-destroy",
2031
+
"markdownDescription": "Denies the destroy command without any pre-configured scope."
2032
},
2033
{
2034
"description": "Denies the get_all_windows command without any pre-configured scope.",
2035
"type": "string",
2036
+
"const": "core:window:deny-get-all-windows",
2037
+
"markdownDescription": "Denies the get_all_windows command without any pre-configured scope."
2038
},
2039
{
2040
"description": "Denies the hide command without any pre-configured scope.",
2041
"type": "string",
2042
+
"const": "core:window:deny-hide",
2043
+
"markdownDescription": "Denies the hide command without any pre-configured scope."
2044
},
2045
{
2046
"description": "Denies the inner_position command without any pre-configured scope.",
2047
"type": "string",
2048
+
"const": "core:window:deny-inner-position",
2049
+
"markdownDescription": "Denies the inner_position command without any pre-configured scope."
2050
},
2051
{
2052
"description": "Denies the inner_size command without any pre-configured scope.",
2053
"type": "string",
2054
+
"const": "core:window:deny-inner-size",
2055
+
"markdownDescription": "Denies the inner_size command without any pre-configured scope."
2056
},
2057
{
2058
"description": "Denies the internal_toggle_maximize command without any pre-configured scope.",
2059
"type": "string",
2060
+
"const": "core:window:deny-internal-toggle-maximize",
2061
+
"markdownDescription": "Denies the internal_toggle_maximize command without any pre-configured scope."
2062
+
},
2063
+
{
2064
+
"description": "Denies the is_always_on_top command without any pre-configured scope.",
2065
+
"type": "string",
2066
+
"const": "core:window:deny-is-always-on-top",
2067
+
"markdownDescription": "Denies the is_always_on_top command without any pre-configured scope."
2068
},
2069
{
2070
"description": "Denies the is_closable command without any pre-configured scope.",
2071
"type": "string",
2072
+
"const": "core:window:deny-is-closable",
2073
+
"markdownDescription": "Denies the is_closable command without any pre-configured scope."
2074
},
2075
{
2076
"description": "Denies the is_decorated command without any pre-configured scope.",
2077
"type": "string",
2078
+
"const": "core:window:deny-is-decorated",
2079
+
"markdownDescription": "Denies the is_decorated command without any pre-configured scope."
2080
},
2081
{
2082
"description": "Denies the is_enabled command without any pre-configured scope.",
2083
"type": "string",
2084
+
"const": "core:window:deny-is-enabled",
2085
+
"markdownDescription": "Denies the is_enabled command without any pre-configured scope."
2086
},
2087
{
2088
"description": "Denies the is_focused command without any pre-configured scope.",
2089
"type": "string",
2090
+
"const": "core:window:deny-is-focused",
2091
+
"markdownDescription": "Denies the is_focused command without any pre-configured scope."
2092
},
2093
{
2094
"description": "Denies the is_fullscreen command without any pre-configured scope.",
2095
"type": "string",
2096
+
"const": "core:window:deny-is-fullscreen",
2097
+
"markdownDescription": "Denies the is_fullscreen command without any pre-configured scope."
2098
},
2099
{
2100
"description": "Denies the is_maximizable command without any pre-configured scope.",
2101
"type": "string",
2102
+
"const": "core:window:deny-is-maximizable",
2103
+
"markdownDescription": "Denies the is_maximizable command without any pre-configured scope."
2104
},
2105
{
2106
"description": "Denies the is_maximized command without any pre-configured scope.",
2107
"type": "string",
2108
+
"const": "core:window:deny-is-maximized",
2109
+
"markdownDescription": "Denies the is_maximized command without any pre-configured scope."
2110
},
2111
{
2112
"description": "Denies the is_minimizable command without any pre-configured scope.",
2113
"type": "string",
2114
+
"const": "core:window:deny-is-minimizable",
2115
+
"markdownDescription": "Denies the is_minimizable command without any pre-configured scope."
2116
},
2117
{
2118
"description": "Denies the is_minimized command without any pre-configured scope.",
2119
"type": "string",
2120
+
"const": "core:window:deny-is-minimized",
2121
+
"markdownDescription": "Denies the is_minimized command without any pre-configured scope."
2122
},
2123
{
2124
"description": "Denies the is_resizable command without any pre-configured scope.",
2125
"type": "string",
2126
+
"const": "core:window:deny-is-resizable",
2127
+
"markdownDescription": "Denies the is_resizable command without any pre-configured scope."
2128
},
2129
{
2130
"description": "Denies the is_visible command without any pre-configured scope.",
2131
"type": "string",
2132
+
"const": "core:window:deny-is-visible",
2133
+
"markdownDescription": "Denies the is_visible command without any pre-configured scope."
2134
},
2135
{
2136
"description": "Denies the maximize command without any pre-configured scope.",
2137
"type": "string",
2138
+
"const": "core:window:deny-maximize",
2139
+
"markdownDescription": "Denies the maximize command without any pre-configured scope."
2140
},
2141
{
2142
"description": "Denies the minimize command without any pre-configured scope.",
2143
"type": "string",
2144
+
"const": "core:window:deny-minimize",
2145
+
"markdownDescription": "Denies the minimize command without any pre-configured scope."
2146
},
2147
{
2148
"description": "Denies the monitor_from_point command without any pre-configured scope.",
2149
"type": "string",
2150
+
"const": "core:window:deny-monitor-from-point",
2151
+
"markdownDescription": "Denies the monitor_from_point command without any pre-configured scope."
2152
},
2153
{
2154
"description": "Denies the outer_position command without any pre-configured scope.",
2155
"type": "string",
2156
+
"const": "core:window:deny-outer-position",
2157
+
"markdownDescription": "Denies the outer_position command without any pre-configured scope."
2158
},
2159
{
2160
"description": "Denies the outer_size command without any pre-configured scope.",
2161
"type": "string",
2162
+
"const": "core:window:deny-outer-size",
2163
+
"markdownDescription": "Denies the outer_size command without any pre-configured scope."
2164
},
2165
{
2166
"description": "Denies the primary_monitor command without any pre-configured scope.",
2167
"type": "string",
2168
+
"const": "core:window:deny-primary-monitor",
2169
+
"markdownDescription": "Denies the primary_monitor command without any pre-configured scope."
2170
},
2171
{
2172
"description": "Denies the request_user_attention command without any pre-configured scope.",
2173
"type": "string",
2174
+
"const": "core:window:deny-request-user-attention",
2175
+
"markdownDescription": "Denies the request_user_attention command without any pre-configured scope."
2176
},
2177
{
2178
"description": "Denies the scale_factor command without any pre-configured scope.",
2179
"type": "string",
2180
+
"const": "core:window:deny-scale-factor",
2181
+
"markdownDescription": "Denies the scale_factor command without any pre-configured scope."
2182
},
2183
{
2184
"description": "Denies the set_always_on_bottom command without any pre-configured scope.",
2185
"type": "string",
2186
+
"const": "core:window:deny-set-always-on-bottom",
2187
+
"markdownDescription": "Denies the set_always_on_bottom command without any pre-configured scope."
2188
},
2189
{
2190
"description": "Denies the set_always_on_top command without any pre-configured scope.",
2191
"type": "string",
2192
+
"const": "core:window:deny-set-always-on-top",
2193
+
"markdownDescription": "Denies the set_always_on_top command without any pre-configured scope."
2194
+
},
2195
+
{
2196
+
"description": "Denies the set_background_color command without any pre-configured scope.",
2197
+
"type": "string",
2198
+
"const": "core:window:deny-set-background-color",
2199
+
"markdownDescription": "Denies the set_background_color command without any pre-configured scope."
2200
+
},
2201
+
{
2202
+
"description": "Denies the set_badge_count command without any pre-configured scope.",
2203
+
"type": "string",
2204
+
"const": "core:window:deny-set-badge-count",
2205
+
"markdownDescription": "Denies the set_badge_count command without any pre-configured scope."
2206
+
},
2207
+
{
2208
+
"description": "Denies the set_badge_label command without any pre-configured scope.",
2209
+
"type": "string",
2210
+
"const": "core:window:deny-set-badge-label",
2211
+
"markdownDescription": "Denies the set_badge_label command without any pre-configured scope."
2212
},
2213
{
2214
"description": "Denies the set_closable command without any pre-configured scope.",
2215
"type": "string",
2216
+
"const": "core:window:deny-set-closable",
2217
+
"markdownDescription": "Denies the set_closable command without any pre-configured scope."
2218
},
2219
{
2220
"description": "Denies the set_content_protected command without any pre-configured scope.",
2221
"type": "string",
2222
+
"const": "core:window:deny-set-content-protected",
2223
+
"markdownDescription": "Denies the set_content_protected command without any pre-configured scope."
2224
},
2225
{
2226
"description": "Denies the set_cursor_grab command without any pre-configured scope.",
2227
"type": "string",
2228
+
"const": "core:window:deny-set-cursor-grab",
2229
+
"markdownDescription": "Denies the set_cursor_grab command without any pre-configured scope."
2230
},
2231
{
2232
"description": "Denies the set_cursor_icon command without any pre-configured scope.",
2233
"type": "string",
2234
+
"const": "core:window:deny-set-cursor-icon",
2235
+
"markdownDescription": "Denies the set_cursor_icon command without any pre-configured scope."
2236
},
2237
{
2238
"description": "Denies the set_cursor_position command without any pre-configured scope.",
2239
"type": "string",
2240
+
"const": "core:window:deny-set-cursor-position",
2241
+
"markdownDescription": "Denies the set_cursor_position command without any pre-configured scope."
2242
},
2243
{
2244
"description": "Denies the set_cursor_visible command without any pre-configured scope.",
2245
"type": "string",
2246
+
"const": "core:window:deny-set-cursor-visible",
2247
+
"markdownDescription": "Denies the set_cursor_visible command without any pre-configured scope."
2248
},
2249
{
2250
"description": "Denies the set_decorations command without any pre-configured scope.",
2251
"type": "string",
2252
+
"const": "core:window:deny-set-decorations",
2253
+
"markdownDescription": "Denies the set_decorations command without any pre-configured scope."
2254
},
2255
{
2256
"description": "Denies the set_effects command without any pre-configured scope.",
2257
"type": "string",
2258
+
"const": "core:window:deny-set-effects",
2259
+
"markdownDescription": "Denies the set_effects command without any pre-configured scope."
2260
},
2261
{
2262
"description": "Denies the set_enabled command without any pre-configured scope.",
2263
"type": "string",
2264
+
"const": "core:window:deny-set-enabled",
2265
+
"markdownDescription": "Denies the set_enabled command without any pre-configured scope."
2266
},
2267
{
2268
"description": "Denies the set_focus command without any pre-configured scope.",
2269
"type": "string",
2270
+
"const": "core:window:deny-set-focus",
2271
+
"markdownDescription": "Denies the set_focus command without any pre-configured scope."
2272
},
2273
{
2274
"description": "Denies the set_fullscreen command without any pre-configured scope.",
2275
"type": "string",
2276
+
"const": "core:window:deny-set-fullscreen",
2277
+
"markdownDescription": "Denies the set_fullscreen command without any pre-configured scope."
2278
},
2279
{
2280
"description": "Denies the set_icon command without any pre-configured scope.",
2281
"type": "string",
2282
+
"const": "core:window:deny-set-icon",
2283
+
"markdownDescription": "Denies the set_icon command without any pre-configured scope."
2284
},
2285
{
2286
"description": "Denies the set_ignore_cursor_events command without any pre-configured scope.",
2287
"type": "string",
2288
+
"const": "core:window:deny-set-ignore-cursor-events",
2289
+
"markdownDescription": "Denies the set_ignore_cursor_events command without any pre-configured scope."
2290
},
2291
{
2292
"description": "Denies the set_max_size command without any pre-configured scope.",
2293
"type": "string",
2294
+
"const": "core:window:deny-set-max-size",
2295
+
"markdownDescription": "Denies the set_max_size command without any pre-configured scope."
2296
},
2297
{
2298
"description": "Denies the set_maximizable command without any pre-configured scope.",
2299
"type": "string",
2300
+
"const": "core:window:deny-set-maximizable",
2301
+
"markdownDescription": "Denies the set_maximizable command without any pre-configured scope."
2302
},
2303
{
2304
"description": "Denies the set_min_size command without any pre-configured scope.",
2305
"type": "string",
2306
+
"const": "core:window:deny-set-min-size",
2307
+
"markdownDescription": "Denies the set_min_size command without any pre-configured scope."
2308
},
2309
{
2310
"description": "Denies the set_minimizable command without any pre-configured scope.",
2311
"type": "string",
2312
+
"const": "core:window:deny-set-minimizable",
2313
+
"markdownDescription": "Denies the set_minimizable command without any pre-configured scope."
2314
+
},
2315
+
{
2316
+
"description": "Denies the set_overlay_icon command without any pre-configured scope.",
2317
+
"type": "string",
2318
+
"const": "core:window:deny-set-overlay-icon",
2319
+
"markdownDescription": "Denies the set_overlay_icon command without any pre-configured scope."
2320
},
2321
{
2322
"description": "Denies the set_position command without any pre-configured scope.",
2323
"type": "string",
2324
+
"const": "core:window:deny-set-position",
2325
+
"markdownDescription": "Denies the set_position command without any pre-configured scope."
2326
},
2327
{
2328
"description": "Denies the set_progress_bar command without any pre-configured scope.",
2329
"type": "string",
2330
+
"const": "core:window:deny-set-progress-bar",
2331
+
"markdownDescription": "Denies the set_progress_bar command without any pre-configured scope."
2332
},
2333
{
2334
"description": "Denies the set_resizable command without any pre-configured scope.",
2335
"type": "string",
2336
+
"const": "core:window:deny-set-resizable",
2337
+
"markdownDescription": "Denies the set_resizable command without any pre-configured scope."
2338
},
2339
{
2340
"description": "Denies the set_shadow command without any pre-configured scope.",
2341
"type": "string",
2342
+
"const": "core:window:deny-set-shadow",
2343
+
"markdownDescription": "Denies the set_shadow command without any pre-configured scope."
2344
},
2345
{
2346
"description": "Denies the set_size command without any pre-configured scope.",
2347
"type": "string",
2348
+
"const": "core:window:deny-set-size",
2349
+
"markdownDescription": "Denies the set_size command without any pre-configured scope."
2350
},
2351
{
2352
"description": "Denies the set_size_constraints command without any pre-configured scope.",
2353
"type": "string",
2354
+
"const": "core:window:deny-set-size-constraints",
2355
+
"markdownDescription": "Denies the set_size_constraints command without any pre-configured scope."
2356
},
2357
{
2358
"description": "Denies the set_skip_taskbar command without any pre-configured scope.",
2359
"type": "string",
2360
+
"const": "core:window:deny-set-skip-taskbar",
2361
+
"markdownDescription": "Denies the set_skip_taskbar command without any pre-configured scope."
2362
},
2363
{
2364
"description": "Denies the set_theme command without any pre-configured scope.",
2365
"type": "string",
2366
+
"const": "core:window:deny-set-theme",
2367
+
"markdownDescription": "Denies the set_theme command without any pre-configured scope."
2368
},
2369
{
2370
"description": "Denies the set_title command without any pre-configured scope.",
2371
"type": "string",
2372
+
"const": "core:window:deny-set-title",
2373
+
"markdownDescription": "Denies the set_title command without any pre-configured scope."
2374
},
2375
{
2376
"description": "Denies the set_title_bar_style command without any pre-configured scope.",
2377
"type": "string",
2378
+
"const": "core:window:deny-set-title-bar-style",
2379
+
"markdownDescription": "Denies the set_title_bar_style command without any pre-configured scope."
2380
},
2381
{
2382
"description": "Denies the set_visible_on_all_workspaces command without any pre-configured scope.",
2383
"type": "string",
2384
+
"const": "core:window:deny-set-visible-on-all-workspaces",
2385
+
"markdownDescription": "Denies the set_visible_on_all_workspaces command without any pre-configured scope."
2386
},
2387
{
2388
"description": "Denies the show command without any pre-configured scope.",
2389
"type": "string",
2390
+
"const": "core:window:deny-show",
2391
+
"markdownDescription": "Denies the show command without any pre-configured scope."
2392
},
2393
{
2394
"description": "Denies the start_dragging command without any pre-configured scope.",
2395
"type": "string",
2396
+
"const": "core:window:deny-start-dragging",
2397
+
"markdownDescription": "Denies the start_dragging command without any pre-configured scope."
2398
},
2399
{
2400
"description": "Denies the start_resize_dragging command without any pre-configured scope.",
2401
"type": "string",
2402
+
"const": "core:window:deny-start-resize-dragging",
2403
+
"markdownDescription": "Denies the start_resize_dragging command without any pre-configured scope."
2404
},
2405
{
2406
"description": "Denies the theme command without any pre-configured scope.",
2407
"type": "string",
2408
+
"const": "core:window:deny-theme",
2409
+
"markdownDescription": "Denies the theme command without any pre-configured scope."
2410
},
2411
{
2412
"description": "Denies the title command without any pre-configured scope.",
2413
"type": "string",
2414
+
"const": "core:window:deny-title",
2415
+
"markdownDescription": "Denies the title command without any pre-configured scope."
2416
},
2417
{
2418
"description": "Denies the toggle_maximize command without any pre-configured scope.",
2419
"type": "string",
2420
+
"const": "core:window:deny-toggle-maximize",
2421
+
"markdownDescription": "Denies the toggle_maximize command without any pre-configured scope."
2422
},
2423
{
2424
"description": "Denies the unmaximize command without any pre-configured scope.",
2425
"type": "string",
2426
+
"const": "core:window:deny-unmaximize",
2427
+
"markdownDescription": "Denies the unmaximize command without any pre-configured scope."
2428
},
2429
{
2430
"description": "Denies the unminimize command without any pre-configured scope.",
2431
"type": "string",
2432
+
"const": "core:window:deny-unminimize",
2433
+
"markdownDescription": "Denies the unminimize command without any pre-configured scope."
2434
},
2435
{
2436
+
"description": "Allows reading the opened deep link via the get_current command\n#### This default permission set includes:\n\n- `allow-get-current`",
2437
"type": "string",
2438
+
"const": "deep-link:default",
2439
+
"markdownDescription": "Allows reading the opened deep link via the get_current command\n#### This default permission set includes:\n\n- `allow-get-current`"
2440
},
2441
{
2442
"description": "Enables the get_current command without any pre-configured scope.",
2443
"type": "string",
2444
+
"const": "deep-link:allow-get-current",
2445
+
"markdownDescription": "Enables the get_current command without any pre-configured scope."
2446
},
2447
{
2448
"description": "Enables the is_registered command without any pre-configured scope.",
2449
"type": "string",
2450
+
"const": "deep-link:allow-is-registered",
2451
+
"markdownDescription": "Enables the is_registered command without any pre-configured scope."
2452
},
2453
{
2454
"description": "Enables the register command without any pre-configured scope.",
2455
"type": "string",
2456
+
"const": "deep-link:allow-register",
2457
+
"markdownDescription": "Enables the register command without any pre-configured scope."
2458
},
2459
{
2460
"description": "Enables the unregister command without any pre-configured scope.",
2461
"type": "string",
2462
+
"const": "deep-link:allow-unregister",
2463
+
"markdownDescription": "Enables the unregister command without any pre-configured scope."
2464
},
2465
{
2466
"description": "Denies the get_current command without any pre-configured scope.",
2467
"type": "string",
2468
+
"const": "deep-link:deny-get-current",
2469
+
"markdownDescription": "Denies the get_current command without any pre-configured scope."
2470
},
2471
{
2472
"description": "Denies the is_registered command without any pre-configured scope.",
2473
"type": "string",
2474
+
"const": "deep-link:deny-is-registered",
2475
+
"markdownDescription": "Denies the is_registered command without any pre-configured scope."
2476
},
2477
{
2478
"description": "Denies the register command without any pre-configured scope.",
2479
"type": "string",
2480
+
"const": "deep-link:deny-register",
2481
+
"markdownDescription": "Denies the register command without any pre-configured scope."
2482
},
2483
{
2484
"description": "Denies the unregister command without any pre-configured scope.",
2485
"type": "string",
2486
+
"const": "deep-link:deny-unregister",
2487
+
"markdownDescription": "Denies the unregister command without any pre-configured scope."
2488
},
2489
{
2490
+
"description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-read-body`\n- `allow-fetch-send`",
2491
"type": "string",
2492
+
"const": "http:default",
2493
+
"markdownDescription": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-read-body`\n- `allow-fetch-send`"
2494
},
2495
{
2496
"description": "Enables the fetch command without any pre-configured scope.",
2497
"type": "string",
2498
+
"const": "http:allow-fetch",
2499
+
"markdownDescription": "Enables the fetch command without any pre-configured scope."
2500
},
2501
{
2502
"description": "Enables the fetch_cancel command without any pre-configured scope.",
2503
"type": "string",
2504
+
"const": "http:allow-fetch-cancel",
2505
+
"markdownDescription": "Enables the fetch_cancel command without any pre-configured scope."
2506
},
2507
{
2508
"description": "Enables the fetch_read_body command without any pre-configured scope.",
2509
"type": "string",
2510
+
"const": "http:allow-fetch-read-body",
2511
+
"markdownDescription": "Enables the fetch_read_body command without any pre-configured scope."
2512
},
2513
{
2514
"description": "Enables the fetch_send command without any pre-configured scope.",
2515
"type": "string",
2516
+
"const": "http:allow-fetch-send",
2517
+
"markdownDescription": "Enables the fetch_send command without any pre-configured scope."
2518
},
2519
{
2520
"description": "Denies the fetch command without any pre-configured scope.",
2521
"type": "string",
2522
+
"const": "http:deny-fetch",
2523
+
"markdownDescription": "Denies the fetch command without any pre-configured scope."
2524
},
2525
{
2526
"description": "Denies the fetch_cancel command without any pre-configured scope.",
2527
"type": "string",
2528
+
"const": "http:deny-fetch-cancel",
2529
+
"markdownDescription": "Denies the fetch_cancel command without any pre-configured scope."
2530
},
2531
{
2532
"description": "Denies the fetch_read_body command without any pre-configured scope.",
2533
"type": "string",
2534
+
"const": "http:deny-fetch-read-body",
2535
+
"markdownDescription": "Denies the fetch_read_body command without any pre-configured scope."
2536
},
2537
{
2538
"description": "Denies the fetch_send command without any pre-configured scope.",
2539
"type": "string",
2540
+
"const": "http:deny-fetch-send",
2541
+
"markdownDescription": "Denies the fetch_send command without any pre-configured scope."
2542
},
2543
{
2544
+
"description": "This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`",
2545
"type": "string",
2546
+
"const": "process:default",
2547
+
"markdownDescription": "This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`"
2548
},
2549
{
2550
"description": "Enables the exit command without any pre-configured scope.",
2551
"type": "string",
2552
+
"const": "process:allow-exit",
2553
+
"markdownDescription": "Enables the exit command without any pre-configured scope."
2554
},
2555
{
2556
"description": "Enables the restart command without any pre-configured scope.",
2557
"type": "string",
2558
+
"const": "process:allow-restart",
2559
+
"markdownDescription": "Enables the restart command without any pre-configured scope."
2560
},
2561
{
2562
"description": "Denies the exit command without any pre-configured scope.",
2563
"type": "string",
2564
+
"const": "process:deny-exit",
2565
+
"markdownDescription": "Denies the exit command without any pre-configured scope."
2566
},
2567
{
2568
"description": "Denies the restart command without any pre-configured scope.",
2569
"type": "string",
2570
+
"const": "process:deny-restart",
2571
+
"markdownDescription": "Denies the restart command without any pre-configured scope."
2572
},
2573
{
2574
+
"description": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`",
2575
"type": "string",
2576
+
"const": "shell:default",
2577
+
"markdownDescription": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`"
2578
},
2579
{
2580
"description": "Enables the execute command without any pre-configured scope.",
2581
"type": "string",
2582
+
"const": "shell:allow-execute",
2583
+
"markdownDescription": "Enables the execute command without any pre-configured scope."
2584
},
2585
{
2586
"description": "Enables the kill command without any pre-configured scope.",
2587
"type": "string",
2588
+
"const": "shell:allow-kill",
2589
+
"markdownDescription": "Enables the kill command without any pre-configured scope."
2590
},
2591
{
2592
"description": "Enables the open command without any pre-configured scope.",
2593
"type": "string",
2594
+
"const": "shell:allow-open",
2595
+
"markdownDescription": "Enables the open command without any pre-configured scope."
2596
},
2597
{
2598
"description": "Enables the spawn command without any pre-configured scope.",
2599
"type": "string",
2600
+
"const": "shell:allow-spawn",
2601
+
"markdownDescription": "Enables the spawn command without any pre-configured scope."
2602
},
2603
{
2604
"description": "Enables the stdin_write command without any pre-configured scope.",
2605
"type": "string",
2606
+
"const": "shell:allow-stdin-write",
2607
+
"markdownDescription": "Enables the stdin_write command without any pre-configured scope."
2608
},
2609
{
2610
"description": "Denies the execute command without any pre-configured scope.",
2611
"type": "string",
2612
+
"const": "shell:deny-execute",
2613
+
"markdownDescription": "Denies the execute command without any pre-configured scope."
2614
},
2615
{
2616
"description": "Denies the kill command without any pre-configured scope.",
2617
"type": "string",
2618
+
"const": "shell:deny-kill",
2619
+
"markdownDescription": "Denies the kill command without any pre-configured scope."
2620
},
2621
{
2622
"description": "Denies the open command without any pre-configured scope.",
2623
"type": "string",
2624
+
"const": "shell:deny-open",
2625
+
"markdownDescription": "Denies the open command without any pre-configured scope."
2626
},
2627
{
2628
"description": "Denies the spawn command without any pre-configured scope.",
2629
"type": "string",
2630
+
"const": "shell:deny-spawn",
2631
+
"markdownDescription": "Denies the spawn command without any pre-configured scope."
2632
},
2633
{
2634
"description": "Denies the stdin_write command without any pre-configured scope.",
2635
"type": "string",
2636
+
"const": "shell:deny-stdin-write",
2637
+
"markdownDescription": "Denies the stdin_write command without any pre-configured scope."
2638
}
2639
]
2640
},
+6
-3
src-tauri/src/frontend_calls/close_splashscreen.rs
+6
-3
src-tauri/src/frontend_calls/close_splashscreen.rs
···
1
use std::env;
2
-
use tauri::Manager;
3
4
use super::config::get_config_value_string;
5
6
#[tauri::command]
7
-
pub fn close_splashscreen(window: tauri::Window) {
8
let args: Vec<String> = env::args().collect();
9
10
let mut show = true;
···
20
}
21
22
if show {
23
-
window.get_webview_window("main").unwrap().show().unwrap();
24
}
25
}
···
1
use std::env;
2
+
use tauri::{ Emitter, Manager };
3
4
use super::config::get_config_value_string;
5
6
#[tauri::command]
7
+
pub fn close_splashscreen( window: tauri::Window ) {
8
let args: Vec<String> = env::args().collect();
9
10
let mut show = true;
···
20
}
21
22
if show {
23
+
let webview = window.get_webview_window("main").unwrap();
24
+
25
+
webview.show().unwrap();
26
+
webview.emit("show-window", 0).unwrap();
27
}
28
}
+3
-1
src-tauri/tauri.conf.json
+3
-1
src-tauri/tauri.conf.json
+1
-4
src/Components/App.tsx
+1
-4
src/Components/App.tsx
···
1
import { onMount } from "solid-js";
2
import anime from "animejs";
3
-
import { invoke } from '@tauri-apps/api/core';
4
5
import NavBar from "./NavBar";
6
import PhotoList from "./PhotoList";
7
import PhotoViewer from "./PhotoViewer";
8
import SettingsMenu from "./SettingsMenu";
9
10
-
function App() {
11
-
invoke('close_splashscreen')
12
-
13
onMount(() => {
14
anime.set('.settings',
15
{
···
1
import { onMount } from "solid-js";
2
import anime from "animejs";
3
4
import NavBar from "./NavBar";
5
import PhotoList from "./PhotoList";
6
import PhotoViewer from "./PhotoViewer";
7
import SettingsMenu from "./SettingsMenu";
8
9
+
let App = () => {
10
onMount(() => {
11
anime.set('.settings',
12
{
+2
-8
src/Components/Managers/PhotoManager.tsx
+2
-8
src/Components/Managers/PhotoManager.tsx
···
35
36
let setHasBeenIndexed;
37
[ this._hasBeenIndexed, setHasBeenIndexed ] = createSignal(false);
38
-
console.log(this._hasBeenIndexed())
39
40
listen('photos_loaded', ( event: any ) => {
41
let photoPaths = event.payload.photos.reverse();
···
44
setPhotoCount(photoPaths.length);
45
setPhotoSize(event.payload.size);
46
47
-
let doesHaveLegacy = false;
48
-
49
if(photoPaths.length <= Vars.MAX_PHOTOS_BULK_LOAD)
50
setHasBeenIndexed(true);
51
52
photoPaths.forEach(( path: string, i: number ) => {
53
let photo
54
55
-
if(path.slice(0, 9) === "legacy://"){
56
photo = new Photo(path.slice(9), true, i);
57
-
doesHaveLegacy = true;
58
-
} else
59
photo = new Photo(path, false, i);
60
61
this.Photos.push(photo);
···
75
76
this._finishedLoadingCallbacks.forEach(cb => cb());
77
}
78
-
79
-
console.log(this._hasBeenIndexed())
80
});
81
82
listen('photo_meta_loaded', ( event: any ) => {
···
35
36
let setHasBeenIndexed;
37
[ this._hasBeenIndexed, setHasBeenIndexed ] = createSignal(false);
38
39
listen('photos_loaded', ( event: any ) => {
40
let photoPaths = event.payload.photos.reverse();
···
43
setPhotoCount(photoPaths.length);
44
setPhotoSize(event.payload.size);
45
46
if(photoPaths.length <= Vars.MAX_PHOTOS_BULK_LOAD)
47
setHasBeenIndexed(true);
48
49
photoPaths.forEach(( path: string, i: number ) => {
50
let photo
51
52
+
if(path.slice(0, 9) === "legacy://")
53
photo = new Photo(path.slice(9), true, i);
54
+
else
55
photo = new Photo(path, false, i);
56
57
this.Photos.push(photo);
···
71
72
this._finishedLoadingCallbacks.forEach(cb => cb());
73
}
74
});
75
76
listen('photo_meta_loaded', ( event: any ) => {
+34
-18
src/Components/PhotoList.tsx
+34
-18
src/Components/PhotoList.tsx
···
5
import anime from "animejs";
6
import FilterMenu from "./FilterMenu";
7
import { ViewState } from "./Managers/ViewManager";
8
9
enum ListPopup{
10
FILTERS,
···
65
}
66
}
67
68
let closeCurrentPopup = () => {
69
switch(currentPopup){
70
case ListPopup.FILTERS:
···
83
}
84
}
85
86
-
let render = () => {
87
if(!quitRender)
88
requestAnimationFrame(render);
89
else
···
121
}
122
123
listen('hide-window', () => {
124
-
console.log('Hide Window');
125
quitRender = true;
126
})
127
128
listen('show-window', () => {
129
console.log('Shown Window');
130
-
quitRender = false;
131
132
-
if(window.PhotoManager.HasFirstLoaded)
133
requestAnimationFrame(render);
134
})
135
136
window.PhotoManager.OnLoadingFinished(() => {
137
anime({
138
targets: photoTreeLoadingContainer,
139
height: 0,
···
166
167
anime.set(scrollToTop, { opacity: 0, translateY: '-10px', display: 'none' });
168
169
-
photoContainer.addEventListener('wheel', ( e: WheelEvent ) => {
170
targetScroll += e.deltaY;
171
172
if(targetScroll < 0)
173
targetScroll = 0;
174
-
});
175
176
window.addEventListener('keyup', closeWithKey);
177
178
photoContainer.width = window.innerWidth;
179
photoContainer.height = window.innerHeight;
···
181
photoContainerBG.width = window.innerWidth;
182
photoContainerBG.height = window.innerHeight;
183
184
-
window.addEventListener('resize', () => {
185
-
photoContainer.width = window.innerWidth;
186
-
photoContainer.height = window.innerHeight;
187
-
188
-
photoContainerBG.width = window.innerWidth;
189
-
photoContainerBG.height = window.innerHeight;
190
-
191
-
window.PhotoListRenderingManager.ComputeLayout();
192
-
})
193
-
194
-
photoContainer.addEventListener('click', ( e: MouseEvent ) => {
195
let photo = window.PhotoManager.FilteredPhotos.find(x =>
196
e.clientX > x.x &&
197
e.clientY > x.y &&
···
204
window.PhotoViewerManager.OpenPhoto(photo);
205
// else
206
// currentPhotoIndex = -1;
207
-
})
208
})
209
210
onCleanup(() => {
211
window.removeEventListener('keyup', closeWithKey);
212
})
213
214
return (
···
5
import anime from "animejs";
6
import FilterMenu from "./FilterMenu";
7
import { ViewState } from "./Managers/ViewManager";
8
+
import { invoke } from "@tauri-apps/api/core";
9
10
enum ListPopup{
11
FILTERS,
···
66
}
67
}
68
69
+
let onResize = () => {
70
+
photoContainer.width = window.innerWidth;
71
+
photoContainer.height = window.innerHeight;
72
+
73
+
photoContainerBG.width = window.innerWidth;
74
+
photoContainerBG.height = window.innerHeight;
75
+
76
+
window.PhotoListRenderingManager.ComputeLayout();
77
+
}
78
+
79
let closeCurrentPopup = () => {
80
switch(currentPopup){
81
case ListPopup.FILTERS:
···
94
}
95
}
96
97
+
let render = () => {
98
if(!quitRender)
99
requestAnimationFrame(render);
100
else
···
132
}
133
134
listen('hide-window', () => {
135
quitRender = true;
136
+
console.log('Hide Window');
137
})
138
139
listen('show-window', () => {
140
+
if(quitRender)quitRender = false;
141
console.log('Shown Window');
142
+
143
+
photoContainer.width = window.innerWidth;
144
+
photoContainer.height = window.innerHeight;
145
+
146
+
photoContainerBG.width = window.innerWidth;
147
+
photoContainerBG.height = window.innerHeight;
148
149
+
if(window.PhotoManager.HasFirstLoaded){
150
requestAnimationFrame(render);
151
+
window.PhotoManager.HasFirstLoaded = false;
152
+
}
153
})
154
155
window.PhotoManager.OnLoadingFinished(() => {
156
+
invoke('close_splashscreen');
157
+
158
anime({
159
targets: photoTreeLoadingContainer,
160
height: 0,
···
187
188
anime.set(scrollToTop, { opacity: 0, translateY: '-10px', display: 'none' });
189
190
+
photoContainer.onwheel = ( e: WheelEvent ) => {
191
targetScroll += e.deltaY;
192
193
if(targetScroll < 0)
194
targetScroll = 0;
195
+
};
196
197
window.addEventListener('keyup', closeWithKey);
198
+
window.addEventListener('resize', onResize);
199
200
photoContainer.width = window.innerWidth;
201
photoContainer.height = window.innerHeight;
···
203
photoContainerBG.width = window.innerWidth;
204
photoContainerBG.height = window.innerHeight;
205
206
+
photoContainer.onclick = ( e: MouseEvent ) => {
207
let photo = window.PhotoManager.FilteredPhotos.find(x =>
208
e.clientX > x.x &&
209
e.clientY > x.y &&
···
216
window.PhotoViewerManager.OpenPhoto(photo);
217
// else
218
// currentPhotoIndex = -1;
219
+
}
220
})
221
222
onCleanup(() => {
223
+
photoContainer.onwheel = () => {};
224
+
photoContainer.onclick = () => {};
225
+
226
window.removeEventListener('keyup', closeWithKey);
227
+
window.removeEventListener('resize', onResize);
228
})
229
230
return (