Sat, 17 Apr 2021 12:21:37 +0200
Code Style Checker: added configuration options for the reworked the type annotations checker to the code style checker dialog.
8006
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1 | { |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
2 | "header": { |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
3 | "comment": "eric project file for project eric6", |
8047
b5594178c7fa
Made some more JSON file related changes and exported some dark styles in the new file format.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8006
diff
changeset
|
4 | "copyright": "Copyright (C) 2021 Detlev Offenbach, detlev@die-offenbachs.de" |
8006
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
5 | }, |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
6 | "project": { |
8125
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
7 | "AUTHOR": "Detlev Offenbach", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
8 | "CHECKERSPARMS": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
9 | "Pep8Checker": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
10 | "AnnotationsChecker": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
11 | "MaximumComplexity": 3, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
12 | "MinimumCoverage": 75 |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
13 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
14 | "BlankLines": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
15 | 2, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
16 | 1 |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
17 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
18 | "BuiltinsChecker": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
19 | "bytes": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
20 | "unicode" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
21 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
22 | "chr": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
23 | "unichr" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
24 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
25 | "str": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
26 | "unicode" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
27 | ] |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
28 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
29 | "CommentedCodeChecker": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
30 | "Aggressive": false, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
31 | "WhiteList": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
32 | "pylint", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
33 | "pyright", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
34 | "noqa", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
35 | "type:\\s*ignore", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
36 | "fmt:\\s*(on|off)", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
37 | "TODO", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
38 | "FIXME", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
39 | "WARNING", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
40 | "NOTE", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
41 | "TEST", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
42 | "DOCU", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
43 | "XXX", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
44 | "- " |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
45 | ] |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
46 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
47 | "CopyrightAuthor": "", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
48 | "CopyrightMinFileSize": 0, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
49 | "DocstringType": "eric", |
8205
4a0f1f896341
Applied some code simplifications suggested by the new Simplify checker.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8189
diff
changeset
|
50 | "EnabledCheckerCategories": "C, D, E, M, N, Y, W", |
8186
655b658aa7ee
Code Style Checker
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8168
diff
changeset
|
51 | "ExcludeFiles": "*/ThirdParty/*, */coverage/*, */Ui_*.py, */Examples/*, */*_rc.py,*/pycodestyle.py,*/pyflakes/checker.py,*/mccabe.py,*/eradicate.py,*/ast_unparse.py", |
8237
acc1490f822e
Applied some more code simplifications suggested by the new Simplify checker (Y116: use dictionary access instead of multiple ifs).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8221
diff
changeset
|
52 | "ExcludeMessages": "C101,E265,E266,E305,E402,M201,M301,M302,M303,M304,M305,M306,M307,M308,M311,M312,M313,M314,M315,M321,M701,M702,M811,M834,N802,N803,N807,N808,N821,W293,W504,Y119,Y401,Y402", |
8125
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
53 | "FixCodes": "", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
54 | "FixIssues": false, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
55 | "FutureChecker": "", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
56 | "HangClosing": false, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
57 | "IncludeMessages": "", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
58 | "LineComplexity": 25, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
59 | "LineComplexityScore": 10, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
60 | "MaxCodeComplexity": 10, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
61 | "MaxDocLineLength": 79, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
62 | "MaxLineLength": 79, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
63 | "NoFixCodes": "E501", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
64 | "RepeatMessages": true, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
65 | "SecurityChecker": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
66 | "CheckTypedException": false, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
67 | "HardcodedTmpDirectories": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
68 | "/tmp", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
69 | "/var/tmp", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
70 | "/dev/shm", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
71 | "~/tmp" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
72 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
73 | "InsecureHashes": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
74 | "md4", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
75 | "md5", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
76 | "sha", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
77 | "sha1" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
78 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
79 | "InsecureSslProtocolVersions": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
80 | "PROTOCOL_SSLv2", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
81 | "SSLv2_METHOD", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
82 | "SSLv23_METHOD", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
83 | "PROTOCOL_SSLv3", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
84 | "PROTOCOL_TLSv1", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
85 | "SSLv3_METHOD", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
86 | "TLSv1_METHOD" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
87 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
88 | "WeakKeySizeDsaHigh": "1024", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
89 | "WeakKeySizeDsaMedium": "2048", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
90 | "WeakKeySizeEcHigh": "160", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
91 | "WeakKeySizeEcMedium": "224", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
92 | "WeakKeySizeRsaHigh": "1024", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
93 | "WeakKeySizeRsaMedium": "2048" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
94 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
95 | "ShowIgnored": false, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
96 | "ValidEncodings": "latin-1, utf-8" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
97 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
98 | "SyntaxChecker": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
99 | "ExcludeFiles": "*/coverage/*, */ThirdParty/*, */Examples/*" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
100 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
101 | "Tabnanny": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
102 | "ExcludeFiles": "*/coverage/*, */ThirdParty/*, */Examples/*" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
103 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
104 | "Vulture": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
105 | "ExcludeFiles": "*/ThirdParty/*, */coverage/*, Ui_*.py, */Examples/*", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
106 | "SlotsAreUsed": true, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
107 | "WhiteLists": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
108 | "__patterns__": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
109 | "visit_*", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
110 | "on_*", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
111 | "*Completer", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
112 | "visit*" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
113 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
114 | "attribute": [], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
115 | "class": [], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
116 | "function": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
117 | "getOpenEditorsCount", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
118 | "_vcsRemove", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
119 | "getType", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
120 | "getImport", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
121 | "readPlistFromBytes", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
122 | "vcsSetData", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
123 | "_getglobal" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
124 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
125 | "property": [], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
126 | "slot": [], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
127 | "variable": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
128 | "Complexity_Weak", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
129 | "Complexity_Good", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
130 | "Complexity_Strong" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
131 | ] |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
132 | } |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
133 | } |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
134 | }, |
8006
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
135 | "DESCRIPTION": "eric6 is an integrated development environment for the Python language. It uses the PyQt5 bindings and the QScintilla2 editor widget.", |
8125
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
136 | "DOCSTRING": "ericdoc", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
137 | "DOCUMENTATIONPARMS": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
138 | "ERIC4API": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
139 | "ignoreDirectories": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
140 | "CSSs", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
141 | "DTDs", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
142 | "DesignerTemplates", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
143 | "Documentation", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
144 | "Examples", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
145 | "ThirdParty", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
146 | "corbatests", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
147 | "i18n", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
148 | "icons", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
149 | "pixmaps", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
150 | "tests", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
151 | "unittests", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
152 | "Styles", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
153 | "CodeTemplates", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
154 | ".ropeproject", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
155 | "patches", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
156 | "Dictionaries", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
157 | "coverage", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
158 | ".eric5project", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
159 | "_eric5project", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
160 | "_ropeproject", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
161 | ".hg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
162 | "_hg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
163 | ".directory", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
164 | ".issues", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
165 | "data", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
166 | "pyflakes", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
167 | ".eric6project", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
168 | "_eric6project" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
169 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
170 | "ignoreFilePatterns": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
171 | "Ui_*" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
172 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
173 | "languages": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
174 | "Python3" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
175 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
176 | "outputFile": "eric6/APIs/%L/eric6.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
177 | "useRecursion": true |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
178 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
179 | "ERIC4DOC": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
180 | "CFBgColor": "#4fa4ff", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
181 | "CFColor": "#ffffff", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
182 | "Level1HeaderBgColor": "#4fa4ff", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
183 | "Level1HeaderColor": "#ffffff", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
184 | "Level2HeaderBgColor": "#00557f", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
185 | "Level2HeaderColor": "#ffffff", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
186 | "LinkColor": "#aa5500", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
187 | "cssFile": "eric6/CSSs/default.css", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
188 | "ignoreDirectories": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
189 | "CSSs", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
190 | "DTDs", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
191 | "DesignerTemplates", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
192 | "Documentation", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
193 | "Examples", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
194 | "ThirdParty", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
195 | "corbatests", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
196 | "i18n", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
197 | "icons", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
198 | "pixmaps", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
199 | "tests", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
200 | "unittests", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
201 | "rb_tests", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
202 | "Styles", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
203 | "CodeTemplates", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
204 | ".ropeproject", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
205 | "patches", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
206 | "Dictionaries", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
207 | "coverage", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
208 | ".eric5project", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
209 | "_eric5project", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
210 | "_ropeproject", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
211 | ".hg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
212 | "_hg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
213 | ".directory", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
214 | ".issues", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
215 | "pyflakes", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
216 | ".eric6project", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
217 | "_eric6project" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
218 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
219 | "ignoreFilePatterns": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
220 | "Ui_*", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
221 | "*_rc.py" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
222 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
223 | "outputDirectory": "eric6/Documentation/Source", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
224 | "qtHelpEnabled": true, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
225 | "qtHelpFilterAttributes": "eric6:ide", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
226 | "qtHelpFilterName": "eric6", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
227 | "qtHelpNamespace": "org.eric6.ide", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
228 | "qtHelpOutputDirectory": "eric6/Documentation/Help", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
229 | "qtHelpTitle": "The eric6 IDE", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
230 | "qtHelpVirtualFolder": "eric6", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
231 | "useRecursion": true |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
232 | } |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
233 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
234 | "EMAIL": "detlev@die-offenbachs.de", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
235 | "EOL": 1, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
236 | "FILETYPES": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
237 | "*.idl": "INTERFACES", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
238 | "*.js": "OTHERS", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
239 | "*.py": "SOURCES", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
240 | "*.py3": "SOURCES", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
241 | "*.pyw": "SOURCES", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
242 | "*.pyw3": "SOURCES", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
243 | "*.qm": "TRANSLATIONS", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
244 | "*.qrc": "RESOURCES", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
245 | "*.rb": "SOURCES", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
246 | "*.ts": "TRANSLATIONS", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
247 | "*.ui": "FORMS", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
248 | "*.ui.h": "FORMS", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
249 | "Ui_*.py": "__IGNORE__", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
250 | "build": "__IGNORE__" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
251 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
252 | "FORMS": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
253 | "eric6/CondaInterface/CondaExecDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
254 | "eric6/CondaInterface/CondaExportDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
255 | "eric6/CondaInterface/CondaInfoDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
256 | "eric6/CondaInterface/CondaNewEnvironmentDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
257 | "eric6/CondaInterface/CondaPackageDetailsWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
258 | "eric6/CondaInterface/CondaPackagesWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
259 | "eric6/Cooperation/ChatWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
260 | "eric6/DataViews/CodeMetricsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
261 | "eric6/DataViews/PyCoverageDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
262 | "eric6/DataViews/PyProfileDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
263 | "eric6/Debugger/CallTraceViewer.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
264 | "eric6/Debugger/EditBreakpointDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
265 | "eric6/Debugger/EditWatchpointDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
266 | "eric6/Debugger/ExceptionsFilterDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
267 | "eric6/Debugger/StartCoverageDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
268 | "eric6/Debugger/StartDebugDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
269 | "eric6/Debugger/StartHistoryEditDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
270 | "eric6/Debugger/StartProfileDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
271 | "eric6/Debugger/StartRunDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
272 | "eric6/Debugger/VariableDetailDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
273 | "eric6/Debugger/VariablesFilterDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
274 | "eric6/E5Gui/E5ComboSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
275 | "eric6/E5Gui/E5ErrorMessageFilterDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
276 | "eric6/E5Gui/E5ListSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
277 | "eric6/E5Gui/E5PlainTextDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
278 | "eric6/E5Gui/E5ProcessDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
279 | "eric6/E5Gui/E5SimpleHelpDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
280 | "eric6/E5Gui/E5StringListEditWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
281 | "eric6/E5Gui/E5ToolBarDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
282 | "eric6/E5Gui/E5ZoomWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
283 | "eric6/E5Network/E5NetworkHeaderDetailsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
284 | "eric6/E5Network/E5SslCertificateSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
285 | "eric6/E5Network/E5SslCertificatesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
286 | "eric6/E5Network/E5SslCertificatesInfoDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
287 | "eric6/E5Network/E5SslCertificatesInfoWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
288 | "eric6/Graphics/UMLSceneSizeDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
289 | "eric6/HexEdit/HexEditGotoWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
290 | "eric6/HexEdit/HexEditReplaceWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
291 | "eric6/HexEdit/HexEditSearchWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
292 | "eric6/IconEditor/IconSizeDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
293 | "eric6/MicroPython/AddEditDevicesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
294 | "eric6/MicroPython/EspBackupRestoreFirmwareDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
295 | "eric6/MicroPython/EspFirmwareSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
296 | "eric6/MicroPython/IgnoredDevicesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
297 | "eric6/MicroPython/MicroPythonFileManagerWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
298 | "eric6/MicroPython/MicroPythonProgressInfoDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
299 | "eric6/MicroPython/MicroPythonWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
300 | "eric6/MicroPython/UF2FlashDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
301 | "eric6/MicroPython/UnknownDevicesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
302 | "eric6/MultiProject/AddProjectDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
303 | "eric6/MultiProject/PropertiesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
304 | "eric6/Network/IRC/IrcChannelEditDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
305 | "eric6/Network/IRC/IrcChannelWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
306 | "eric6/Network/IRC/IrcIdentitiesEditDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
307 | "eric6/Network/IRC/IrcNetworkEditDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
308 | "eric6/Network/IRC/IrcNetworkListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
309 | "eric6/Network/IRC/IrcNetworkWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
310 | "eric6/Network/IRC/IrcServerEditDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
311 | "eric6/Network/IRC/IrcWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
312 | "eric6/PipInterface/PipDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
313 | "eric6/PipInterface/PipFileSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
314 | "eric6/PipInterface/PipFreezeDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
315 | "eric6/PipInterface/PipPackageDetailsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
316 | "eric6/PipInterface/PipPackagesInputDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
317 | "eric6/PipInterface/PipPackagesWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
318 | "eric6/PluginManager/PluginDetailsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
319 | "eric6/PluginManager/PluginInfoDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
320 | "eric6/PluginManager/PluginInstallDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
321 | "eric6/PluginManager/PluginRepositoryDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
322 | "eric6/PluginManager/PluginUninstallDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
323 | "eric6/Plugins/AboutPlugin/AboutDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
324 | "eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleAddBuiltinIgnoreDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
325 | "eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
326 | "eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
327 | "eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleStatisticsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
328 | "eric6/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
329 | "eric6/Plugins/DocumentationPlugins/Ericapi/EricapiConfigDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
330 | "eric6/Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
331 | "eric6/Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
332 | "eric6/Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
333 | "eric6/Plugins/UiExtensionPlugins/Translator/ConfigurationPage/TranslatorPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
334 | "eric6/Plugins/UiExtensionPlugins/Translator/TranslatorWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
335 | "eric6/Plugins/VcsPlugins/vcsGit/ConfigurationPage/GitPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
336 | "eric6/Plugins/VcsPlugins/vcsGit/GitAddRemoteDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
337 | "eric6/Plugins/VcsPlugins/vcsGit/GitApplyBundleDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
338 | "eric6/Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
339 | "eric6/Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
340 | "eric6/Plugins/VcsPlugins/vcsGit/GitBisectStartDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
341 | "eric6/Plugins/VcsPlugins/vcsGit/GitBlameDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
342 | "eric6/Plugins/VcsPlugins/vcsGit/GitBranchDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
343 | "eric6/Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
344 | "eric6/Plugins/VcsPlugins/vcsGit/GitBundleDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
345 | "eric6/Plugins/VcsPlugins/vcsGit/GitChangeRemoteUrlDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
346 | "eric6/Plugins/VcsPlugins/vcsGit/GitCherryPickDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
347 | "eric6/Plugins/VcsPlugins/vcsGit/GitCommandDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
348 | "eric6/Plugins/VcsPlugins/vcsGit/GitCommitDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
349 | "eric6/Plugins/VcsPlugins/vcsGit/GitCopyDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
350 | "eric6/Plugins/VcsPlugins/vcsGit/GitDescribeDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
351 | "eric6/Plugins/VcsPlugins/vcsGit/GitDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
352 | "eric6/Plugins/VcsPlugins/vcsGit/GitDiffDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
353 | "eric6/Plugins/VcsPlugins/vcsGit/GitFetchDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
354 | "eric6/Plugins/VcsPlugins/vcsGit/GitListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
355 | "eric6/Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
356 | "eric6/Plugins/VcsPlugins/vcsGit/GitMergeDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
357 | "eric6/Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
358 | "eric6/Plugins/VcsPlugins/vcsGit/GitOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
359 | "eric6/Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
360 | "eric6/Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
361 | "eric6/Plugins/VcsPlugins/vcsGit/GitPullDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
362 | "eric6/Plugins/VcsPlugins/vcsGit/GitPushDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
363 | "eric6/Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
364 | "eric6/Plugins/VcsPlugins/vcsGit/GitRemoteCredentialsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
365 | "eric6/Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
366 | "eric6/Plugins/VcsPlugins/vcsGit/GitRevisionSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
367 | "eric6/Plugins/VcsPlugins/vcsGit/GitRevisionsSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
368 | "eric6/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
369 | "eric6/Plugins/VcsPlugins/vcsGit/GitStashDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
370 | "eric6/Plugins/VcsPlugins/vcsGit/GitStatusDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
371 | "eric6/Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
372 | "eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesDeinitDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
373 | "eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
374 | "eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesStatusDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
375 | "eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesSummaryOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
376 | "eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesSyncDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
377 | "eric6/Plugins/VcsPlugins/vcsGit/GitSubmodulesUpdateOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
378 | "eric6/Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
379 | "eric6/Plugins/VcsPlugins/vcsGit/GitTagDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
380 | "eric6/Plugins/VcsPlugins/vcsGit/GitUserConfigDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
381 | "eric6/Plugins/VcsPlugins/vcsMercurial/CloseheadExtension/HgCloseHeadSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
382 | "eric6/Plugins/VcsPlugins/vcsMercurial/ConfigurationPage/MercurialPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
383 | "eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
384 | "eric6/Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
385 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
386 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
387 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgArchiveDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
388 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
389 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
390 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgBookmarkRenameDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
391 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
392 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
393 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgBranchInputDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
394 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgBundleDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
395 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgClientPromptDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
396 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgCommandDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
397 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgCommitDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
398 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
399 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgCopyDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
400 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
401 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
402 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgExportDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
403 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgGraftDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
404 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgImportDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
405 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
406 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgMergeDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
407 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgMultiRevisionSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
408 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgNewProjectOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
409 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
410 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgPhaseDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
411 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgRemoveSubrepositoriesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
412 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgRepoConfigDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
413 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgRevisionSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
414 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgRevisionsSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
415 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
416 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
417 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
418 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgTagDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
419 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
420 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgUserConfigHostFingerprintDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
421 | "eric6/Plugins/VcsPlugins/vcsMercurial/HgUserConfigHostMinimumProtocolDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
422 | "eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditCommitEditor.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
423 | "eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditConfigDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
424 | "eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditPlanEditor.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
425 | "eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/LfConvertDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
426 | "eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/LfRevisionsInputDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
427 | "eric6/Plugins/VcsPlugins/vcsMercurial/PurgeExtension/HgPurgeListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
428 | "eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
429 | "eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesFoldDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
430 | "eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
431 | "eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
432 | "eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListAllGuardsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
433 | "eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
434 | "eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListGuardsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
435 | "eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesNewPatchDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
436 | "eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
437 | "eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesRenamePatchDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
438 | "eric6/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/HgRebaseDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
439 | "eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
440 | "eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
441 | "eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelvesSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
442 | "eric6/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgUnshelveDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
443 | "eric6/Plugins/VcsPlugins/vcsMercurial/StripExtension/HgStripDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
444 | "eric6/Plugins/VcsPlugins/vcsPySvn/ConfigurationPage/SubversionPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
445 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
446 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnChangeListsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
447 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnCommandDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
448 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnCommitDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
449 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnCopyDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
450 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
451 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
452 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
453 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnLoginDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
454 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnMergeDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
455 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
456 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
457 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnPropDelDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
458 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
459 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnPropSetDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
460 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnRelocateDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
461 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
462 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnRevisionSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
463 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
464 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnSwitchDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
465 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
466 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
467 | "eric6/Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
468 | "eric6/Plugins/VcsPlugins/vcsSubversion/ConfigurationPage/SubversionPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
469 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
470 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
471 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnCommandDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
472 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnCommitDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
473 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
474 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
475 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
476 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
477 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnMergeDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
478 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
479 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
480 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
481 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnPropSetDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
482 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnRelocateDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
483 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
484 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnRevisionSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
485 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
486 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnSwitchDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
487 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
488 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnTagDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
489 | "eric6/Plugins/VcsPlugins/vcsSubversion/SvnUrlSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
490 | "eric6/Plugins/WizardPlugins/ColorDialogWizard/ColorDialogWizardDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
491 | "eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopListSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
492 | "eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
493 | "eric6/Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
494 | "eric6/Plugins/WizardPlugins/EricPluginWizard/PluginWizardDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
495 | "eric6/Plugins/WizardPlugins/FileDialogWizard/FileDialogWizardDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
496 | "eric6/Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
497 | "eric6/Plugins/WizardPlugins/InputDialogWizard/InputDialogWizardDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
498 | "eric6/Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
499 | "eric6/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
500 | "eric6/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
501 | "eric6/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardRepeatDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
502 | "eric6/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardCharactersDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
503 | "eric6/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
504 | "eric6/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardRepeatDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
505 | "eric6/Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
506 | "eric6/Preferences/ConfigurationPages/ApplicationPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
507 | "eric6/Preferences/ConfigurationPages/CondaPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
508 | "eric6/Preferences/ConfigurationPages/CooperationPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
509 | "eric6/Preferences/ConfigurationPages/CorbaPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
510 | "eric6/Preferences/ConfigurationPages/DebuggerGeneralPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
511 | "eric6/Preferences/ConfigurationPages/DebuggerPython3Page.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
512 | "eric6/Preferences/ConfigurationPages/DiffColoursPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
513 | "eric6/Preferences/ConfigurationPages/EditorAPIsPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
514 | "eric6/Preferences/ConfigurationPages/EditorAutocompletionPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
515 | "eric6/Preferences/ConfigurationPages/EditorAutocompletionQScintillaPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
516 | "eric6/Preferences/ConfigurationPages/EditorCalltipsPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
517 | "eric6/Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
518 | "eric6/Preferences/ConfigurationPages/EditorDocViewerPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
519 | "eric6/Preferences/ConfigurationPages/EditorExportersPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
520 | "eric6/Preferences/ConfigurationPages/EditorFilePage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
521 | "eric6/Preferences/ConfigurationPages/EditorGeneralPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
522 | "eric6/Preferences/ConfigurationPages/EditorHighlightersPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
523 | "eric6/Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
524 | "eric6/Preferences/ConfigurationPages/EditorHighlightingStylesSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
525 | "eric6/Preferences/ConfigurationPages/EditorKeywordsPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
526 | "eric6/Preferences/ConfigurationPages/EditorLanguageTabIndentOverrideDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
527 | "eric6/Preferences/ConfigurationPages/EditorMouseClickHandlerPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
528 | "eric6/Preferences/ConfigurationPages/EditorPropertiesPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
529 | "eric6/Preferences/ConfigurationPages/EditorSearchPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
530 | "eric6/Preferences/ConfigurationPages/EditorSpellCheckingPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
531 | "eric6/Preferences/ConfigurationPages/EditorStylesPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
532 | "eric6/Preferences/ConfigurationPages/EditorSyntaxPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
533 | "eric6/Preferences/ConfigurationPages/EditorTypingPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
534 | "eric6/Preferences/ConfigurationPages/EmailPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
535 | "eric6/Preferences/ConfigurationPages/GraphicsPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
536 | "eric6/Preferences/ConfigurationPages/HelpDocumentationPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
537 | "eric6/Preferences/ConfigurationPages/HelpViewersPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
538 | "eric6/Preferences/ConfigurationPages/HexEditorPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
539 | "eric6/Preferences/ConfigurationPages/IconsPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
540 | "eric6/Preferences/ConfigurationPages/IconsPreviewDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
541 | "eric6/Preferences/ConfigurationPages/InterfacePage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
542 | "eric6/Preferences/ConfigurationPages/IrcPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
543 | "eric6/Preferences/ConfigurationPages/LogViewerPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
544 | "eric6/Preferences/ConfigurationPages/MasterPasswordEntryDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
545 | "eric6/Preferences/ConfigurationPages/MicroPythonPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
546 | "eric6/Preferences/ConfigurationPages/MimeTypesPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
547 | "eric6/Preferences/ConfigurationPages/MultiProjectPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
548 | "eric6/Preferences/ConfigurationPages/NetworkPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
549 | "eric6/Preferences/ConfigurationPages/NotificationsPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
550 | "eric6/Preferences/ConfigurationPages/PipPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
551 | "eric6/Preferences/ConfigurationPages/PluginManagerPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
552 | "eric6/Preferences/ConfigurationPages/PrinterPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
553 | "eric6/Preferences/ConfigurationPages/ProjectBrowserPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
554 | "eric6/Preferences/ConfigurationPages/ProjectPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
555 | "eric6/Preferences/ConfigurationPages/ProtobufPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
556 | "eric6/Preferences/ConfigurationPages/PythonPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
557 | "eric6/Preferences/ConfigurationPages/QtPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
558 | "eric6/Preferences/ConfigurationPages/SecurityPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
559 | "eric6/Preferences/ConfigurationPages/ShellPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
560 | "eric6/Preferences/ConfigurationPages/TasksPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
561 | "eric6/Preferences/ConfigurationPages/TemplatesPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
562 | "eric6/Preferences/ConfigurationPages/TrayStarterPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
563 | "eric6/Preferences/ConfigurationPages/VcsPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
564 | "eric6/Preferences/ConfigurationPages/ViewmanagerPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
565 | "eric6/Preferences/ConfigurationPages/WebBrowserAppearancePage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
566 | "eric6/Preferences/ConfigurationPages/WebBrowserInterfacePage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
567 | "eric6/Preferences/ConfigurationPages/WebBrowserPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
568 | "eric6/Preferences/ConfigurationPages/WebBrowserSpellCheckingPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
569 | "eric6/Preferences/ConfigurationPages/WebBrowserVirusTotalPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
570 | "eric6/Preferences/MouseClickDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
571 | "eric6/Preferences/ProgramsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
572 | "eric6/Preferences/ShortcutDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
573 | "eric6/Preferences/ShortcutsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
574 | "eric6/Preferences/SubstyleDefinitionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
575 | "eric6/Preferences/ToolConfigurationDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
576 | "eric6/Preferences/ToolGroupConfigurationDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
577 | "eric6/Preferences/ViewProfileSidebarsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
578 | "eric6/Preferences/ViewProfileToolboxesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
579 | "eric6/Project/AddDirectoryDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
580 | "eric6/Project/AddFileDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
581 | "eric6/Project/AddFoundFilesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
582 | "eric6/Project/AddLanguageDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
583 | "eric6/Project/CreateDialogCodeDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
584 | "eric6/Project/DebuggerPropertiesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
585 | "eric6/Project/FiletypeAssociationDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
586 | "eric6/Project/IdlCompilerDefineNameDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
587 | "eric6/Project/IdlCompilerOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
588 | "eric6/Project/LexerAssociationDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
589 | "eric6/Project/MakePropertiesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
590 | "eric6/Project/NewDialogClassDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
591 | "eric6/Project/NewPythonPackageDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
592 | "eric6/Project/PropertiesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
593 | "eric6/Project/QuickFindFile.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
594 | "eric6/Project/RccCompilerOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
595 | "eric6/Project/SpellingPropertiesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
596 | "eric6/Project/TranslationPropertiesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
597 | "eric6/Project/UicCompilerOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
598 | "eric6/Project/UserPropertiesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
599 | "eric6/PyUnit/UnittestDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
600 | "eric6/PyUnit/UnittestStacktraceDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
601 | "eric6/QScintilla/GotoDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
602 | "eric6/QScintilla/MarkupProviders/HyperlinkMarkupDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
603 | "eric6/QScintilla/MarkupProviders/ImageMarkupDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
604 | "eric6/QScintilla/ReplaceWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
605 | "eric6/QScintilla/SearchWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
606 | "eric6/QScintilla/ShellHistoryDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
607 | "eric6/QScintilla/SortOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
608 | "eric6/QScintilla/SpellCheckingDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
609 | "eric6/QScintilla/SpellingDictionaryEditDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
610 | "eric6/QScintilla/ZoomDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
611 | "eric6/Snapshot/SnapWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
612 | "eric6/SqlBrowser/SqlBrowserWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
613 | "eric6/SqlBrowser/SqlConnectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
614 | "eric6/Tasks/TaskFilterConfigDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
615 | "eric6/Tasks/TaskPropertiesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
616 | "eric6/Templates/TemplatePropertiesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
617 | "eric6/Templates/TemplateSingleVariableDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
618 | "eric6/UI/AuthenticationDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
619 | "eric6/UI/ClearPrivateDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
620 | "eric6/UI/CompareDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
621 | "eric6/UI/DeleteFilesConfirmationDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
622 | "eric6/UI/DiffDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
623 | "eric6/UI/EmailDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
624 | "eric6/UI/ErrorLogDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
625 | "eric6/UI/FindFileDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
626 | "eric6/UI/FindFileNameDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
627 | "eric6/UI/InstallInfoDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
628 | "eric6/UI/NotificationFrame.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
629 | "eric6/UI/NumbersWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
630 | "eric6/UI/Previewers/PreviewerQSS.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
631 | "eric6/UI/PythonDisViewer.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
632 | "eric6/UI/SearchWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
633 | "eric6/UI/SearchWidgetLine.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
634 | "eric6/UI/SymbolsWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
635 | "eric6/VCS/CommandOptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
636 | "eric6/VCS/RepositoryInfoDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
637 | "eric6/ViewManager/BookmarkedFilesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
638 | "eric6/VirtualEnv/VirtualenvAddEditDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
639 | "eric6/VirtualEnv/VirtualenvConfigurationDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
640 | "eric6/VirtualEnv/VirtualenvExecDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
641 | "eric6/VirtualEnv/VirtualenvInterpreterSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
642 | "eric6/VirtualEnv/VirtualenvManagerDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
643 | "eric6/VirtualEnv/VirtualenvNameDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
644 | "eric6/WebBrowser/AdBlock/AdBlockDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
645 | "eric6/WebBrowser/AdBlock/AdBlockExceptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
646 | "eric6/WebBrowser/Bookmarks/AddBookmarkDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
647 | "eric6/WebBrowser/Bookmarks/BookmarkPropertiesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
648 | "eric6/WebBrowser/Bookmarks/BookmarksDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
649 | "eric6/WebBrowser/Bookmarks/BookmarksImportDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
650 | "eric6/WebBrowser/CookieJar/CookieDetailsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
651 | "eric6/WebBrowser/CookieJar/CookiesConfigurationDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
652 | "eric6/WebBrowser/CookieJar/CookiesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
653 | "eric6/WebBrowser/CookieJar/CookiesExceptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
654 | "eric6/WebBrowser/Download/DownloadAskActionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
655 | "eric6/WebBrowser/Download/DownloadItem.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
656 | "eric6/WebBrowser/Download/DownloadManager.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
657 | "eric6/WebBrowser/FeaturePermissions/FeaturePermissionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
658 | "eric6/WebBrowser/Feeds/FeedEditDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
659 | "eric6/WebBrowser/Feeds/FeedsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
660 | "eric6/WebBrowser/Feeds/FeedsManager.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
661 | "eric6/WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
662 | "eric6/WebBrowser/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
663 | "eric6/WebBrowser/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationScriptInfoDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
664 | "eric6/WebBrowser/History/HistoryDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
665 | "eric6/WebBrowser/Network/ProtocolHandlerManagerDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
666 | "eric6/WebBrowser/Network/SendRefererWhitelistDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
667 | "eric6/WebBrowser/Network/SslErrorExceptionsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
668 | "eric6/WebBrowser/OpenSearch/OpenSearchDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
669 | "eric6/WebBrowser/OpenSearch/OpenSearchEditDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
670 | "eric6/WebBrowser/PageScreenDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
671 | "eric6/WebBrowser/Passwords/PasswordsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
672 | "eric6/WebBrowser/PersonalInformationManager/PersonalDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
673 | "eric6/WebBrowser/QtHelp/HelpTopicDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
674 | "eric6/WebBrowser/QtHelp/QtHelpDocumentationDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
675 | "eric6/WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
676 | "eric6/WebBrowser/SafeBrowsing/SafeBrowsingDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
677 | "eric6/WebBrowser/SearchWidget.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
678 | "eric6/WebBrowser/Session/SessionManagerDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
679 | "eric6/WebBrowser/SiteInfo/SiteInfoDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
680 | "eric6/WebBrowser/SpellCheck/ManageDictionariesDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
681 | "eric6/WebBrowser/StatusBar/JavaScriptSettingsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
682 | "eric6/WebBrowser/Sync/SyncCheckPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
683 | "eric6/WebBrowser/Sync/SyncDataPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
684 | "eric6/WebBrowser/Sync/SyncDirectorySettingsPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
685 | "eric6/WebBrowser/Sync/SyncEncryptionPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
686 | "eric6/WebBrowser/Sync/SyncFtpSettingsPage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
687 | "eric6/WebBrowser/Sync/SyncHostTypePage.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
688 | "eric6/WebBrowser/Tools/PrintToPdfDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
689 | "eric6/WebBrowser/Tools/WebIconDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
690 | "eric6/WebBrowser/UrlBar/BookmarkActionSelectionDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
691 | "eric6/WebBrowser/UrlBar/BookmarkInfoDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
692 | "eric6/WebBrowser/UserAgent/UserAgentsDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
693 | "eric6/WebBrowser/VirusTotal/VirusTotalDomainReportDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
694 | "eric6/WebBrowser/VirusTotal/VirusTotalIpReportDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
695 | "eric6/WebBrowser/VirusTotal/VirusTotalWhoisDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
696 | "eric6/WebBrowser/WebBrowserClearPrivateDataDialog.ui", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
697 | "eric6/WebBrowser/WebBrowserLanguagesDialog.ui", |
8134
a5c4ac339f2a
MicroPython: finished adding manual connection capability with device type and port selection.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8125
diff
changeset
|
698 | "eric6/WebBrowser/ZoomManager/ZoomValuesDialog.ui", |
a5c4ac339f2a
MicroPython: finished adding manual connection capability with device type and port selection.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8125
diff
changeset
|
699 | "eric6/MicroPython/ConnectionSelectionDialog.ui" |
8125
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
700 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
701 | "HASH": "df7daa8781250f7664e6ecaeaf1361fa2efd39ee", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
702 | "IDLPARAMS": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
703 | "DefinedNames": [], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
704 | "IncludeDirs": [], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
705 | "UndefinedNames": [] |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
706 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
707 | "INTERFACES": [], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
708 | "LEXERASSOCS": {}, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
709 | "MAINSCRIPT": "eric6/eric6.py", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
710 | "MAKEPARAMS": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
711 | "MakeEnabled": false, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
712 | "MakeExecutable": "", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
713 | "MakeFile": "", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
714 | "MakeParameters": "", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
715 | "MakeTarget": "", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
716 | "MakeTestOnly": true |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
717 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
718 | "MIXEDLANGUAGE": false, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
719 | "OTHERS": [ |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
720 | ".hgignore", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
721 | "DTDs", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
722 | "Dictionaries", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
723 | "MANIFEST.in", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
724 | "docs/LICENSE.GPL3", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
725 | "docs/README-MacOSX.rst", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
726 | "docs/README-eric6-doc.rst", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
727 | "docs/README-i18n.rst", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
728 | "docs/README-passive-debugging.rst", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
729 | "docs/README.rst", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
730 | "docs/THANKS", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
731 | "docs/changelog", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
732 | "eric6.e4p", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
733 | "eric6.epj", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
734 | "eric6/APIs/MicroPython/calliope.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
735 | "eric6/APIs/MicroPython/circuitpython.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
736 | "eric6/APIs/MicroPython/microbit.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
737 | "eric6/APIs/MicroPython/micropython.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
738 | "eric6/APIs/Python/zope-2.10.7.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
739 | "eric6/APIs/Python/zope-2.11.2.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
740 | "eric6/APIs/Python/zope-3.3.1.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
741 | "eric6/APIs/Python3/PyQt4.bas", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
742 | "eric6/APIs/Python3/PyQt5.bas", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
743 | "eric6/APIs/Python3/PyQtChart.bas", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
744 | "eric6/APIs/Python3/PyQtWebEngine.bas", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
745 | "eric6/APIs/Python3/QScintilla2.bas", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
746 | "eric6/APIs/Python3/eric6.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
747 | "eric6/APIs/Python3/eric6.bas", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
748 | "eric6/APIs/QSS/qss.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
749 | "eric6/APIs/Ruby/Ruby-1.8.7.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
750 | "eric6/APIs/Ruby/Ruby-1.8.7.bas", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
751 | "eric6/APIs/Ruby/Ruby-1.9.1.api", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
752 | "eric6/APIs/Ruby/Ruby-1.9.1.bas", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
753 | "eric6/CSSs", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
754 | "eric6/CodeTemplates", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
755 | "eric6/DebugClients/Python/coverage/doc", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
756 | "eric6/DesignerTemplates", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
757 | "eric6/Documentation/Help", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
758 | "eric6/Documentation/Source", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
759 | "eric6/E5Network/data/effective_tld_names.dat", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
760 | "eric6/E5Network/data/test_psl.txt", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
761 | "eric6/IconEditor/cursors/aim-cursor.xpm", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
762 | "eric6/IconEditor/cursors/colorpicker-cursor.xpm", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
763 | "eric6/IconEditor/cursors/eraser-cursor.xpm", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
764 | "eric6/IconEditor/cursors/fill-cursor.xpm", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
765 | "eric6/IconEditor/cursors/paintbrush-cursor.xpm", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
766 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/deepl-dark.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
767 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/deepl-light.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
768 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/glosbe.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
769 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/googlev1.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
770 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/googlev2.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
771 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/ibm_watson-dark.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
772 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/ibm_watson-light.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
773 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/microsoft-dark.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
774 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/microsoft-light.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
775 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/mymemory-dark.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
776 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/mymemory-light.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
777 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/promt.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
778 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/yandex-dark.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
779 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/engines/yandex-light.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
780 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flag-dark.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
781 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flag-light.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
782 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/af.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
783 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/ar.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
784 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/be.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
785 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/bg.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
786 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/bs.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
787 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/ca.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
788 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/cs.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
789 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/da.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
790 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/de.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
791 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/el.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
792 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/en.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
793 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/es.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
794 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/et.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
795 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/fi.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
796 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/fr.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
797 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/ga.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
798 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/gl.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
799 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/he.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
800 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/hi.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
801 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/hr.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
802 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/hu.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
803 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/id.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
804 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/is.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
805 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/it.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
806 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/iw.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
807 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/ja.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
808 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/ka.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
809 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/ko.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
810 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/lt.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
811 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/lv.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
812 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/mk.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
813 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/mt.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
814 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/nl.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
815 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/no.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
816 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/pl.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
817 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/pt.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
818 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/ro.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
819 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/ru.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
820 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/sk.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
821 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/sl.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
822 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/sq.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
823 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/sr.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
824 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/sv.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
825 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/th.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
826 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/tl.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
827 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/tr.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
828 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/uk.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
829 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/vi.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
830 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/zh-CN.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
831 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/flags/zh-TW.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
832 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/pronounce-dark.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
833 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/pronounce-light.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
834 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/swap-dark.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
835 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/swap-light.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
836 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/translate-dark.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
837 | "eric6/Plugins/UiExtensionPlugins/Translator/icons/translate-light.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
838 | "eric6/Plugins/VcsPlugins/vcsGit/icons/conflict.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
839 | "eric6/Plugins/VcsPlugins/vcsGit/icons/git.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
840 | "eric6/Plugins/VcsPlugins/vcsGit/icons/git92.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
841 | "eric6/Plugins/VcsPlugins/vcsGit/icons/preferences-git.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
842 | "eric6/Plugins/VcsPlugins/vcsMercurial/icons/mercurial.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
843 | "eric6/Plugins/VcsPlugins/vcsMercurial/icons/preferences-mercurial.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
844 | "eric6/Plugins/VcsPlugins/vcsMercurial/icons/startServer-dark.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
845 | "eric6/Plugins/VcsPlugins/vcsMercurial/icons/startServer-light.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
846 | "eric6/Plugins/VcsPlugins/vcsMercurial/icons/stopServer-dark.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
847 | "eric6/Plugins/VcsPlugins/vcsMercurial/icons/stopServer-light.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
848 | "eric6/Plugins/VcsPlugins/vcsMercurial/templates/logBrowserBookmarkPhase.tmpl", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
849 | "eric6/Plugins/VcsPlugins/vcsPySvn/icons/preferences-subversion.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
850 | "eric6/Plugins/VcsPlugins/vcsPySvn/icons/pysvn.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
851 | "eric6/Plugins/VcsPlugins/vcsSubversion/icons/preferences-subversion.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
852 | "eric6/Plugins/VcsPlugins/vcsSubversion/icons/subversion.svg", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
853 | "eric6/Plugins/ViewManagerPlugins/Listspace/preview.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
854 | "eric6/Plugins/ViewManagerPlugins/Tabview/preview.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
855 | "eric6/Plugins/WizardPlugins/SetupWizard/data/trove_classifiers.txt", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
856 | "eric6/Styles", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
857 | "eric6/ThirdParty/CharDet/LICENSE", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
858 | "eric6/ThirdParty/CharDet/README.rst", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
859 | "eric6/ThirdParty/EditorConfig/COPYING", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
860 | "eric6/ThirdParty/EditorConfig/LICENSE.BSD", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
861 | "eric6/ThirdParty/EditorConfig/LICENSE.PSF", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
862 | "eric6/ThirdParty/EditorConfig/README.rst", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
863 | "eric6/ThirdParty/Jasy/jasy/license.md", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
864 | "eric6/ThirdParty/Pygments/pygments/AUTHORS", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
865 | "eric6/ThirdParty/Pygments/pygments/CHANGES", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
866 | "eric6/ThirdParty/Pygments/pygments/LICENSE", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
867 | "eric6/ThirdParty/Pygments/pygments/PKG-INFO", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
868 | "eric6/ThirdParty/Send2Trash/LICENSE", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
869 | "eric6/ThirdParty/Send2Trash/PKG-INFO", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
870 | "eric6/ThirdParty/asttokens/asttokens/LICENSE", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
871 | "eric6/UI/data/documentViewerStyle-dark.css", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
872 | "eric6/UI/data/documentViewerStyle-light.css", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
873 | "eric6/WebBrowser/Bookmarks/DefaultBookmarks.xbel", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
874 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Amazoncom.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
875 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Bing.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
876 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/DeEn_Beolingus.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
877 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/DuckDuckGo.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
878 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Facebook.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
879 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Google.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
880 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Google_Im_Feeling_Lucky.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
881 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/LEO_DeuEng.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
882 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/LinuxMagazin.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
883 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/MetaGer_MetaGer2.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
884 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/PyPI.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
885 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Qwant.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
886 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Reddit.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
887 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/StartPage_de.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
888 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/StartPage_en.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
889 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Wikia.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
890 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Wikia_en.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
891 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Wikipedia.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
892 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Wiktionary.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
893 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/Yahoo.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
894 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/YouTube.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
895 | "eric6/WebBrowser/OpenSearch/DefaultSearchEngines/searxme.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
896 | "eric6/WebBrowser/UserAgent/UserAgentDefaults.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
897 | "eric6/WebBrowser/data/html/adblockPage.html", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
898 | "eric6/WebBrowser/data/html/authenticationErrorPage.html", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
899 | "eric6/WebBrowser/data/html/ericErrorPage.html", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
900 | "eric6/WebBrowser/data/html/speeddialPage.html", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
901 | "eric6/WebBrowser/data/html/startPage.html", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
902 | "eric6/WebBrowser/data/html/tabCrashPage.html", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
903 | "eric6/WebBrowser/data/icons/adBlockPlus16.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
904 | "eric6/WebBrowser/data/icons/adBlockPlus64.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
905 | "eric6/WebBrowser/data/icons/box-border-small.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
906 | "eric6/WebBrowser/data/icons/brokenPage.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
907 | "eric6/WebBrowser/data/icons/close.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
908 | "eric6/WebBrowser/data/icons/edit.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
909 | "eric6/WebBrowser/data/icons/ericWeb16.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
910 | "eric6/WebBrowser/data/icons/ericWeb32.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
911 | "eric6/WebBrowser/data/icons/loading.gif", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
912 | "eric6/WebBrowser/data/icons/plus.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
913 | "eric6/WebBrowser/data/icons/reload.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
914 | "eric6/WebBrowser/data/icons/setting.png", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
915 | "eric6/WebBrowser/data/javascript/jquery-ui.js", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
916 | "eric6/WebBrowser/data/javascript/jquery.js", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
917 | "eric6/WebBrowser/data/javascript/qwebchannel.js", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
918 | "eric6/icons", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
919 | "eric6/pixmaps", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
920 | "linux/eric6.appdata.xml", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
921 | "linux/eric6.appdata.xml.in", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
922 | "linux/eric6.desktop", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
923 | "linux/eric6.desktop.in", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
924 | "linux/eric6_browser.desktop", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
925 | "linux/eric6_browser.desktop.in", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
926 | "others/default.e4k", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
927 | "others/default.ekj", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
928 | "others/default_Mac.e4k", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
929 | "others/pylint.rc" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
930 | ], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
931 | "OTHERTOOLSPARMS": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
932 | "CodeMetrics": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
933 | "ExcludeFiles": "*/ThirdParty/*, */coverage/*, Ui_*.py" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
934 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
935 | "RadonCodeMetrics": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
936 | "ExcludeFiles": "*/ThirdParty/*, */coverage/*, Ui_*.py, *_rc.py" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
937 | } |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
938 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
939 | "PACKAGERSPARMS": {}, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
940 | "PROGLANGUAGE": "Python3", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
941 | "PROJECTTYPE": "PyQt5", |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
942 | "PROJECTTYPESPECIFICDATA": {}, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
943 | "PROTOCOLS": [], |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
944 | "RCCPARAMS": { |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
945 | "CompressLevel": 0, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
946 | "CompressionDisable": false, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
947 | "CompressionThreshold": 70, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
948 | "PathPrefix": "" |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
949 | }, |
9e789fa8f38e
Saving the project file with sorted dictionary keys to get more stability into it.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8123
diff
changeset
|
950 | "RESOURCES": [], |
8006
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
951 | "SOURCES": [ |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
952 | "Examples/hallo.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
953 | "Examples/modpython.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
954 | "Examples/modpython_dbg.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
955 | "Examples/rhallo.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
956 | "eric6/CondaInterface/Conda.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
957 | "eric6/CondaInterface/CondaExecDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
958 | "eric6/CondaInterface/CondaExportDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
959 | "eric6/CondaInterface/CondaInfoDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
960 | "eric6/CondaInterface/CondaNewEnvironmentDataDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
961 | "eric6/CondaInterface/CondaPackageDetailsWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
962 | "eric6/CondaInterface/CondaPackagesWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
963 | "eric6/CondaInterface/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
964 | "eric6/Cooperation/ChatWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
965 | "eric6/Cooperation/Connection.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
966 | "eric6/Cooperation/CooperationClient.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
967 | "eric6/Cooperation/CooperationServer.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
968 | "eric6/Cooperation/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
969 | "eric6/DataViews/CodeMetrics.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
970 | "eric6/DataViews/CodeMetricsDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
971 | "eric6/DataViews/PyCoverageDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
972 | "eric6/DataViews/PyProfileDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
973 | "eric6/DataViews/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
974 | "eric6/DebugClients/Python/AsyncFile.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
975 | "eric6/DebugClients/Python/BreakpointWatch.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
976 | "eric6/DebugClients/Python/DCTestResult.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
977 | "eric6/DebugClients/Python/DebugBase.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
978 | "eric6/DebugClients/Python/DebugClient.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
979 | "eric6/DebugClients/Python/DebugClientBase.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
980 | "eric6/DebugClients/Python/DebugClientCapabilities.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
981 | "eric6/DebugClients/Python/DebugConfig.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
982 | "eric6/DebugClients/Python/DebugUtilities.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
983 | "eric6/DebugClients/Python/DebugVariables.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
984 | "eric6/DebugClients/Python/FlexCompleter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
985 | "eric6/DebugClients/Python/ModuleLoader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
986 | "eric6/DebugClients/Python/MultiProcessDebugExtension.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
987 | "eric6/DebugClients/Python/MultiprocessingExtension.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
988 | "eric6/DebugClients/Python/PyProfile.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
989 | "eric6/DebugClients/Python/QProcessExtension.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
990 | "eric6/DebugClients/Python/SubprocessExtension.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
991 | "eric6/DebugClients/Python/ThreadExtension.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
992 | "eric6/DebugClients/Python/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
993 | "eric6/DebugClients/Python/coverage/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
994 | "eric6/DebugClients/Python/coverage/__main__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
995 | "eric6/DebugClients/Python/coverage/annotate.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
996 | "eric6/DebugClients/Python/coverage/backunittest.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
997 | "eric6/DebugClients/Python/coverage/backward.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
998 | "eric6/DebugClients/Python/coverage/bytecode.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
999 | "eric6/DebugClients/Python/coverage/cmdline.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1000 | "eric6/DebugClients/Python/coverage/collector.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1001 | "eric6/DebugClients/Python/coverage/config.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1002 | "eric6/DebugClients/Python/coverage/context.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1003 | "eric6/DebugClients/Python/coverage/control.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1004 | "eric6/DebugClients/Python/coverage/data.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1005 | "eric6/DebugClients/Python/coverage/debug.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1006 | "eric6/DebugClients/Python/coverage/disposition.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1007 | "eric6/DebugClients/Python/coverage/env.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1008 | "eric6/DebugClients/Python/coverage/execfile.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1009 | "eric6/DebugClients/Python/coverage/files.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1010 | "eric6/DebugClients/Python/coverage/html.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1011 | "eric6/DebugClients/Python/coverage/inorout.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1012 | "eric6/DebugClients/Python/coverage/jsonreport.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1013 | "eric6/DebugClients/Python/coverage/misc.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1014 | "eric6/DebugClients/Python/coverage/multiproc.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1015 | "eric6/DebugClients/Python/coverage/numbits.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1016 | "eric6/DebugClients/Python/coverage/optional.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1017 | "eric6/DebugClients/Python/coverage/parser.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1018 | "eric6/DebugClients/Python/coverage/phystokens.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1019 | "eric6/DebugClients/Python/coverage/plugin.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1020 | "eric6/DebugClients/Python/coverage/plugin_support.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1021 | "eric6/DebugClients/Python/coverage/python.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1022 | "eric6/DebugClients/Python/coverage/pytracer.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1023 | "eric6/DebugClients/Python/coverage/report.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1024 | "eric6/DebugClients/Python/coverage/results.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1025 | "eric6/DebugClients/Python/coverage/sqldata.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1026 | "eric6/DebugClients/Python/coverage/summary.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1027 | "eric6/DebugClients/Python/coverage/templite.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1028 | "eric6/DebugClients/Python/coverage/tomlconfig.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1029 | "eric6/DebugClients/Python/coverage/version.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1030 | "eric6/DebugClients/Python/coverage/xmlreport.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1031 | "eric6/DebugClients/Python/eric6dbgstub.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1032 | "eric6/DebugClients/Python/getpass.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1033 | "eric6/DebugClients/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1034 | "eric6/Debugger/BreakPointModel.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1035 | "eric6/Debugger/BreakPointViewer.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1036 | "eric6/Debugger/CallStackViewer.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1037 | "eric6/Debugger/CallTraceViewer.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1038 | "eric6/Debugger/Config.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1039 | "eric6/Debugger/DebugClientCapabilities.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1040 | "eric6/Debugger/DebugServer.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1041 | "eric6/Debugger/DebugUI.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1042 | "eric6/Debugger/DebugViewer.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1043 | "eric6/Debugger/DebuggerInterfaceNone.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1044 | "eric6/Debugger/DebuggerInterfacePython.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1045 | "eric6/Debugger/EditBreakpointDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1046 | "eric6/Debugger/EditWatchpointDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1047 | "eric6/Debugger/ExceptionLogger.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1048 | "eric6/Debugger/ExceptionsFilterDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1049 | "eric6/Debugger/StartDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1050 | "eric6/Debugger/StartHistoryEditDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1051 | "eric6/Debugger/VariableDetailDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1052 | "eric6/Debugger/VariablesFilterDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1053 | "eric6/Debugger/VariablesViewer.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1054 | "eric6/Debugger/WatchPointModel.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1055 | "eric6/Debugger/WatchPointViewer.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1056 | "eric6/Debugger/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1057 | "eric6/DocumentationTools/APIGenerator.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1058 | "eric6/DocumentationTools/Config.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1059 | "eric6/DocumentationTools/IndexGenerator.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1060 | "eric6/DocumentationTools/ModuleDocumentor.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1061 | "eric6/DocumentationTools/QtHelpGenerator.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1062 | "eric6/DocumentationTools/TemplatesListsStyle.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1063 | "eric6/DocumentationTools/TemplatesListsStyleCSS.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1064 | "eric6/DocumentationTools/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1065 | "eric6/E5Graphics/E5ArrowItem.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1066 | "eric6/E5Graphics/E5GraphicsView.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1067 | "eric6/E5Graphics/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1068 | "eric6/E5Gui/E5Action.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1069 | "eric6/E5Gui/E5AnimatedLabel.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1070 | "eric6/E5Gui/E5AnimatedWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1071 | "eric6/E5Gui/E5Application.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1072 | "eric6/E5Gui/E5ClickableLabel.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1073 | "eric6/E5Gui/E5ComboBox.py", |
8047
b5594178c7fa
Made some more JSON file related changes and exported some dark styles in the new file format.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8006
diff
changeset
|
1074 | "eric6/E5Gui/E5ComboSelectionDialog.py", |
8006
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1075 | "eric6/E5Gui/E5Completers.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1076 | "eric6/E5Gui/E5ErrorMessage.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1077 | "eric6/E5Gui/E5ErrorMessageFilterDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1078 | "eric6/E5Gui/E5FileDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1079 | "eric6/E5Gui/E5FileSaveConfirmDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1080 | "eric6/E5Gui/E5GenericDiffHighlighter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1081 | "eric6/E5Gui/E5Led.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1082 | "eric6/E5Gui/E5LineEdit.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1083 | "eric6/E5Gui/E5LineEditButton.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1084 | "eric6/E5Gui/E5ListSelectionDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1085 | "eric6/E5Gui/E5ListView.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1086 | "eric6/E5Gui/E5MainWindow.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1087 | "eric6/E5Gui/E5MapWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1088 | "eric6/E5Gui/E5MessageBox.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1089 | "eric6/E5Gui/E5ModelMenu.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1090 | "eric6/E5Gui/E5ModelToolBar.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1091 | "eric6/E5Gui/E5OverrideCursor.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1092 | "eric6/E5Gui/E5PassivePopup.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1093 | "eric6/E5Gui/E5PasswordMeter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1094 | "eric6/E5Gui/E5PathPicker.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1095 | "eric6/E5Gui/E5PathPickerDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1096 | "eric6/E5Gui/E5PlainTextDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1097 | "eric6/E5Gui/E5ProcessDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1098 | "eric6/E5Gui/E5ProgressDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1099 | "eric6/E5Gui/E5SideBar.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1100 | "eric6/E5Gui/E5SimpleHelpDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1101 | "eric6/E5Gui/E5SingleApplication.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1102 | "eric6/E5Gui/E5SqueezeLabels.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1103 | "eric6/E5Gui/E5StringListEditWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1104 | "eric6/E5Gui/E5TabWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1105 | "eric6/E5Gui/E5TableView.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1106 | "eric6/E5Gui/E5TextEditSearchWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1107 | "eric6/E5Gui/E5TextInputDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1108 | "eric6/E5Gui/E5TextSpinBox.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1109 | "eric6/E5Gui/E5ToolBarDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1110 | "eric6/E5Gui/E5ToolBarManager.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1111 | "eric6/E5Gui/E5ToolBox.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1112 | "eric6/E5Gui/E5ToolButton.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1113 | "eric6/E5Gui/E5TreeSortFilterProxyModel.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1114 | "eric6/E5Gui/E5TreeView.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1115 | "eric6/E5Gui/E5TreeWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1116 | "eric6/E5Gui/E5ZoomWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1117 | "eric6/E5Gui/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1118 | "eric6/E5Network/E5Ftp.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1119 | "eric6/E5Network/E5GoogleMail.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1120 | "eric6/E5Network/E5GoogleMailHelpers.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1121 | "eric6/E5Network/E5NetworkHeaderDetailsDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1122 | "eric6/E5Network/E5NetworkProxyFactory.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1123 | "eric6/E5Network/E5RFC6266.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1124 | "eric6/E5Network/E5SslCertificateSelectionDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1125 | "eric6/E5Network/E5SslCertificatesDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1126 | "eric6/E5Network/E5SslCertificatesInfoDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1127 | "eric6/E5Network/E5SslCertificatesInfoWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1128 | "eric6/E5Network/E5SslErrorHandler.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1129 | "eric6/E5Network/E5SslInfoWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1130 | "eric6/E5Network/E5SslUtilities.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1131 | "eric6/E5Network/E5TldExtractor.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1132 | "eric6/E5Network/E5UrlInfo.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1133 | "eric6/E5Network/E5XmlRpcClient.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1134 | "eric6/E5Network/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1135 | "eric6/E5Network/data/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1136 | "eric6/E5Utilities/E5Cache.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1137 | "eric6/E5Utilities/E5MutexLocker.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1138 | "eric6/E5Utilities/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1139 | "eric6/E5XML/Config.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1140 | "eric6/E5XML/DebuggerPropertiesReader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1141 | "eric6/E5XML/DebuggerPropertiesWriter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1142 | "eric6/E5XML/HighlightingStylesReader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1143 | "eric6/E5XML/HighlightingStylesWriter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1144 | "eric6/E5XML/MultiProjectReader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1145 | "eric6/E5XML/MultiProjectWriter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1146 | "eric6/E5XML/PluginRepositoryReader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1147 | "eric6/E5XML/ProjectReader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1148 | "eric6/E5XML/ProjectWriter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1149 | "eric6/E5XML/SessionReader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1150 | "eric6/E5XML/SessionWriter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1151 | "eric6/E5XML/ShortcutsReader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1152 | "eric6/E5XML/ShortcutsWriter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1153 | "eric6/E5XML/SpellCheckDictionariesReader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1154 | "eric6/E5XML/TasksReader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1155 | "eric6/E5XML/TasksWriter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1156 | "eric6/E5XML/TemplatesReader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1157 | "eric6/E5XML/TemplatesWriter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1158 | "eric6/E5XML/UserProjectReader.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1159 | "eric6/E5XML/UserProjectWriter.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1160 | "eric6/E5XML/XMLStreamReaderBase.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1161 | "eric6/E5XML/XMLStreamWriterBase.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1162 | "eric6/E5XML/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1163 | "eric6/Globals/AppInfo.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1164 | "eric6/Globals/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1165 | "eric6/Graphics/ApplicationDiagramBuilder.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1166 | "eric6/Graphics/AssociationItem.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1167 | "eric6/Graphics/ClassItem.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1168 | "eric6/Graphics/GraphicsUtilities.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1169 | "eric6/Graphics/ImportsDiagramBuilder.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1170 | "eric6/Graphics/ModuleItem.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1171 | "eric6/Graphics/PackageDiagramBuilder.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1172 | "eric6/Graphics/PackageItem.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1173 | "eric6/Graphics/PixmapDiagram.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1174 | "eric6/Graphics/SvgDiagram.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1175 | "eric6/Graphics/UMLClassDiagramBuilder.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1176 | "eric6/Graphics/UMLDiagramBuilder.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1177 | "eric6/Graphics/UMLDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1178 | "eric6/Graphics/UMLGraphicsView.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1179 | "eric6/Graphics/UMLItem.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1180 | "eric6/Graphics/UMLSceneSizeDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1181 | "eric6/Graphics/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1182 | "eric6/HexEdit/HexEditChunks.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1183 | "eric6/HexEdit/HexEditGotoWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1184 | "eric6/HexEdit/HexEditMainWindow.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1185 | "eric6/HexEdit/HexEditSearchReplaceWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1186 | "eric6/HexEdit/HexEditUndoStack.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1187 | "eric6/HexEdit/HexEditWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1188 | "eric6/HexEdit/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1189 | "eric6/IconEditor/IconEditorGrid.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1190 | "eric6/IconEditor/IconEditorPalette.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1191 | "eric6/IconEditor/IconEditorWindow.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1192 | "eric6/IconEditor/IconSizeDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1193 | "eric6/IconEditor/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1194 | "eric6/IconEditor/cursors/__init__.py", |
8122 | 1195 | "eric6/MicroPython/AddEditDevicesDialog.py", |
8006
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1196 | "eric6/MicroPython/CircuitPythonDevices.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1197 | "eric6/MicroPython/EspBackupRestoreFirmwareDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1198 | "eric6/MicroPython/EspDevices.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1199 | "eric6/MicroPython/EspFirmwareSelectionDialog.py", |
8122 | 1200 | "eric6/MicroPython/GenericMicroPythonDevices.py", |
8006
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1201 | "eric6/MicroPython/IgnoredDevicesDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1202 | "eric6/MicroPython/MicroPythonCommandsInterface.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1203 | "eric6/MicroPython/MicroPythonDevices.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1204 | "eric6/MicroPython/MicroPythonFileManager.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1205 | "eric6/MicroPython/MicroPythonFileManagerWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1206 | "eric6/MicroPython/MicroPythonFileSystemUtilities.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1207 | "eric6/MicroPython/MicroPythonGraphWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1208 | "eric6/MicroPython/MicroPythonProgressInfoDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1209 | "eric6/MicroPython/MicroPythonSerialPort.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1210 | "eric6/MicroPython/MicroPythonWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1211 | "eric6/MicroPython/MicrobitDevices.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1212 | "eric6/MicroPython/PyBoardDevices.py", |
8122 | 1213 | "eric6/MicroPython/UF2FlashDialog.py", |
1214 | "eric6/MicroPython/UnknownDevicesDialog.py", | |
8006
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1215 | "eric6/MicroPython/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1216 | "eric6/MultiProject/AddProjectDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1217 | "eric6/MultiProject/MultiProject.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1218 | "eric6/MultiProject/MultiProjectBrowser.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1219 | "eric6/MultiProject/MultiProjectFile.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1220 | "eric6/MultiProject/PropertiesDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1221 | "eric6/MultiProject/__init__.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1222 | "eric6/Network/IRC/IrcChannelEditDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1223 | "eric6/Network/IRC/IrcChannelWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1224 | "eric6/Network/IRC/IrcIdentitiesEditDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1225 | "eric6/Network/IRC/IrcMessageEdit.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1226 | "eric6/Network/IRC/IrcNetworkEditDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1227 | "eric6/Network/IRC/IrcNetworkListDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1228 | "eric6/Network/IRC/IrcNetworkManager.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1229 | "eric6/Network/IRC/IrcNetworkWidget.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1230 | "eric6/Network/IRC/IrcServerEditDialog.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1231 | "eric6/Network/IRC/IrcUtilities.py", |
c4110b8b5931
Started converting the various file generators to JSON format (from XML).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1232 |