Skip to content

Commit 0773b22

Browse files
authored
Merge pull request #33 from tuarua/development
Development
2 parents 16e0707 + 15c49c7 commit 0773b22

File tree

6 files changed

+20
-8
lines changed

6 files changed

+20
-8
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 2.1.0
2+
- macOS: Updated to FreSwift 5.0.0
3+
14
### 2.0.0
25
- macOS: Updated to FreSwift 4.5.0
36

example/air_package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "toast-sample",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"appDescriptor": "src/Main-app.xml",
55
"variables": {
66
},
@@ -10,6 +10,6 @@
1010
"url": "https://tuarua.github.io/air/air_packages.json"
1111
},
1212
"dependencies": {
13-
"com.tuarua.DesktopToastANE": "2.0.0"
13+
"com.tuarua.DesktopToastANE": "2.1.0"
1414
}
1515
}

native_extension/ane/air_package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "com.tuarua.DesktopToastANE",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"repository": {
55
"url": "https://tuarua.github.io/air/air_packages.json"
66
},
77
"dependencies": {
8-
"com.tuarua.FreSwift": "4.5.0"
8+
"com.tuarua.FreSwift": "5.0.0"
99
}
1010
}

native_extension/ane/extension.xml

+8-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<id>com.tuarua.DesktopToastANE</id>
44
<name>Desktop Toast ANE</name>
55
<copyright>This work is licensed under Apache License, Copyright (c) 2018 Tua Rua Ltd.</copyright>
6-
<versionNumber>2.0.0</versionNumber>
6+
<versionNumber>2.1.0</versionNumber>
77
<platforms>
88
<platform name="Windows-x86-64">
99
<applicationDeployment>
@@ -19,5 +19,12 @@
1919
<finalizer>TRDTTExtFinizer</finalizer>
2020
</applicationDeployment>
2121
</platform>
22+
<platform name="MacOS-x86-64">
23+
<applicationDeployment>
24+
<nativeLibrary>DesktopToastANE.framework</nativeLibrary>
25+
<initializer>TRDTTExtInizer</initializer>
26+
<finalizer>TRDTTExtFinizer</finalizer>
27+
</applicationDeployment>
28+
</platform>
2229
</platforms>
2330
</extension>
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
binary "https://github.com/tuarua/Swift-IOS-ANE/releases/download/4.5.0/FreSwift.json" ~> 4.5.0
1+
binary "https://github.com/tuarua/Swift-IOS-ANE/releases/download/5.0.0/FreSwift.json" ~> 5.0.0

native_library/mac/DesktopToastANE/DesktopToastANE.xcodeproj/project.pbxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
CE36AF371DF47B7B003C224B /* Project object */ = {
148148
isa = PBXProject;
149149
attributes = {
150-
LastUpgradeCheck = 1100;
150+
LastUpgradeCheck = 1200;
151151
ORGANIZATIONNAME = "Tua Rua Ltd";
152152
TargetAttributes = {
153153
CE36AF3F1DF47B7B003C224B = {
@@ -200,7 +200,7 @@
200200
);
201201
runOnlyForDeploymentPostprocessing = 0;
202202
shellPath = /bin/sh;
203-
shellScript = "../../../native_extension/ane/build_multi.sh\n";
203+
shellScript = "../../../native_extension/ane/build.sh\n";
204204
};
205205
/* End PBXShellScriptBuildPhase section */
206206

@@ -244,6 +244,7 @@
244244
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
245245
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
246246
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
247+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
247248
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
248249
CLANG_WARN_STRICT_PROTOTYPES = YES;
249250
CLANG_WARN_SUSPICIOUS_MOVE = YES;
@@ -307,6 +308,7 @@
307308
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
308309
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
309310
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
311+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
310312
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
311313
CLANG_WARN_STRICT_PROTOTYPES = YES;
312314
CLANG_WARN_SUSPICIOUS_MOVE = YES;

0 commit comments

Comments
 (0)