Skip to content

Commit 85ef9a9

Browse files
Fix casing gdevelop (#6323)
Do not show in changelog
1 parent 455d77f commit 85ef9a9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

newIDE/app/public/external/piskel/piskel-main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -245,13 +245,13 @@ const loadPiskelDataFromGd = externalEditorInput => {
245245
});
246246

247247
// Compare the imported frames - so as to make the layered Piskel Document
248-
// the same as the changes done in Gdevelop without flattening any layers
248+
// the same as the changes done in GDevelop without flattening any layers
249249
let flattenedResourceNames = [];
250250
externalEditorInput.resources.forEach((resource, frameIndex) => {
251251
const resourceName = resource.name;
252252
flattenedResourceNames.push(resourceName);
253253

254-
// Import any frames that were added in Gdevelop (i.e: frames which can't be found
254+
// Import any frames that were added in GDevelop (i.e: frames which can't be found
255255
// in the saved resource names).
256256
if (!savedResourceNames.includes(resourceName)) {
257257
pskl.utils.BlobUtils.dataToBlob(

newIDE/app/src/MainFrame/EditorContainers/HomePage/GetStartedSection/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ const GetStartedSection = ({
393393
justifyContent="center"
394394
>
395395
<Text size="title" align="center">
396-
<Trans>Log in to Gdevelop</Trans>
396+
<Trans>Log in to GDevelop</Trans>
397397
</Text>
398398
<BackgroundText>
399399
<Trans>

scripts/gitCloneAndBuildGD.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
@echo off
22

33
REM ===============================================================
4-
REM This Windows batch script downloads Gdevelop from the master branch, builds the newIde and launches it.
4+
REM This Windows batch script downloads GDevelop from the master branch, builds the newIde and launches it.
55
REM
66
REM It still requires git, nodejs and electron to be installed.
7-
REM If Gdevelop is already built, the script will simply launch it.
7+
REM If GDevelop is already built, the script will simply launch it.
88
REM ===============================================================
99
echo This will clone, install, and launch GDevelop development version. Please make sure you have git and Node.js installed.
1010

0 commit comments

Comments
 (0)