Skip to content

Commit 846c3a5

Browse files
Merge remote-tracking branch 'origin/develop-7.0' into develop
Refactored changes: * changes to Linux compilation flags in config/linux.gypi in `develop-7.0` pushed to config/linux-settings.gypi Conflicts: config/android.gypi config/linux.gypi engine/src/combiners.cpp engine/src/deploy.cpp engine/src/gradient.cpp engine/src/iimport.cpp engine/src/mac-pasteboard.mm ide libfoundation/include/foundation.h libgraphics/src/legacyblendmodes.cpp version
2 parents 3861b55 + 4fe6515 commit 846c3a5

60 files changed

Lines changed: 2200 additions & 385 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Livecode.files

Lines changed: 1764 additions & 241 deletions
Large diffs are not rendered by default.

config/ios.gypi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@
193193
'-Wextra',
194194
'-Werror=declaration-after-statement',
195195
'-Wno-unused-parameter',
196+
'-Werror=uninitialized',
196197
],
197198
},
198199
},

config/linux-settings.gypi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
'-w', # Disable warnings
7777
'-fpermissive', # Be more lax with old code
7878
'-Wno-return-type',
79+
'-Werror=uninitialized',
7980
],
8081

8182
'cflags_c':
@@ -128,6 +129,7 @@
128129
[
129130
'-O3',
130131
'-g3',
132+
'-Wno-error=maybe-uninitialized', #warning added only with optimisation ON
131133
],
132134

133135
'defines':

config/mac.gypi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@
119119
'-Wextra',
120120
'-Werror=declaration-after-statement',
121121
'-Wno-unused-parameter',
122+
'-Werror=uninitialized',
122123
],
123124
},
124125
},
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<doc>
2+
<legacy_id></legacy_id>
3+
<name>launchDataChanged</name>
4+
<type>message</type>
5+
<syntax>
6+
<example>launchDataChanged</example>
7+
</syntax>
8+
<synonyms>
9+
</synonyms>
10+
<references>
11+
<function tag="mobileGetLaunchData">mobileGetLaunchData Function</function>
12+
</references>
13+
<history>
14+
<introduced version="7.1">Added.</introduced>
15+
</history>
16+
<platforms>
17+
<android/>
18+
</platforms>
19+
<classes>
20+
<mobile/>
21+
</classes>
22+
<security>
23+
</security>
24+
<description>
25+
<overview>Sent to the <glossary tag="current card">current card</glossary> when the <glossary tag="application">application</glossary>'s launch data is changed by a new request from another app.</overview>
26+
<comments>An Android app may be suspended in the background when it receives a request from another app. When this happens, the app's launch data is updated to contain the data for the new request and the app is resumed. The new launch data can be obtained from the <function tag="mobileGetLaunchData">mobileGetLaunchData</function> function.</comments>
27+
</description>
28+
<examples>
29+
<example><p>on launchDataChanged</p><p> myLaunchHandler mobileGetLaunchData()</p><p>end launchDataChanged</p></example>
30+
</examples>
31+
</doc>

docs/notes/bugfix-15417.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# mobileGetLaunchData isn't updated if app is resumed to handle request.

docs/notes/bugfix-16027.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Android audio/video controller disappears after some seconds of inactivity

docs/notes/bugfix-16120.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [Global Jam] Can't deploy to iOS 9 Simulator when using referenced images

docs/notes/bugfix-16154.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Allow audio playing when app is on background on iOS

docs/notes/bugfix-16220.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# ArrowKey left in tabbed field stuck if first column empty

0 commit comments

Comments
 (0)