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
@@ -224,7 +225,8 @@ export async function getMigrationConfig(iProject: IProject, library: string): P
224
225
.addInput(`srcLib`,l10n.t('Source Library'),l10n.t('The name of the library containing the source files to migrate.'),{default: library,readonly: true})
225
226
.addInput(`defaultCCSID`,l10n.t('Default CCSID'),l10n.t('The CCSID to be used when the source file is 65535.'),{default: `*JOB`,minlength: 1})
226
227
.addSelect(`workspaceFolder`,l10n.t('Workspace folder'),projectSelectItems,l10n.t('The workspace folder to which the files are to be downloaded to.'))
227
-
.addCheckbox(`importText`,l10n.t('Import Member Text'),l10n.t('Imports member text at top of source as comment.'),true);
228
+
.addCheckbox(`importText`,l10n.t('Import Member Text'),l10n.t('Imports member text at top of source as comment.'),true)
229
+
.addCheckbox(`lower`,l10n.t('Lowercase Filenames'),l10n.t('The generated source file names will be in lowercase.'),true);
228
230
229
231
// Clean up tab
230
232
cleanUpTab
@@ -267,6 +269,8 @@ export async function getMigrationConfig(iProject: IProject, library: string): P
267
269
deletedata.fixIncludes;
268
270
constimportText=data.importText;
269
271
deletedata.importText;
272
+
constlower=data.lower;
273
+
deletedata.lower;
270
274
271
275
constsourceFiles=Object.entries<boolean>(data)
272
276
.filter(sourceFile=>sourceFile[1]===true)
@@ -278,7 +282,8 @@ export async function getMigrationConfig(iProject: IProject, library: string): P
0 commit comments