add disabled to default ignored files. (and fix typo)
This commit is contained in:
parent
f9ba34adc1
commit
c783496a27
3 changed files with 7 additions and 3 deletions
|
@ -1,6 +1,9 @@
|
|||
0.0.2
|
||||
- [ ] add global config for file size limit
|
||||
- [x] add modifier _first upper case_ : _\u_ in bloc content
|
||||
- [ ] add function to summarize by action what was done
|
||||
- [ ] use _requires_ instead of dc_min in _fixdcstore_
|
||||
- [ ] fix unwanted translation of module name in _fixdcstore_
|
||||
- [x] add modifier _first upper case_ : _\u_ in _fixphpheader_
|
||||
|
||||
0.0.1
|
||||
- First pre-release
|
|
@ -22,7 +22,8 @@ class ImproveActionZip extends ImproveAction
|
|||
'.git*',
|
||||
'CVS',
|
||||
'.DS_Store',
|
||||
'Thumbs.db'
|
||||
'Thumbs.db',
|
||||
'_disabled'
|
||||
];
|
||||
public static $filename_wildcards = [
|
||||
'%type%',
|
||||
|
|
|
@ -182,7 +182,7 @@ if (!empty($_REQUEST['config'])) {
|
|||
<p><label for="save_preferences" class="classic">' .
|
||||
form::checkbox('save_preferences', 1, !empty($_POST['save_preferences'])) .
|
||||
__('Save fields selection as preference') .'</label></p>
|
||||
<p class="field"><label for="modules" class="classic">' . __('Select a module:') . '</label>' .
|
||||
<p class="field"><label for="module" class="classic">' . __('Select a module:') . '</label>' .
|
||||
form::combo('module', $combo_modules, $module) . '
|
||||
</p></p>
|
||||
<input type="submit" name="fix" value="' . __('Fix it') . '" />' .
|
||||
|
|
Loading…
Reference in a new issue