You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+6-2
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,13 @@ All notable changes to the "topper" extension will be documented in this file.
8
8
9
9
### [v1.0.0]
10
10
11
+
**[!!!] This release has breaking changes and might need some configuration from your part for the first time you start using it –– especially on older files that were annotated with older versions of Topper. No worries for new users and new files.**
12
+
11
13
- Re-wrote the code from scratch in Typescript for better maintenance. Also got rid of the popup, it seems that the use of a keyboard shortcut is the best approach. The other way is to invoke command directly using the commands menu of vscode.
12
-
- Externalized the date formatting for created date and last modified date.
13
-
- Externalized the last modified date capture regex in case the user defines their custom last modified date format.
14
+
- The command palette now shows a command that is bound to the first profile in the list, no need for the popup –– this was made for streamlined usage. For a more streamlined approach, please use the keyboard shortcuts to the desired profiles.
15
+
-[CAUTION] Externalized the date formatting for created date and last modified date.
16
+
-[CAUTION] Externalized the last modified date capture regex in case the user defines their custom last modified date format.
17
+
-[CAUTION] Externalized the row and column indices to be used for insertion of the header string: use with care. Defaults to 0 for both row and col for sanity.
You can add any number of profiles to the list. You also have the ability to add in any number of parameters here in your profiles. This way you can use those parameters in the header templates.
46
+
You can add any number of profiles to the list. You also have the ability to add in any number of parameters here in your profiles. This way you can use those parameters in the header templates.
41
47
42
-
-`topper.headerTemplates`: This is the list of all the header templates you configure depending upon the languages being used.
48
+
###`topper.headerTemplates`: This is the list of all the header templates you configure depending upon the languages being used.
43
49
44
-
The list of language Ids can be found here: [https://code.visualstudio.com/docs/languages/identifiers](https://code.visualstudio.com/docs/languages/identifiers).
50
+
The list of language Ids can be found here: [https://code.visualstudio.com/docs/languages/identifiers](https://code.visualstudio.com/docs/languages/identifiers).
45
51
46
-
If the file's `languageId`is not configured here, it defaults to the `defaultCStyled` header template.
52
+
In case the language name or ID is not found: the following header template is used:
47
53
48
-
> Note: Please do not delete the `defaultCStyled` template. Copy it over when configuring this section.
49
-
> Note: Please keep the `defaultCStyled` as the first element in the list of all the header templates.
As you can already see, each header template object is of form:
94
+
As you can already see, each header template object is of form:
91
95
92
-
```javascript
93
-
{
94
-
"[languageId]": {
95
-
"headerBegin": string,
96
-
"headerPrefix": string,
97
-
"headerEnd": string,
98
-
"template": string[] // <string values with parameters>
99
-
}
100
-
}
101
-
```
96
+
```javascript
97
+
{
98
+
"[languageId]": {
99
+
"headerBegin": string,
100
+
"headerPrefix": string,
101
+
"headerEnd": string,
102
+
"template": string[] // <string values with parameters>
103
+
}
104
+
}
105
+
```
106
+
107
+
To use the parameters inside the `template`, use the `${<parameter name>}` notation.
108
+
109
+
### [CAUTION]`topper.lastModified`: The key of the last-modified field in the header template --- `@last-modified`. Topper looks for this to determine if it needs to update the last-modified date-time value in your header. It defaults to `@last-modified`. For example, if you assign the value to `Modified`, then your header field for `Modified` should have be defined as `${headerPrefix} Modified ${lastModifiedDate}` for it to be considered by topper for automatic updation.
110
+
111
+
### [CAUTION]`topper.lastModifiedRegex`: The regular expression used for capturing the last modified date in the header and auto-update it when the file is saved.
> Note: This configuration is dependent on the `topper.lastModified` and `topper.dateFormat` values, please make sure that both are in sync, otherwise Topper will not be able to capture the last modified field in the header and update the timestamp.
120
+
121
+
### [CAUTION]`topper.dateFormat`: The format to be used for created date and last modified date values in the header. Topper uses Moment.js so please refer to the date formatting rules mentioned in moment.js. https://momentjs.com/docs/ . The default is ISO date format.
122
+
123
+
Defaults to:
124
+
125
+
```javascript
126
+
'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]Z';
127
+
```
102
128
103
-
To use the parameters inside the `template`, use the `${<parameter name>}` notation.
129
+
> Note: Please make sure that the last date modified regex is also in sync to the changes made to date format, otherwise Topper will not be able to automatically update the last modified timestamp in the header.
104
130
105
-
-`topper.lastModified`: The key of the last-modified field in the header template --- `@last-modified`. Topper looks for this to determine if it needs to update the last-modified date-time value in your header. It defaults to `@last-modified`. For example, if you assign the value to `Modified`, then your header field for `Modified` should have be defined as `${headerPrefix} Modified ${lastModifiedDate}` for it to be considered by topper for automatic updation.
131
+
### [CAUTION]`topper.insertAtRow`: The row from where to insert the header string at! Defaults to `0`.
106
132
107
-
Topper has a few intrinsic template parameters:
133
+
> Note: Please override this only if required, the default value is a SANE value. thanks :)
108
134
109
-
-`createdDate` - The date when the file was created, this is obtained from the underlying OS. If the file is `Untitled-x` or unsaved, the created time defaults to the time `Topper: Add Header` command was invoked.
135
+
### [CAUTION]`topper.insertAtCol`: The column from where to insert the header string at! Defaults to 0.
110
136
111
-
-`lastModifiedDate` - The date when the file was modified, this too is obtained from the underlying OS. If the file is `Untitled-x` or unsaved, the created time defaults to the time `Topper: Add Header` command was invoked.
137
+
> Note: Please override this only if required, the default value is a SANE value. thanks :)
112
138
113
-
-`fileName` - The name of the file
139
+
## Topper's intrinsic parameters
114
140
115
-
-`fileVersion` - The VSCode maintained fileVersion
141
+
Topper has the following intrinsic template parameters. The values of these parameters are extracted from the underlying OS and the file metadata:
142
+
143
+
-`createdDate` - The date when the file was created, this is obtained from the underlying OS. If the file is `Untitled-x` or unsaved, the created time defaults to the time `Topper: Add Header` command was invoked.
144
+
145
+
-`lastModifiedDate` - The date when the file was modified, this too is obtained from the underlying OS. If the file is `Untitled-x` or unsaved, the created time defaults to the time `Topper: Add Header` command was invoked.
146
+
147
+
-`fileName` - The name of the file.
148
+
149
+
-`fileVersion` - The VSCode maintained file version.
116
150
117
151
## Defining a custom keyboard shortcut
118
152
119
153
To define a custom keyboard shortcut do the following:
120
154
121
-
- Preferences -> Keyboard Shortcuts -> Open `keybindings.json`
155
+
-Preferences -> Keyboard Shortcuts -> Open `keybindings.json`
122
156
123
-
- Add the following entry:
157
+
-Add the following entry:
124
158
125
159
```json
126
160
// This opens up the interactive Topper with all the popups.
127
161
{
128
-
"key": "cmd+shift+t",
129
-
"command": "topper.addTopHeader"
162
+
"key": "cmd+shift+t",
163
+
"command": "topper.addTopHeader"
130
164
}
131
165
```
132
166
@@ -135,8 +169,8 @@ or
135
169
```json
136
170
// Defines the shortcut for the specific profile. Now only that specific profile is invoked. No annoying popups!
// Invokes Topper using the `personalProfile` directly, skipping all the interactive popups/dialog boxes.
147
181
{
148
-
"key": "cmd+shift+t 1",
149
-
"command": "topper.addTopHeader.personalProfile"
182
+
"key": "cmd+shift+t 1",
183
+
"command": "topper.addTopHeader.personalProfile"
150
184
}
151
185
```
152
186
153
187
The `"key"` field can be any key combination. The command has to be `"topper.addTopHeader"`.
154
188
155
189
## Changelog
156
190
157
-
### [v0.4.0]
158
-
159
-
- Merged pull request from @Drakesinger into master to allow more flexible formats for the `last modified` field in the headers. Thanks @Drakesinger for the PR!
160
-
161
-
- Updated the readme document with more information about the `topper.lastModified` contribution point. Since, I had forgotten to add the description of this contribution point in the document I believe some of the users might have found it difficult to configure the `lastModified` field name in their headers. Sorry!
162
-
163
-
### [v0.3.2]
164
-
165
-
- Fixed the issue [problem about last-modified when press cmd+s #3](https://github.com/sidmishraw/topper/issues/3). Now, topper's watcher listens to the `TextDocumentWillSaveEvent` and updates the last-modified field before the document saves.
166
-
167
-
### [v0.3.1]
168
-
169
-
- Fixed the issue of Topper capturing templates of "last-modified". Now, there are strict patterns in place.
170
-
171
-
### [v0.3.0]
172
-
173
-
- Fixed issue where the `@last-modified` field in the header was not getting updated automatically. Now, there is a configuration field `topper.lastModified` where the users can specify their custom field names for `last-modified` incase they do not use `@last-modified`. The default value is `@last-modified`.
174
-
175
-
> Caveats: The implementation is choppy in some aspects because of limited support from VS Code APIs. Expect a better implementation in the next version.
176
-
177
-
- Code cleanup.
178
-
179
-
### [v0.2.0]
180
-
181
-
- Code cleanup.
182
-
183
-
- Addition of profile specific shortcuts added to `keybinding.json` of VSCode:
184
-
185
-
```json
186
-
{
187
-
"key": "cmd+shift+t 1",
188
-
"command": "topper.addTopHeader.personalProfile"
189
-
},
190
-
{
191
-
"key": "shift+cmd+t 2",
192
-
"command": "topper.addTopHeader.officeProfile"
193
-
}
194
-
```
195
-
196
-
The first key combination is `Command + Shift + T` followed by a `1` or `2` depending on the profile. The user is free to bind any profile to any key combination.
197
-
The commandId is of the form `topper.addTopHeader.<your-profile-name>`.
198
-
199
-
### [v0.1.0]
200
-
201
-
- Stable release.
202
-
203
-
### [v0.0.3]
204
-
205
-
- Changed the extension's command from `extension.addTopHeader` to `topper.addTopHeader`. To make it easier for customized keybinding.
206
-
207
-
- Code cleanup.
208
-
209
-
### [v0.0.2]
210
-
211
-
- Added support for multi line strings as values for the custom template parameters.
212
-
213
-
- Updated `lastModifiedDate` to be fetched from the underlying OS. This is the true last modified date.
214
-
215
-
### [v0.0.1]
216
-
217
-
- Initial release of `Topper` extension. [Alpha]
218
-
219
-
## P.S
191
+
The change log is available at: [change-log](./CHANGELOG.md)
220
192
221
-
In case of any suggestions or issues please email me at [**sidharth.mishra@sjsu.edu**](mailto:sidharth.mishra@sjsu.edu)
193
+
In case of any suggestions or issues please feel free to create an issue on the Github repo.
222
194
223
195
## References
224
196
225
-
- Template style configuration idea inspired by [https://github.com/doi/fileheadercomment](https://github.com/doi/fileheadercomment)
197
+
-Template style configuration idea inspired by [https://github.com/doi/fileheadercomment](https://github.com/doi/fileheadercomment)
0 commit comments