Skip to content

Commit 146454a

Browse files
committed
v0.1.4 abbreviations changed to K and C, plus diabled reverse-engineering
1 parent 92cc0bf commit 146454a

File tree

4 files changed

+13
-402
lines changed

4 files changed

+13
-402
lines changed

localization/en.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,7 @@
135135
"CENTRAL_PANE___TAB_MODEL_DEFINITIONS": "User-Defined Types",
136136
"CONTEXT_MENU___ADD_MODEL_REFERENCE": "User-Defined Type",
137137
"CONTEXT_MENU___GO_TO_DEFINITION": "Go to User-Defined Type",
138-
"DOCUMENTATION___DB_DEFINITIONS": "User-Defined Types"
138+
"DOCUMENTATION___DB_DEFINITIONS": "User-Defined Types",
139+
"CONTEXT_MENU___CONVERT_TO_PATTERN_FIELD": "Convert to Pattern Column",
140+
"CONTEXT_MENU___CONVERT_PATTERN_TO_REGULAR_FIELD": "Convert to Regular Column"
139141
}

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Cassandra",
3-
"version": "0.1.3",
4-
"versionDate": "2017-12-19",
3+
"version": "0.1.4",
4+
"versionDate": "2018-02-06",
55
"author": "hackolade",
66
"engines": {
77
"hackolade": "1.10.x",
@@ -24,7 +24,8 @@
2424
"features": {
2525
"nestedCollections": false,
2626
"disablePatternField": true,
27-
"disableMultipleTypes": true
27+
"disableMultipleTypes": true,
28+
"disableReverseEngineering": true
2829
}
2930
},
3031
"description": "Hackolade plugin for Cassandra Datastax"

properties_pane/entity_level/entityLevelConfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,14 @@ making sure that you maintain a proper JSON format.
106106
"propertyKeyword": "compositePartitionKey",
107107
"shouldValidate": false,
108108
"propertyType": "primaryKeySetter",
109-
"abbr": "PK"
109+
"abbr": "K"
110110
},
111111
{
112112
"propertyName": "Clustering key",
113113
"propertyKeyword": "compositeClusteringKey",
114114
"shouldValidate": false,
115115
"propertyType": "primaryKeySetter",
116-
"abbr": "CK",
116+
"abbr": "C",
117117
"attributeList": [
118118
{ "name": "ascending", "abbr": "\u2191" },
119119
{ "name": "descending", "abbr": "\u2193" }

0 commit comments

Comments
 (0)