forked from qt-creator/extension-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
122 lines (122 loc) · 5.77 KB
/
Copy pathextension.json
File metadata and controls
122 lines (122 loc) · 5.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"$schema": "../../schema/extension.schema.json",
"info": {
"id": "minimap",
"vendor_id": "cristianadam",
"display_name": "Minimap",
"display_vendor": "Cristian Adam",
"license": "open-source"
},
"latest": "17.0.0",
"versions": {
"17.0.0": {
"sources": [
{
"url": "https://github.com/cristianadam/qt-creator-minimap/releases/download/v17.0.0/MinimapPlugin-17.0.0-Windows-x64.7z",
"sha256": "2c0b1535ffb192bbccd9a5bc7f6796482efa046abd79444bf575e67297d95d35",
"platform": {
"name": "Windows",
"architecture": "x86_64"
}
},
{
"url": "https://github.com/cristianadam/qt-creator-minimap/releases/download/v17.0.0/MinimapPlugin-17.0.0-Windows-arm64.7z",
"sha256": "e7b3435874e61a26918caa322f5f3feebf3bf190d30602aaf4bd7261327fe563",
"platform": {
"name": "Windows",
"architecture": "arm64"
}
},
{
"url": "https://github.com/cristianadam/qt-creator-minimap/releases/download/v17.0.0/MinimapPlugin-17.0.0-Linux-x64.7z",
"sha256": "435b8991023a2783e2a96cf1810ad0915a976adbde736fd90fefbe7d7d4531ed",
"platform": {
"name": "Linux",
"architecture": "x86_64"
}
},
{
"url": "https://github.com/cristianadam/qt-creator-minimap/releases/download/v17.0.0/MinimapPlugin-17.0.0-Linux-arm64.7z",
"sha256": "bf070516ca81d0f6225edffd78cc2d3a1a4f7e24e81de94e077642adf4aadaa8",
"platform": {
"name": "Linux",
"architecture": "arm64"
}
},
{
"url": "https://github.com/cristianadam/qt-creator-minimap/releases/download/v17.0.0/MinimapPlugin-17.0.0-macOS-universal.7z",
"sha256": "2e94df455fb06cda0b9f5e8b8f132cbf884aec650af962b1fd23e08a9a8419e0",
"platform": {
"name": "macOS",
"architecture": "x86_64"
}
},
{
"url": "https://github.com/cristianadam/qt-creator-minimap/releases/download/v17.0.0/MinimapPlugin-17.0.0-macOS-universal.7z",
"sha256": "2e94df455fb06cda0b9f5e8b8f132cbf884aec650af962b1fd23e08a9a8419e0",
"platform": {
"name": "macOS",
"architecture": "arm64"
}
}
],
"metadata": {
"Id": "minimap",
"Name": "Minimap",
"Version": "17.0.0",
"CompatVersion": "17.0.0",
"Vendor": "Cristian Adam",
"VendorId": "cristianadam",
"Copyright": "(C) 2017 emJay SOftware Consulting AB, Cristian Adam, Copyright (C) The Qt Company Ltd. and other contributors.",
"License": "GNU LGPL 2.1",
"Description": "Minimap scrollbar for Qt Creator",
"LongDescription": [
"# Minimap Qt Creator plugin",
"",
"The minimap Qt Creator plugin lets the user use a \"minimap\" as scrollbar for text editors.",
"",
"# Screenshots",
"",
"",
"",
"",
"",
"",
"The minimap is only visible if is enabled, and text wrapping is **disabled** and if the line count of the file is less than the *Line Count Threshold* setting. If these criterias are not met an ordinary scrollbar is shown.",
"",
"Larger textfiles tend to render a rather messy minimap. Therefore the setting *Line Count Threshold* exist for the user to customize when the minimap is to be shown or not.",
"",
"You can edit the settings under *Minimap* tab in the *Text Editor* category. There are three settings available:",
"",
"* Enabled",
"",
" Uncheck this box to completely disable the minimap srcollbar",
"",
"* Width",
"",
" The width in pixels of the scrollbar.",
"",
"* Line Count Threshold",
"",
" The threshold where minimap scrollbar",
"",
"* Scrollbar slider alpha value",
"",
" The alpha value of the scrollbar slider"
],
"Url": "https://github.com/cristianadam/qt-creator-minimap",
"DocumentationUrl": "",
"Dependencies": [
{
"Id": "core",
"Version": "17.0.0"
},
{
"Id": "texteditor",
"Version": "17.0.0"
}
]
}
}
}
}