Skip to content

Commit 349b0f8

Browse files
committed
Fixed bug where resdesc files were not being added to built .zips
1 parent 58c7f33 commit 349b0f8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "telltale-script-editor",
33
"productName": "telltale-script-editor",
4-
"version": "2.2.0",
4+
"version": "2.2.1",
55
"description": "An unofficial, open-source editor to allow for easy modification of scripts from Telltale games.",
66
"main": ".webpack/main",
77
"author": "Telltale Modding Group",

src/main/handlers/BuildProject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export const buildProject = async (log: Logger, state: AppState, { projectPath,
265265
log('============== Building temp directory from cache...');
266266
const cacheDir = await fs.opendir(cachePath);
267267
for await (const file of cacheDir) {
268-
if (file.isDirectory() || !file.name.endsWith('.ttarch2')) continue;
268+
if (file.isDirectory() || (!file.name.endsWith('.ttarch2') && !file.name.endsWith('.lua'))) continue;
269269

270270
tempDirTasks.push(fs.cp(path.join(cachePath, file.name), path.join(tempPath, file.name), {recursive: true}));
271271
}

src/renderer/components/modals/AboutModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const AboutModal = () => {
55
return <Container>
66
<Stack align="center">
77
<Title order={1}>Telltale Script Editor</Title>
8-
<Text>Version 2.2.0</Text>
8+
<Text>Version 2.2.1</Text>
99
</Stack>
1010
</Container>
1111
};

0 commit comments

Comments
 (0)