diff --git a/README.md b/README.md
index b9c8e56aa0..3a6135d588 100644
--- a/README.md
+++ b/README.md
@@ -34,13 +34,13 @@ If you're a developer who wants to contribute to Synthesis, you're in the right
- [Fission (Core Web App)](/fission/README.md)
- [Fusion Exporter (Fusion exporter to Mirabuf file format)](/exporter/SynthesisFusionAddin/README.md)
-- [Installers](/installer/)
+- [Fusion Exporter Installer](/installer/)
Follow the above links to the respective READMEs on how to build and run each component.
### Compatibility Notes
-As Fusion is not supported on linux, the linux installer does not come with the Fusion Addin for exporting robots and fields.
+As Fusion is not officially supported on Linux, we do not provide an installer for the Fusion Exporter on Linux.
## Contributing
diff --git a/installer/Linux/.gitignore b/installer/Linux/.gitignore
deleted file mode 100644
index 2bdd6e8d6c..0000000000
--- a/installer/Linux/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-Synthesis.AppDir/usr/bin/*
-Synthesis.AppDir/fields/*
-Synthesis.AppDir/robots/*
-
-*.md5
-*.AppImage
diff --git a/installer/Linux/README.md b/installer/Linux/README.md
deleted file mode 100644
index 46e539d52a..0000000000
--- a/installer/Linux/README.md
+++ /dev/null
@@ -1,58 +0,0 @@
-# `>_` Synthesis App Image
-
-For running Synthesis we have decided to package our application as an AppImage. It allows Synthesis to be packaged as a single .AppImage file. This also allows for users to run Synthesis without needing a specific distribution.
-
-### Initial Setup ###
-It is recommended that you update the packages on your system. For arch users, run `pacman -Syu` as root. Debian users can run `apt update && apt upgrade` as root.
-
-### Dependencies ###
-Certain dependencies are necessary in order to package Synthesis as an AppImage.
-
-##### FUSE #####
-For Arch, you may need to run: `pacman -S fuse` as root. For Debian, run: `apt install fuse` as root.
-If you are still encountering issues, refer to this page: https://docs.appimage.org/user-guide/troubleshooting/fuse.html#ref-install-fuse
-
-##### appimagetool #####
-You will also end up needing appimagetool to actually create the AppImage file. However the `package.sh` script will prompt you and install it automatically. If you wish to install in manually, download the latest release from here: https://github.com/AppImage/AppImageKit/releases and make it executable. It should be called appimagetool-$ARCH.AppImage ($ARCH = whatever architecture you are using to package synthesis; most likely x86_64).
-
-### Initial Setup ###
-In order to acheive the proper package structure for proper extraction, you must first compile a Unity build as: `Synthesis.x86_64` and store it along with all other files and directories that came with it somewhere on your machine.
-
-Note: It is important that you do not modify or remove any of the files and folders that come built with the `Synthesis.x86_64` file.
-
-It is also strongly recommended that you have some fields and robots exported in the Mirabuf format.
-
-### Packaging ###
-The recommended way of creating the AppImage is by using the `package.sh` script. You may also opt to package Synthesis manually. There is some documentation for that process but it is recommended that you have a good understanding of what you are doing if you choose this option.
-
-To run the script, you will likely need to make it executable by running: `chmod +x package.sh` in your preferred terminal. You may also right click on `package.sh` in a file browser and select the option to make it executable.
-
-Now run the script and specify input directories for the version of synthesis you compiled as well as fields and robots: `./init.sh -f /path/to/fields/ -r /path/to/robots/ -b /path/to/synthesis/`
-
-Note: While it is not strictly necessary to include fields and robots, it is strongly recommended to include at least one of each
-
-If it is not already installed, the script will ask to install appimagetool. We recommended answering yes as it will install appimagetool.AppImage to the `~/Applications/` directory and is necessary for creating AppImage files.
-
-### Installing appimagetool ###
-appimagetool is the name of the program that is used to create AppImages. You can download and install appimagetool through the official website https://appimage.github.io/appimagetool/ or get it through your distribution's package manager.
-
-Note: appimagetool is usually packaged under AppImageKit rather than as a standalone application.
-
-### Manual Packaging ###
-
-##### File locations #####
-Certain files must be moved to the correct locations. First you should move any robot files to `Synthesis.AppDir/robots` (create it if it doesn't exist). Do the same for field files but put them in `Synthesis.AppDir/fields` (create it if it doesn't exist). Finally, move all files and directories in your Synthesis build directory into `Synthesis.AppDir/usr/bin/` (once again, create it if it doesn't exist).
-
-##### Creating The AppImage #####
-Finally you can create your AppImage! Make sure you have all dependencies installed and run: `ARCH=x86_64 appimagetool Synthesis.AppDir` which will create the Synthesis AppImage.
-
-Note: Run this instead if you installed appimagetool locally: `ARCH=x86_64 /path/to/appimagetool Synthesis.AppDir`
-
-### Final Note ###
-When the end user is downloading the AppImage file, it is strongly recommended to have them put it in the `~/Applications/` directory. This allows it to be found by appimaged as well as itself when running uninstall. It is also recommended to allow them to download the checksum.md5 file so that the file integrity can be verified using `md5sum -c checksum.md5` in the same directory as the AppImage and md5 files.
-
-### Troubleshooting ###
-Refer to the AppImage troubleshooting page first if you are having issues: https://docs.appimage.org/user-guide/troubleshooting/index.html
-The general documentation may be of use as well: https://docs.appimage.org/index.html
-If the issues persist, open a github issue with details about the problem.
-
diff --git a/installer/Linux/Synthesis.AppDir/.DirIcon b/installer/Linux/Synthesis.AppDir/.DirIcon
deleted file mode 120000
index 8c7bb9a13f..0000000000
--- a/installer/Linux/Synthesis.AppDir/.DirIcon
+++ /dev/null
@@ -1 +0,0 @@
-synthesis.png
\ No newline at end of file
diff --git a/installer/Linux/Synthesis.AppDir/AppRun b/installer/Linux/Synthesis.AppDir/AppRun
deleted file mode 100755
index da2da947f5..0000000000
--- a/installer/Linux/Synthesis.AppDir/AppRun
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/bin/sh
-
-show_help() {
- echo "-h display help message"
- echo "-u run uninstall script"
-}
-
-install_appimaged() {
- mkdir -p ~/Applications
- wget -c https://github.com/$(wget -q https://github.com/probonopd/go-appimage/releases -O - | grep "appimaged-.*-x86_64.AppImage" | head -n 1 | cut -d '"' -f 2) -P ~/Applications/
- chmod +x ~/Applications/appimaged-*.AppImage
-
- # Launch
- ~/Applications/appimaged-*.AppImage &
-}
-
-uninstall_synthesis() {
- rm -R ~/.config/Autodesk/Synthesis/
- if [ -e ~/Applications/Synthesis*.AppImage ]
- then
- rm ~/Applications/Synthesis*.AppImage
- fi
- if [ -e ~/Applications/appimaged-*.AppImage ]
- then
- while true; do
- read -p "Do You wish to try and uninstall appimaged? (recommended) (y/n): " yn
- case $yn in
- [Yy]* )
- rm ~/Applications/appimaged-*.AppImage
- break
- ;;
- [Nn]* )
- break
- ;;
- * )
- echo "Please answer yes or no."
- ;;
- esac
- done
- fi
-}
-
-run_synthesis() {
- mkdir -p ~/.config/Autodesk/Synthesis/Mira/Fields
- cp "$HERE/fields/"*.mira ~/.config/Autodesk/Synthesis/Mira/Fields
- cp "$HERE/robots/"*.mira ~/.config/Autodesk/Synthesis/Mira/
-
- if [ ! -e ~/Applications/appimaged-*.AppImage ]
- then
- while true; do
- read -p "Do You wish to install and start appimaged? (recommended) (y/n): " yn
- case $yn in
- [Yy]* )
- install_appimaged;
- break
- ;;
- [Nn]* )
- break
- ;;
- * )
- echo "Please answer yes or no."
- ;;
- esac
- done
- fi
-
- exec "$EXEC"
-}
-
-HERE="$(dirname "$(readlink -f "${0}")")"
-EXEC="$HERE/usr/bin/Synthesis.x86_64"
-
-OPTIND=1
-while getopts ":hu" opt; do
- case "$opt" in
- h|\?)
- show_help
- exit 0
- ;;
- u)
- uninstall_synthesis
- exit 0
- ;;
- esac
-done
-
-shift $((OPTIND-1))
-
-run_synthesis
diff --git a/installer/Linux/Synthesis.AppDir/synthesis.desktop b/installer/Linux/Synthesis.AppDir/synthesis.desktop
deleted file mode 100755
index 424ddebffb..0000000000
--- a/installer/Linux/Synthesis.AppDir/synthesis.desktop
+++ /dev/null
@@ -1,6 +0,0 @@
-[Desktop Entry]
-Name=Synthesis
-Exec=Synthesis.x86_64
-Icon=synthesis
-Type=Application
-Categories=Game
diff --git a/installer/Linux/Synthesis.AppDir/synthesis.png b/installer/Linux/Synthesis.AppDir/synthesis.png
deleted file mode 100644
index 35f6df0736..0000000000
Binary files a/installer/Linux/Synthesis.AppDir/synthesis.png and /dev/null differ
diff --git a/installer/Linux/package.sh b/installer/Linux/package.sh
deleted file mode 100755
index 8a584f90a1..0000000000
--- a/installer/Linux/package.sh
+++ /dev/null
@@ -1,96 +0,0 @@
-#!/bin/sh
-
-# run before with path to a compiled build as well as robots and fields directory
-# also allow user to specify version
-
-show_help() {
- echo "-h display help message"
- echo "-f specify the input directory for fields"
- echo "-r specify the input directory for robots"
- echo "-b specify the build directory of synthesis"
-}
-
-install_appimagetool() {
- mkdir -p ~/Applications/
- wget -c https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -P ~/Applications/
- chmod +x ~/Applications/appimagetool-x86_64.AppImage
-}
-
-create_appimage() {
- ~/Applications/appimagetool-x86_64.AppImage $APP_DIR
- md5sum $INIT_DIR/Synthesis-x86_64.AppImage > $INIT_DIR/checksum.md5
- md5sum -c $INIT_DIR/checksum.md5
-}
-
-OPTIND=1
-
-ARCH="x86_64"
-APP_NAME="Synthesis"
-INIT_DIR="$(dirname "$(readlink -f "${0}")")"
-APP_DIR="$INIT_DIR/$APP_NAME.AppDir"
-
-mkdir -p "$APP_DIR/usr/bin/"
-mkdir -p "$APP_DIR/fields"
-mkdir -p "$APP_DIR/robots"
-
-while getopts "h?f:r:b:" opt; do
- case "$opt" in
- h|\?)
- show_help
- exit 0
- ;;
- f)
- fields="$OPTARG"
- ;;
- r)
- robots="$OPTARG"
- ;;
- b)
- build="$OPTARG"
- ;;
- esac
-done
-
-shift $((OPTIND-1))
-
-if [ ! -n "$build" ] ; then
- echo "Specify synthesis build directory using \"-b\""
- exit 1
-fi
-
-if [ -n "$fields" ] ; then
- cp "$fields/"*.mira "$APP_DIR/fields/"
-fi
-
-if [ -n "$robots" ] ; then
- cp "$robots/"*.mira "$APP_DIR/robots/"
-fi
-
-cp -R "$build/"* "$APP_DIR/usr/bin"
-chmod +x "$APP_DIR/AppRun"
-chmod +x "$APP_DIR/synthesis.desktop"
-chmod +x "$APP_DIR/usr/bin/Synthesis.x86_64"
-
-if [ ! -e ~/Applications/appimagetool-*.AppImage ] ; then
- while true; do
- read -p "Do you wish to install appimagetool (Needed for creating the AppImage file) (y/n): " yn
- case $yn in
- [Yy]* )
- install_appimagetool
- break
- ;;
- [Nn]* )
- break
- ;;
- * )
- echo "Please answer yes or no."
- ;;
- esac
- done
-fi
-
-if [ -e ~/Applications/appimagetool-x86_64.AppImage ] ; then
- create_appimage
-else
- echo "Install appimagetool before creating AppImage"
-fi
diff --git a/installer/OSX-DMG/.gitignore b/installer/OSX-DMG/.gitignore
deleted file mode 100644
index 5ddb15821b..0000000000
--- a/installer/OSX-DMG/.gitignore
+++ /dev/null
@@ -1,9 +0,0 @@
-source_folder/Synthesis.app/
-exporter_source_folder/
-Synthesis-Installer.dmg
-create-dmg/
-addins-folder-link
-
-exporter-install-instructions.pdf
-
-*.dmg
diff --git a/installer/OSX-DMG/README.md b/installer/OSX-DMG/README.md
deleted file mode 100644
index 18cd11dd1c..0000000000
--- a/installer/OSX-DMG/README.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# Synthesis OSX Installer (DMG Version)
-
-## Setup
-1. Install `create-dmg`:
-```
-$ git clone git@github.com:create-dmg/create-dmg.git
-```
-
-2. Copy the signed Synthesis app into source_folder:
-```
-$ cp -r [Location of app] ./source_folder/Synthesis.app
-```
-
-2. Compile the `exporter-install-instructions.md` into a PDF. I recommend using the Yzane extension in VSCode.
-
-## Create Disk Image
-Run the `make-installer.sh` shell script:
-```
-$ ./make-installer.sh
-```
-
-Disk Image will be created at `/installer/OSX-DMG/Synthesis-Installer.dmg`
-
-## Notes
-Update `source_folder/license.html` as needed as well as settings for the `create-dmg` command inside of `make-installer.sh`. See [create-dmg repository](https://github.com/create-dmg/create-dmg) for configuration information.
\ No newline at end of file
diff --git a/installer/OSX-DMG/SynthesisMacInstallerBackground.png b/installer/OSX-DMG/SynthesisMacInstallerBackground.png
deleted file mode 100644
index 0d4d27e9a1..0000000000
Binary files a/installer/OSX-DMG/SynthesisMacInstallerBackground.png and /dev/null differ
diff --git a/installer/OSX-DMG/exporter-install-instructions.md b/installer/OSX-DMG/exporter-install-instructions.md
deleted file mode 100644
index 2b99e16696..0000000000
--- a/installer/OSX-DMG/exporter-install-instructions.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# MacOS Exporter Installation Instructions
-## Requirements
-- Fusion 360 installed on your system.
-
-## Copy the Files
-Move the `Exporter` folder, located in the installer pointing to this file, into the following directory:
-```
-~/Library/Application Support/Autodesk/Autodesk Fusion 360/API/AddIns/
-```
-
-## Usage
-Upon opening Fusion 360, the exporter should automatically run and be made available in the `UTILITIES` tab. If not, please open the add-ins panel and manually run it.
\ No newline at end of file
diff --git a/installer/OSX-DMG/license.txt b/installer/OSX-DMG/license.txt
deleted file mode 100755
index 4704a010d5..0000000000
--- a/installer/OSX-DMG/license.txt
+++ /dev/null
@@ -1,188 +0,0 @@
-TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-1. Definitions.
-
-"License" shall mean the terms and conditions for use, reproduction,
-and distribution as defined by Sections 1 through 9 of this document.
-
-"Licensor" shall mean the copyright owner or entity authorized by
-the copyright owner that is granting the License.
-
-"Legal Entity" shall mean the union of the acting entity and all
-other entities that control, are controlled by, or are under common
-control with that entity. For the purposes of this definition,
-"control" means (i) the power, direct or indirect, to cause the
-direction or management of such entity, whether by contract or
-otherwise, or (ii) ownership of fifty percent (50%) or more of the
-outstanding shares, or (iii) beneficial ownership of such entity.
-
-"You" (or "Your") shall mean an individual or Legal Entity
-exercising permissions granted by this License.
-
-"Source" form shall mean the preferred form for making modifications,
-including but not limited to software source code, documentation
-source, and configuration files.
-
-"Object" form shall mean any form resulting from mechanical
-transformation or translation of a Source form, including but
-not limited to compiled object code, generated documentation,
-and conversions to other media types.
-
-"Work" shall mean the work of authorship, whether in Source or
-Object form, made available under the License, as indicated by a
-copyright notice that is included in or attached to the work
-(an example is provided in the Appendix below).
-
-"Derivative Works" shall mean any work, whether in Source or Object
-form, that is based on (or derived from) the Work and for which the
-editorial revisions, annotations, elaborations, or other modifications
-represent, as a whole, an original work of authorship. For the purposes
-of this License, Derivative Works shall not include works that remain
-separable from, or merely link (or bind by name) to the interfaces of,
-the Work and Derivative Works thereof.
-
-"Contribution" shall mean any work of authorship, including
-the original version of the Work and any modifications or additions
-to that Work or Derivative Works thereof, that is intentionally
-submitted to Licensor for inclusion in the Work by the copyright owner
-or by an individual or Legal Entity authorized to submit on behalf of
-the copyright owner. For the purposes of this definition, "submitted"
-means any form of electronic, verbal, or written communication sent
-to the Licensor or its representatives, including but not limited to
-communication on electronic mailing lists, source code control systems,
-and issue tracking systems that are managed by, or on behalf of, the
-Licensor for the purpose of discussing and improving the Work, but
-excluding communication that is conspicuously marked or otherwise
-designated in writing by the copyright owner as "Not a Contribution."
-
-"Contributor" shall mean Licensor and any individual or Legal Entity
-on behalf of whom a Contribution has been received by Licensor and
-subsequently incorporated within the Work.
-
-2. Grant of Copyright License. Subject to the terms and conditions of
-this License, each Contributor hereby grants to You a perpetual,
-worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-copyright license to reproduce, prepare Derivative Works of,
-publicly display, publicly perform, sublicense, and distribute the
-Work and such Derivative Works in Source or Object form.
-
-3. Grant of Patent License. Subject to the terms and conditions of
-this License, each Contributor hereby grants to You a perpetual,
-worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-(except as stated in this section) patent license to make, have made,
-use, offer to sell, sell, import, and otherwise transfer the Work,
-where such license applies only to those patent claims licensable
-by such Contributor that are necessarily infringed by their
-Contribution(s) alone or by combination of their Contribution(s)
-with the Work to which such Contribution(s) was submitted. If You
-institute patent litigation against any entity (including a
-cross-claim or counterclaim in a lawsuit) alleging that the Work
-or a Contribution incorporated within the Work constitutes direct
-or contributory patent infringement, then any patent licenses
-granted to You under this License for that Work shall terminate
-as of the date such litigation is filed.
-
-4. Redistribution. You may reproduce and distribute copies of the
-Work or Derivative Works thereof in any medium, with or without
-modifications, and in Source or Object form, provided that You
-meet the following conditions:
-
-(a) You must give any other recipients of the Work or
-Derivative Works a copy of this License; and
-
-(b) You must cause any modified files to carry prominent notices
-stating that You changed the files; and
-
-(c) You must retain, in the Source form of any Derivative Works
-that You distribute, all copyright, patent, trademark, and
-attribution notices from the Source form of the Work,
-excluding those notices that do not pertain to any part of
-the Derivative Works; and
-
-(d) If the Work includes a "NOTICE" text file as part of its
-distribution, then any Derivative Works that You distribute must
-include a readable copy of the attribution notices contained
-within such NOTICE file, excluding those notices that do not
-pertain to any part of the Derivative Works, in at least one
-of the following places: within a NOTICE text file distributed
-as part of the Derivative Works; within the Source form or
-documentation, if provided along with the Derivative Works; or,
-within a display generated by the Derivative Works, if and
-wherever such third-party notices normally appear. The contents
-of the NOTICE file are for informational purposes only and
-do not modify the License. You may add Your own attribution
-notices within Derivative Works that You distribute, alongside
-or as an addendum to the NOTICE text from the Work, provided
-that such additional attribution notices cannot be construed
-as modifying the License.
-
-You may add Your own copyright statement to Your modifications and
-may provide additional or different license terms and conditions
-for use, reproduction, or distribution of Your modifications, or
-for any such Derivative Works as a whole, provided Your use,
-reproduction, and distribution of the Work otherwise complies with
-the conditions stated in this License.
-
-5. Submission of Contributions. Unless You explicitly state otherwise,
-any Contribution intentionally submitted for inclusion in the Work
-by You to the Licensor shall be under the terms and conditions of
-this License, without any additional terms or conditions.
-Notwithstanding the above, nothing herein shall supersede or modify
-the terms of any separate license agreement you may have executed
-with Licensor regarding such Contributions.
-
-6. Trademarks. This License does not grant permission to use the trade
-names, trademarks, service marks, or product names of the Licensor,
-except as required for reasonable and customary use in describing the
-origin of the Work and reproducing the content of the NOTICE file.
-
-7. Disclaimer of Warranty. Unless required by applicable law or
-agreed to in writing, Licensor provides the Work (and each
-Contributor provides its Contributions) on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-implied, including, without limitation, any warranties or conditions
-of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
-PARTICULAR PURPOSE. You are solely responsible for determining the
-appropriateness of using or redistributing the Work and assume any
-risks associated with Your exercise of permissions under this License.
-
-8. Limitation of Liability. In no event and under no legal theory,
-whether in tort (including negligence), contract, or otherwise,
-unless required by applicable law (such as deliberate and grossly
-negligent acts) or agreed to in writing, shall any Contributor be
-liable to You for damages, including any direct, indirect, special,
-incidental, or consequential damages of any character arising as a
-result of this License or out of the use or inability to use the
-Work (including but not limited to damages for loss of goodwill,
-work stoppage, computer failure or malfunction, or any and all
-other commercial damages or losses), even if such Contributor
-has been advised of the possibility of such damages.
-
-9. Accepting Warranty or Additional Liability. While redistributing
-the Work or Derivative Works thereof, You may choose to offer,
-and charge a fee for, acceptance of support, warranty, indemnity,
-or other liability obligations and/or rights consistent with this
-License. However, in accepting such obligations, You may act only
-on Your own behalf and on Your sole responsibility, not on behalf
-of any other Contributor, and only if You agree to indemnify,
-defend, and hold each Contributor harmless for any liability
-incurred by, or claims asserted against, such Contributor by reason
-of your accepting any such warranty or additional liability.
-
-END OF TERMS AND CONDITIONS
-
-APPENDIX: How to apply the Apache License to your work.
-
-Copyright 2021 Autodesk inc.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
diff --git a/installer/OSX-DMG/make-installer.sh b/installer/OSX-DMG/make-installer.sh
deleted file mode 100755
index e153bd8614..0000000000
--- a/installer/OSX-DMG/make-installer.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-test -f Synthesis-Installer.dmg && rm Synthesis-Installer.dmg
-./create-dmg/create-dmg \
- --volname "Synthesis Installer" \
- --background "SynthesisMacInstallerBackground.png" \
- --window-pos 200 120 \
- --window-size 375 320 \
- --text-size 12 \
- --icon-size 60 \
- --icon "Synthesis.app" 85 80 \
- --add-file Instructions.pdf exporter-install-instructions.pdf 288 190 \
- --add-file Exporter ../../exporter/SynthesisFusionAddin 85 190 \
- --hide-extension "Synthesis.app" \
- --app-drop-link 288 80 \
- --eula "license.txt" \
- --text-size 10 \
- "Synthesis-Installer.dmg" \
- "source_folder/"
-
-# --volicon "synthesis-icon.icns" \
-# --background "installer_background.png" \
-# --background "Synthesis-Background.png" \
diff --git a/installer/OSX/.gitignore b/installer/OSX/.gitignore
deleted file mode 100644
index 57068f9f27..0000000000
--- a/installer/OSX/.gitignore
+++ /dev/null
@@ -1,12 +0,0 @@
-target/
-application/*
-Autdoesk
-!application/.gitkeep
-!application/uninstall.sh
-!application/background.png
-!application/spec.json
-*.pkg
-dmg
-
-build
-build.zip
\ No newline at end of file
diff --git a/installer/OSX/App/payload/Contents/Info.plist b/installer/OSX/App/payload/Contents/Info.plist
deleted file mode 100755
index 734c2b7a8a..0000000000
--- a/installer/OSX/App/payload/Contents/Info.plist
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
Thank you for installing Synthesis: An Autodesk Technology
-In order to improve this product and understand how it is used, we collect non-personal product usage information. This usage information may consist of custom events like Replay Mode, Driver Practice Mode, Tutorial Link Clicked, etc. This information is not used to identify or contact you. You can turn data collection off from the Control Panel within the simulator. By installing, you agree that you have read the terms of service agreement and data collection statement above.
-Copyright © 2021 Autodesk inc.
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
-TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-1. Definitions.
-
-"License" shall mean the terms and conditions for use, reproduction,
-and distribution as defined by Sections 1 through 9 of this document.
-
-"Licensor" shall mean the copyright owner or entity authorized by
-the copyright owner that is granting the License.
-
-"Legal Entity" shall mean the union of the acting entity and all
-other entities that control, are controlled by, or are under common
-control with that entity. For the purposes of this definition,
-"control" means (i) the power, direct or indirect, to cause the
-direction or management of such entity, whether by contract or
-otherwise, or (ii) ownership of fifty percent (50%) or more of the
-outstanding shares, or (iii) beneficial ownership of such entity.
-
-"You" (or "Your") shall mean an individual or Legal Entity
-exercising permissions granted by this License.
-
-"Source" form shall mean the preferred form for making modifications,
-including but not limited to software source code, documentation
-source, and configuration files.
-
-"Object" form shall mean any form resulting from mechanical
-transformation or translation of a Source form, including but
-not limited to compiled object code, generated documentation,
-and conversions to other media types.
-
-"Work" shall mean the work of authorship, whether in Source or
-Object form, made available under the License, as indicated by a
-copyright notice that is included in or attached to the work
-(an example is provided in the Appendix below).
-
-"Derivative Works" shall mean any work, whether in Source or Object
-form, that is based on (or derived from) the Work and for which the
-editorial revisions, annotations, elaborations, or other modifications
-represent, as a whole, an original work of authorship. For the purposes
-of this License, Derivative Works shall not include works that remain
-separable from, or merely link (or bind by name) to the interfaces of,
-the Work and Derivative Works thereof.
-
-"Contribution" shall mean any work of authorship, including
-the original version of the Work and any modifications or additions
-to that Work or Derivative Works thereof, that is intentionally
-submitted to Licensor for inclusion in the Work by the copyright owner
-or by an individual or Legal Entity authorized to submit on behalf of
-the copyright owner. For the purposes of this definition, "submitted"
-means any form of electronic, verbal, or written communication sent
-to the Licensor or its representatives, including but not limited to
-communication on electronic mailing lists, source code control systems,
-and issue tracking systems that are managed by, or on behalf of, the
-Licensor for the purpose of discussing and improving the Work, but
-excluding communication that is conspicuously marked or otherwise
-designated in writing by the copyright owner as "Not a Contribution."
-
-"Contributor" shall mean Licensor and any individual or Legal Entity
-on behalf of whom a Contribution has been received by Licensor and
-subsequently incorporated within the Work.
-
-2. Grant of Copyright License. Subject to the terms and conditions of
-this License, each Contributor hereby grants to You a perpetual,
-worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-copyright license to reproduce, prepare Derivative Works of,
-publicly display, publicly perform, sublicense, and distribute the
-Work and such Derivative Works in Source or Object form.
-
-3. Grant of Patent License. Subject to the terms and conditions of
-this License, each Contributor hereby grants to You a perpetual,
-worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-(except as stated in this section) patent license to make, have made,
-use, offer to sell, sell, import, and otherwise transfer the Work,
-where such license applies only to those patent claims licensable
-by such Contributor that are necessarily infringed by their
-Contribution(s) alone or by combination of their Contribution(s)
-with the Work to which such Contribution(s) was submitted. If You
-institute patent litigation against any entity (including a
-cross-claim or counterclaim in a lawsuit) alleging that the Work
-or a Contribution incorporated within the Work constitutes direct
-or contributory patent infringement, then any patent licenses
-granted to You under this License for that Work shall terminate
-as of the date such litigation is filed.
-
-4. Redistribution. You may reproduce and distribute copies of the
-Work or Derivative Works thereof in any medium, with or without
-modifications, and in Source or Object form, provided that You
-meet the following conditions:
-
-(a) You must give any other recipients of the Work or
-Derivative Works a copy of this License; and
-
-(b) You must cause any modified files to carry prominent notices
-stating that You changed the files; and
-
-(c) You must retain, in the Source form of any Derivative Works
-that You distribute, all copyright, patent, trademark, and
-attribution notices from the Source form of the Work,
-excluding those notices that do not pertain to any part of
-the Derivative Works; and
-
-(d) If the Work includes a "NOTICE" text file as part of its
-distribution, then any Derivative Works that You distribute must
-include a readable copy of the attribution notices contained
-within such NOTICE file, excluding those notices that do not
-pertain to any part of the Derivative Works, in at least one
-of the following places: within a NOTICE text file distributed
-as part of the Derivative Works; within the Source form or
-documentation, if provided along with the Derivative Works; or,
-within a display generated by the Derivative Works, if and
-wherever such third-party notices normally appear. The contents
-of the NOTICE file are for informational purposes only and
-do not modify the License. You may add Your own attribution
-notices within Derivative Works that You distribute, alongside
-or as an addendum to the NOTICE text from the Work, provided
-that such additional attribution notices cannot be construed
-as modifying the License.
-
-You may add Your own copyright statement to Your modifications and
-may provide additional or different license terms and conditions
-for use, reproduction, or distribution of Your modifications, or
-for any such Derivative Works as a whole, provided Your use,
-reproduction, and distribution of the Work otherwise complies with
-the conditions stated in this License.
-
-5. Submission of Contributions. Unless You explicitly state otherwise,
-any Contribution intentionally submitted for inclusion in the Work
-by You to the Licensor shall be under the terms and conditions of
-this License, without any additional terms or conditions.
-Notwithstanding the above, nothing herein shall supersede or modify
-the terms of any separate license agreement you may have executed
-with Licensor regarding such Contributions.
-
-6. Trademarks. This License does not grant permission to use the trade
-names, trademarks, service marks, or product names of the Licensor,
-except as required for reasonable and customary use in describing the
-origin of the Work and reproducing the content of the NOTICE file.
-
-7. Disclaimer of Warranty. Unless required by applicable law or
-agreed to in writing, Licensor provides the Work (and each
-Contributor provides its Contributions) on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-implied, including, without limitation, any warranties or conditions
-of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
-PARTICULAR PURPOSE. You are solely responsible for determining the
-appropriateness of using or redistributing the Work and assume any
-risks associated with Your exercise of permissions under this License.
-
-8. Limitation of Liability. In no event and under no legal theory,
-whether in tort (including negligence), contract, or otherwise,
-unless required by applicable law (such as deliberate and grossly
-negligent acts) or agreed to in writing, shall any Contributor be
-liable to You for damages, including any direct, indirect, special,
-incidental, or consequential damages of any character arising as a
-result of this License or out of the use or inability to use the
-Work (including but not limited to damages for loss of goodwill,
-work stoppage, computer failure or malfunction, or any and all
-other commercial damages or losses), even if such Contributor
-has been advised of the possibility of such damages.
-
-9. Accepting Warranty or Additional Liability. While redistributing
-the Work or Derivative Works thereof, You may choose to offer,
-and charge a fee for, acceptance of support, warranty, indemnity,
-or other liability obligations and/or rights consistent with this
-License. However, in accepting such obligations, You may act only
-on Your own behalf and on Your sole responsibility, not on behalf
-of any other Contributor, and only if You agree to indemnify,
-defend, and hold each Contributor harmless for any liability
-incurred by, or claims asserted against, such Contributor by reason
-of your accepting any such warranty or additional liability.
-
-END OF TERMS AND CONDITIONS
-
-APPENDIX: How to apply the Apache License to your work.
-
-Copyright 2021 Autodesk inc.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
-
Click “Continue" to continue the setup
-This will install Synthesis: An Autodesk Application 5.0.0.0 ALPHA on your computer. You will be guided through the steps necessary to install this software.
-Click “Continue" to continue the setup
-