Skip to content

Commit 2f0417e

Browse files
authored
Merge pull request #1 from mid-review-proj
Merging the Working Changes & Deployment Files to main branch
2 parents a3c2dab + bf1ce3b commit 2f0417e

556 files changed

Lines changed: 78511 additions & 3 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ sysinfo.txt
6262
*.aab
6363
*.unitypackage
6464
*.unitypackage.meta
65-
*.app
65+
# *.app
6666

6767
# Crashlytics generated file
6868
crashlytics-build.properties
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>English</string>
7+
<key>CFBundleExecutable</key>
8+
<string>Coin Collector</string>
9+
<key>CFBundleGetInfoString</key>
10+
<string>Unity Player version 6000.0.57f1 (b7b9860b7bbd). (c) 2005-2025 Unity Technologies. All rights reserved.</string>
11+
<key>CFBundleIconFile</key>
12+
<string>PlayerIcon.icns</string>
13+
<key>CFBundleIdentifier</key>
14+
<string>com.DefaultCompany.2D-URP</string>
15+
<key>CFBundleInfoDictionaryVersion</key>
16+
<string>6.0</string>
17+
<key>CFBundleName</key>
18+
<string>Coin Collector</string>
19+
<key>CFBundlePackageType</key>
20+
<string>APPL</string>
21+
<key>CFBundleShortVersionString</key>
22+
<string>1.0</string>
23+
<key>CFBundleSupportedPlatforms</key>
24+
<array>
25+
<string>MacOSX</string>
26+
</array>
27+
<key>CFBundleVersion</key>
28+
<string>0</string>
29+
<key>LSApplicationCategoryType</key>
30+
<string>public.app-category.games</string>
31+
<key>LSMinimumSystemVersion</key>
32+
<string>11.0</string>
33+
<key>NSAppTransportSecurity</key>
34+
<dict>
35+
<key>NSAllowsArbitraryLoads</key>
36+
<true />
37+
</dict>
38+
<key>NSMainNibFile</key>
39+
<string>MainMenu</string>
40+
<key>NSPrincipalClass</key>
41+
<string>PlayerApplication</string>
42+
<key>UnityBuildNumber</key>
43+
<string>b7b9860b7bbd</string>
44+
</dict>
45+
</plist>
129 KB
Binary file not shown.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!--
2+
This file defines some of the browsers that Microsoft's implementation provides in
3+
<windir>\Microsoft.NET\Framework\<ver>\CONFIG\Browsers\*.browser
4+
5+
It is not derived from any file distributed with Microsoft's implementation. Since
6+
we can't distribute MS's browser files, we use browscap.ini to determine
7+
browser capabilities. Then, if and only if the application contains App_Browser/*.browser
8+
files and we are using .NET 2.0 or higher, we supplement the capabilities with the
9+
information in those files and the files in this directory. The primary goal of this file
10+
is provide browser definitions that might be referenced in App_Browser/*.browser files.
11+
-->
12+
<browsers>
13+
<defaultBrowser id="Default">
14+
</defaultBrowser>
15+
<browser id="Default">
16+
<identification>
17+
<userAgent match="." />
18+
</identification>
19+
</browser>
20+
<browser id="IE6to9" parentID="Default">
21+
<identification>
22+
<capability name="majorver" match="^[6-9]" />
23+
<capability name="browser" match="^(IE|AOL)$" />
24+
</identification>
25+
</browser>
26+
<browser id="Opera8to9" parentID="Default">
27+
<identification>
28+
<capability name="majorver" match="^[8-9]" />
29+
<capability name="browser" match="^Opera$" />
30+
</identification>
31+
</browser>
32+
<browser id="Safari" parentID="Default">
33+
<identification>
34+
<capability name="browser" match="^Safari$" />
35+
</identification>
36+
</browser>
37+
<browser id="Mozilla" parentID="Default">
38+
<identification>
39+
<capability name="browser" match="^Mozilla" />
40+
</identification>
41+
</browser>
42+
</browsers>

0 commit comments

Comments
 (0)