├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── pull_request_template.md ├── release-drafter.yml ├── scripts │ └── release-plugins.sh └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── external-licenses.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── run-tests.sh ├── settings.gradle ├── src ├── main │ ├── java │ │ ├── com │ │ │ └── gluonhq │ │ │ │ └── substrate │ │ │ │ ├── Constants.java │ │ │ │ ├── ProjectConfiguration.java │ │ │ │ ├── SubstrateDispatcher.java │ │ │ │ ├── config │ │ │ │ ├── AndroidResolver.java │ │ │ │ └── ConfigResolver.java │ │ │ │ ├── feature │ │ │ │ └── GluonFeature.java │ │ │ │ ├── model │ │ │ │ ├── ClassPath.java │ │ │ │ ├── InternalProjectConfiguration.java │ │ │ │ ├── ProcessPaths.java │ │ │ │ ├── ReleaseConfiguration.java │ │ │ │ └── Triplet.java │ │ │ │ ├── target │ │ │ │ ├── AbstractTargetConfiguration.java │ │ │ │ ├── AndroidTargetConfiguration.java │ │ │ │ ├── DarwinTargetConfiguration.java │ │ │ │ ├── IosTargetConfiguration.java │ │ │ │ ├── LinuxTargetConfiguration.java │ │ │ │ ├── MacOSTargetConfiguration.java │ │ │ │ ├── PosixTargetConfiguration.java │ │ │ │ ├── TargetConfiguration.java │ │ │ │ ├── WebTargetConfiguration.java │ │ │ │ └── WindowsTargetConfiguration.java │ │ │ │ └── util │ │ │ │ ├── FileDeps.java │ │ │ │ ├── FileOps.java │ │ │ │ ├── Lib.java │ │ │ │ ├── Logger.java │ │ │ │ ├── ProcessRunner.java │ │ │ │ ├── Strings.java │ │ │ │ ├── Version.java │ │ │ │ ├── VersionParser.java │ │ │ │ ├── XcodeUtils.java │ │ │ │ ├── ios │ │ │ │ ├── CodeSigning.java │ │ │ │ ├── Deploy.java │ │ │ │ ├── Identity.java │ │ │ │ ├── InfoPlist.java │ │ │ │ ├── MobileProvision.java │ │ │ │ └── Simulator.java │ │ │ │ ├── linux │ │ │ │ ├── LinuxFlavor.java │ │ │ │ └── LinuxLinkerFlags.java │ │ │ │ ├── macos │ │ │ │ ├── CodeSigning.java │ │ │ │ ├── Identity.java │ │ │ │ ├── InfoPlist.java │ │ │ │ ├── Packager.java │ │ │ │ └── ProvisionProfile.java │ │ │ │ ├── plist │ │ │ │ ├── NSArrayEx.java │ │ │ │ ├── NSDictionaryEx.java │ │ │ │ └── NSObjectEx.java │ │ │ │ ├── web │ │ │ │ └── AheadOfTimeBase.java │ │ │ │ └── windows │ │ │ │ └── MSIBundler.java │ │ └── module-info.java │ └── resources │ │ ├── config │ │ ├── jniconfig-java.json │ │ ├── jniconfig-java11.json │ │ ├── jniconfig-javafxsw.json │ │ ├── reflectionconfig-java.json │ │ └── reflectionconfig-javafxsw.json │ │ ├── native │ │ ├── android │ │ │ ├── android_project │ │ │ │ ├── app │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── keystore.properties │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── java │ │ │ │ │ │ ├── com │ │ │ │ │ │ │ └── gluonhq │ │ │ │ │ │ │ │ └── helloandroid │ │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ │ ├── NativeWebView.java │ │ │ │ │ │ │ │ └── PermissionRequestActivity.java │ │ │ │ │ │ └── javafx │ │ │ │ │ │ │ └── scene │ │ │ │ │ │ │ └── input │ │ │ │ │ │ │ └── KeyCode.java │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-ldpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ ├── project.properties │ │ │ │ └── settings.gradle │ │ │ ├── c │ │ │ │ ├── attach_adapter.c │ │ │ │ ├── bridge_webview.c │ │ │ │ ├── bridge_webview.h │ │ │ │ ├── dummy.c │ │ │ │ ├── glibc_shim.c │ │ │ │ ├── grandroid.h │ │ │ │ ├── grandroid_ext.h │ │ │ │ ├── javafx_adapter.c │ │ │ │ ├── launcher.c │ │ │ │ ├── logger.c │ │ │ │ └── touch_events.c │ │ │ └── cap │ │ │ │ ├── AArch64LibCHelperDirectives.cap │ │ │ │ ├── AMD64LibCHelperDirectives.cap │ │ │ │ ├── BuiltinDirectives.cap │ │ │ │ ├── JNIHeaderDirectives.cap │ │ │ │ ├── JNIHeaderDirectivesJDK19OrLater.cap │ │ │ │ ├── LLVMDirectives.cap │ │ │ │ ├── LibFFIHeaderDirectives.cap │ │ │ │ ├── PosixDirectives.cap │ │ │ │ └── RISCV64LibCHelperDirectives.cap │ │ ├── ios │ │ │ ├── AppDelegate.m │ │ │ ├── Default-Info.plist │ │ │ ├── Entitlements.plist │ │ │ ├── JvmFuncsFallbacks.c │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ ├── assets │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Gluon-app-store-icon-1024@1x.png │ │ │ │ │ │ ├── Gluon-ipad-app-icon-76@1x.png │ │ │ │ │ │ ├── Gluon-ipad-app-icon-76@2x.png │ │ │ │ │ │ ├── Gluon-ipad-notifications-icon-20@1x.png │ │ │ │ │ │ ├── Gluon-ipad-notifications-icon-20@2x.png │ │ │ │ │ │ ├── Gluon-ipad-pro-app-icon-83.5@2x.png │ │ │ │ │ │ ├── Gluon-ipad-settings-icon-29@1x.png │ │ │ │ │ │ ├── Gluon-ipad-settings-icon-29@2x.png │ │ │ │ │ │ ├── Gluon-ipad-spotlight-icon-40@1x.png │ │ │ │ │ │ ├── Gluon-ipad-spotlight-icon-40@2x.png │ │ │ │ │ │ ├── Gluon-iphone-app-icon-60@2x.png │ │ │ │ │ │ ├── Gluon-iphone-app-icon-60@3x.png │ │ │ │ │ │ ├── Gluon-iphone-notification-icon-20@2x.png │ │ │ │ │ │ ├── Gluon-iphone-notification-icon-20@3x.png │ │ │ │ │ │ ├── Gluon-iphone-spotlight-icon-40@2x.png │ │ │ │ │ │ ├── Gluon-iphone-spotlight-icon-40@3x.png │ │ │ │ │ │ ├── Gluon-iphone-spotlight-settings-icon-29@2x.png │ │ │ │ │ │ └── Gluon-iphone-spotlight-settings-icon-29@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── MainScreen.storyboard │ │ │ │ ├── Default-375w-667h@2x~iphone.png │ │ │ │ ├── Default-375w-812h-landscape@3x~iphone.png │ │ │ │ ├── Default-375w-812h@3x~iphone.png │ │ │ │ ├── Default-414w-736h-landscape@3x~iphone.png │ │ │ │ ├── Default-414w-736h@3x~iphone.png │ │ │ │ ├── Default-414w-896h-landscape@3x~iphone.png │ │ │ │ ├── Default-414w-896h@3x~iphone.png │ │ │ │ ├── Default-568h@2x~iphone.png │ │ │ │ ├── Default-landscape@2x~ipad.png │ │ │ │ ├── Default-landscape~ipad.png │ │ │ │ ├── Default-portrait@2x~ipad.png │ │ │ │ ├── Default-portrait~ipad.png │ │ │ │ ├── Default@2x~iphone.png │ │ │ │ ├── iTunesArtwork │ │ │ │ └── iTunesArtwork@2x │ │ │ ├── cap │ │ │ │ ├── AArch64LibCHelperDirectives.cap │ │ │ │ ├── AMD64LibCHelperDirectives.cap │ │ │ │ ├── BuiltinDirectives.cap │ │ │ │ ├── JNIHeaderDirectives.cap │ │ │ │ ├── JNIHeaderDirectivesJDK19OrLater.cap │ │ │ │ ├── LLVMDirectives.cap │ │ │ │ ├── LibFFIHeaderDirectives.cap │ │ │ │ ├── PosixDirectives.cap │ │ │ │ └── RISCV64LibCHelperDirectives.cap │ │ │ └── dummy.c │ │ ├── linux-aarch64 │ │ │ └── cap │ │ │ │ ├── AArch64LibCHelperDirectives.cap │ │ │ │ ├── AMD64LibCHelperDirectives.cap │ │ │ │ ├── BuiltinDirectives.cap │ │ │ │ ├── JNIHeaderDirectives.cap │ │ │ │ ├── LibFFIHeaderDirectives.cap │ │ │ │ └── PosixDirectives.cap │ │ ├── linux │ │ │ └── launcher.c │ │ ├── macosx │ │ │ ├── AppDelegate.m │ │ │ ├── assets │ │ │ │ ├── AppIcon.iconset │ │ │ │ │ ├── icon_128@1x.png │ │ │ │ │ ├── icon_128@2x.png │ │ │ │ │ ├── icon_16@1x.png │ │ │ │ │ ├── icon_16@2x.png │ │ │ │ │ ├── icon_256@1x.png │ │ │ │ │ ├── icon_256@2x.png │ │ │ │ │ ├── icon_32@1x.png │ │ │ │ │ ├── icon_32@2x.png │ │ │ │ │ ├── icon_512@1x.png │ │ │ │ │ └── icon_512@2x.png │ │ │ │ ├── Entitlements.plist │ │ │ │ ├── Info.plist │ │ │ │ ├── PkgInfo │ │ │ │ ├── background.png │ │ │ │ ├── background.tiff │ │ │ │ ├── license.plist │ │ │ │ ├── postinstall.sh │ │ │ │ ├── preinstall.sh │ │ │ │ ├── productInfo.plist │ │ │ │ └── setup.scpt │ │ │ └── launcher.c │ │ └── windows │ │ │ ├── assets │ │ │ ├── IconGroup.rc │ │ │ └── icon.ico │ │ │ ├── launcher.c │ │ │ └── wix │ │ │ └── main.wxs │ │ └── thirdparty │ │ └── ios-deploy │ │ ├── ios-deploy.rb │ │ └── lldbpatch.diff └── test │ ├── java │ └── com │ │ └── gluonhq │ │ └── substrate │ │ ├── HelloFXMLTest.java │ │ ├── HelloFXTest.java │ │ ├── HelloGluonTest.java │ │ ├── HelloWorldTest.java │ │ ├── IOSTest.java │ │ ├── SubstrateTest.java │ │ ├── TestUtils.java │ │ ├── config │ │ └── ConfigTests.java │ │ ├── model │ │ ├── ClassPathTests.java │ │ └── InternalProjectConfigurationTest.java │ │ └── util │ │ ├── FileOpsTests.java │ │ ├── LibTest.java │ │ ├── PlistTests.java │ │ ├── ProcessTest.java │ │ ├── StringsTests.java │ │ ├── VersionParserTest.java │ │ └── VersionTest.java │ └── resources │ ├── substrate-test.jar │ ├── test-ops.xml │ ├── test-resource.txt │ ├── test1.plist │ └── test2.plist └── test-project ├── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── helloFX ├── build.gradle └── src │ └── main │ └── java │ └── com │ └── gluonhq │ └── substrate │ └── test │ └── Main.java ├── helloFXML ├── build.gradle └── src │ └── main │ ├── java │ └── com │ │ └── gluonhq │ │ └── substrate │ │ └── test │ │ ├── Main.java │ │ └── MainController.java │ └── resources │ └── com │ └── gluonhq │ └── substrate │ └── test │ ├── bundle.properties │ ├── main.fxml │ └── style.css ├── helloGluon ├── build.gradle └── src │ └── main │ ├── java │ └── com │ │ └── gluonhq │ │ └── substrate │ │ └── test │ │ └── Main.java │ └── resources │ └── com │ └── gluonhq │ └── substrate │ └── test │ ├── openduke.png │ └── styles.css ├── helloWorld ├── build.gradle └── src │ └── main │ └── java │ └── com │ └── gluonhq │ └── substrate │ └── test │ └── Main.java └── settings.gradle /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | exclude-labels: 2 | - 'housekeeping' 3 | template: | 4 | ## What’s Changed 5 | $CHANGES -------------------------------------------------------------------------------- /.github/scripts/release-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/.github/scripts/release-plugins.sh -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/README.md -------------------------------------------------------------------------------- /external-licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/external-licenses.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/gradlew.bat -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/run-tests.sh -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'substrate' 2 | -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/Constants.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/ProjectConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/ProjectConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/SubstrateDispatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/SubstrateDispatcher.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/config/AndroidResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/config/AndroidResolver.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/config/ConfigResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/config/ConfigResolver.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/feature/GluonFeature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/feature/GluonFeature.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/model/ClassPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/model/ClassPath.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/model/InternalProjectConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/model/InternalProjectConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/model/ProcessPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/model/ProcessPaths.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/model/ReleaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/model/ReleaseConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/model/Triplet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/model/Triplet.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/target/AbstractTargetConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/target/AbstractTargetConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/target/AndroidTargetConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/target/AndroidTargetConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/target/DarwinTargetConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/target/DarwinTargetConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/target/IosTargetConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/target/IosTargetConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/target/LinuxTargetConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/target/LinuxTargetConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/target/MacOSTargetConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/target/MacOSTargetConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/target/PosixTargetConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/target/PosixTargetConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/target/TargetConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/target/TargetConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/target/WebTargetConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/target/WebTargetConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/target/WindowsTargetConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/target/WindowsTargetConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/FileDeps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/FileDeps.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/FileOps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/FileOps.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/Lib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/Lib.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/Logger.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/ProcessRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/ProcessRunner.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/Strings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/Strings.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/Version.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/Version.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/VersionParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/VersionParser.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/XcodeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/XcodeUtils.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/ios/CodeSigning.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/ios/CodeSigning.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/ios/Deploy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/ios/Deploy.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/ios/Identity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/ios/Identity.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/ios/InfoPlist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/ios/InfoPlist.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/ios/MobileProvision.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/ios/MobileProvision.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/ios/Simulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/ios/Simulator.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/linux/LinuxFlavor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/linux/LinuxFlavor.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/linux/LinuxLinkerFlags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/linux/LinuxLinkerFlags.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/macos/CodeSigning.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/macos/CodeSigning.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/macos/Identity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/macos/Identity.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/macos/InfoPlist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/macos/InfoPlist.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/macos/Packager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/macos/Packager.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/macos/ProvisionProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/macos/ProvisionProfile.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/plist/NSArrayEx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/plist/NSArrayEx.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/plist/NSDictionaryEx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/plist/NSDictionaryEx.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/plist/NSObjectEx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/plist/NSObjectEx.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/web/AheadOfTimeBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/web/AheadOfTimeBase.java -------------------------------------------------------------------------------- /src/main/java/com/gluonhq/substrate/util/windows/MSIBundler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/com/gluonhq/substrate/util/windows/MSIBundler.java -------------------------------------------------------------------------------- /src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/java/module-info.java -------------------------------------------------------------------------------- /src/main/resources/config/jniconfig-java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/config/jniconfig-java.json -------------------------------------------------------------------------------- /src/main/resources/config/jniconfig-java11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/config/jniconfig-java11.json -------------------------------------------------------------------------------- /src/main/resources/config/jniconfig-javafxsw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/config/jniconfig-javafxsw.json -------------------------------------------------------------------------------- /src/main/resources/config/reflectionconfig-java.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/config/reflectionconfig-java.json -------------------------------------------------------------------------------- /src/main/resources/config/reflectionconfig-javafxsw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/config/reflectionconfig-javafxsw.json -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/build.gradle -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/keystore.properties -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/src/main/java/com/gluonhq/helloandroid/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/src/main/java/com/gluonhq/helloandroid/MainActivity.java -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/src/main/java/com/gluonhq/helloandroid/NativeWebView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/src/main/java/com/gluonhq/helloandroid/NativeWebView.java -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/src/main/java/com/gluonhq/helloandroid/PermissionRequestActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/src/main/java/com/gluonhq/helloandroid/PermissionRequestActivity.java -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/src/main/java/javafx/scene/input/KeyCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/src/main/java/javafx/scene/input/KeyCode.java -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/build.gradle -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/gradle.properties -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/gradlew -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/gradlew.bat -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/android_project/project.properties -------------------------------------------------------------------------------- /src/main/resources/native/android/android_project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /src/main/resources/native/android/c/attach_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/c/attach_adapter.c -------------------------------------------------------------------------------- /src/main/resources/native/android/c/bridge_webview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/c/bridge_webview.c -------------------------------------------------------------------------------- /src/main/resources/native/android/c/bridge_webview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/c/bridge_webview.h -------------------------------------------------------------------------------- /src/main/resources/native/android/c/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/c/dummy.c -------------------------------------------------------------------------------- /src/main/resources/native/android/c/glibc_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/c/glibc_shim.c -------------------------------------------------------------------------------- /src/main/resources/native/android/c/grandroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/c/grandroid.h -------------------------------------------------------------------------------- /src/main/resources/native/android/c/grandroid_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/c/grandroid_ext.h -------------------------------------------------------------------------------- /src/main/resources/native/android/c/javafx_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/c/javafx_adapter.c -------------------------------------------------------------------------------- /src/main/resources/native/android/c/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/c/launcher.c -------------------------------------------------------------------------------- /src/main/resources/native/android/c/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/c/logger.c -------------------------------------------------------------------------------- /src/main/resources/native/android/c/touch_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/c/touch_events.c -------------------------------------------------------------------------------- /src/main/resources/native/android/cap/AArch64LibCHelperDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/cap/AArch64LibCHelperDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/android/cap/AMD64LibCHelperDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/cap/AMD64LibCHelperDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/android/cap/BuiltinDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/cap/BuiltinDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/android/cap/JNIHeaderDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/cap/JNIHeaderDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/android/cap/JNIHeaderDirectivesJDK19OrLater.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/cap/JNIHeaderDirectivesJDK19OrLater.cap -------------------------------------------------------------------------------- /src/main/resources/native/android/cap/LLVMDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/cap/LLVMDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/android/cap/LibFFIHeaderDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/cap/LibFFIHeaderDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/android/cap/PosixDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/cap/PosixDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/android/cap/RISCV64LibCHelperDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/android/cap/RISCV64LibCHelperDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/ios/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/AppDelegate.m -------------------------------------------------------------------------------- /src/main/resources/native/ios/Default-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/Default-Info.plist -------------------------------------------------------------------------------- /src/main/resources/native/ios/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/Entitlements.plist -------------------------------------------------------------------------------- /src/main/resources/native/ios/JvmFuncsFallbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/JvmFuncsFallbacks.c -------------------------------------------------------------------------------- /src/main/resources/native/ios/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-app-store-icon-1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-app-store-icon-1024@1x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-app-icon-76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-app-icon-76@1x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-app-icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-app-icon-76@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-notifications-icon-20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-notifications-icon-20@1x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-notifications-icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-notifications-icon-20@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-pro-app-icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-pro-app-icon-83.5@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-settings-icon-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-settings-icon-29@1x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-settings-icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-settings-icon-29@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-spotlight-icon-40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-spotlight-icon-40@1x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-spotlight-icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-ipad-spotlight-icon-40@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-app-icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-app-icon-60@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-app-icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-app-icon-60@3x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-notification-icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-notification-icon-20@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-notification-icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-notification-icon-20@3x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-spotlight-icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-spotlight-icon-40@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-spotlight-icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-spotlight-icon-40@3x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-spotlight-settings-icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-spotlight-settings-icon-29@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-spotlight-settings-icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/AppIcon.appiconset/Gluon-iphone-spotlight-settings-icon-29@3x.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Base.lproj/MainScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Base.lproj/MainScreen.storyboard -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-375w-667h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-375w-667h@2x~iphone.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-375w-812h-landscape@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-375w-812h-landscape@3x~iphone.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-375w-812h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-375w-812h@3x~iphone.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-414w-736h-landscape@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-414w-736h-landscape@3x~iphone.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-414w-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-414w-736h@3x~iphone.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-414w-896h-landscape@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-414w-896h-landscape@3x~iphone.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-414w-896h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-414w-896h@3x~iphone.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-landscape@2x~ipad.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-landscape~ipad.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-portrait@2x~ipad.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default-portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default-portrait~ipad.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/Default@2x~iphone.png -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/iTunesArtwork -------------------------------------------------------------------------------- /src/main/resources/native/ios/assets/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/assets/iTunesArtwork@2x -------------------------------------------------------------------------------- /src/main/resources/native/ios/cap/AArch64LibCHelperDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/cap/AArch64LibCHelperDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/ios/cap/AMD64LibCHelperDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/cap/AMD64LibCHelperDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/ios/cap/BuiltinDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/cap/BuiltinDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/ios/cap/JNIHeaderDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/cap/JNIHeaderDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/ios/cap/JNIHeaderDirectivesJDK19OrLater.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/cap/JNIHeaderDirectivesJDK19OrLater.cap -------------------------------------------------------------------------------- /src/main/resources/native/ios/cap/LLVMDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/cap/LLVMDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/ios/cap/LibFFIHeaderDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/cap/LibFFIHeaderDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/ios/cap/PosixDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/cap/PosixDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/ios/cap/RISCV64LibCHelperDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/cap/RISCV64LibCHelperDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/ios/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/ios/dummy.c -------------------------------------------------------------------------------- /src/main/resources/native/linux-aarch64/cap/AArch64LibCHelperDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/linux-aarch64/cap/AArch64LibCHelperDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/linux-aarch64/cap/AMD64LibCHelperDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/linux-aarch64/cap/AMD64LibCHelperDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/linux-aarch64/cap/BuiltinDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/linux-aarch64/cap/BuiltinDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/linux-aarch64/cap/JNIHeaderDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/linux-aarch64/cap/JNIHeaderDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/linux-aarch64/cap/LibFFIHeaderDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/linux-aarch64/cap/LibFFIHeaderDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/linux-aarch64/cap/PosixDirectives.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/linux-aarch64/cap/PosixDirectives.cap -------------------------------------------------------------------------------- /src/main/resources/native/linux/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/linux/launcher.c -------------------------------------------------------------------------------- /src/main/resources/native/macosx/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/AppDelegate.m -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/AppIcon.iconset/icon_128@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/AppIcon.iconset/icon_128@1x.png -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/AppIcon.iconset/icon_128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/AppIcon.iconset/icon_128@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/AppIcon.iconset/icon_16@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/AppIcon.iconset/icon_16@1x.png -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/AppIcon.iconset/icon_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/AppIcon.iconset/icon_16@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/AppIcon.iconset/icon_256@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/AppIcon.iconset/icon_256@1x.png -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/AppIcon.iconset/icon_256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/AppIcon.iconset/icon_256@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/AppIcon.iconset/icon_32@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/AppIcon.iconset/icon_32@1x.png -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/AppIcon.iconset/icon_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/AppIcon.iconset/icon_32@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/AppIcon.iconset/icon_512@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/AppIcon.iconset/icon_512@1x.png -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/AppIcon.iconset/icon_512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/AppIcon.iconset/icon_512@2x.png -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/Entitlements.plist -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/Info.plist -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/background.png -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/background.tiff -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/license.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/license.plist -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/postinstall.sh -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/preinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/preinstall.sh -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/productInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/productInfo.plist -------------------------------------------------------------------------------- /src/main/resources/native/macosx/assets/setup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/assets/setup.scpt -------------------------------------------------------------------------------- /src/main/resources/native/macosx/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/macosx/launcher.c -------------------------------------------------------------------------------- /src/main/resources/native/windows/assets/IconGroup.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/windows/assets/IconGroup.rc -------------------------------------------------------------------------------- /src/main/resources/native/windows/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/windows/assets/icon.ico -------------------------------------------------------------------------------- /src/main/resources/native/windows/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/windows/launcher.c -------------------------------------------------------------------------------- /src/main/resources/native/windows/wix/main.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/native/windows/wix/main.wxs -------------------------------------------------------------------------------- /src/main/resources/thirdparty/ios-deploy/ios-deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/thirdparty/ios-deploy/ios-deploy.rb -------------------------------------------------------------------------------- /src/main/resources/thirdparty/ios-deploy/lldbpatch.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/main/resources/thirdparty/ios-deploy/lldbpatch.diff -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/HelloFXMLTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/HelloFXMLTest.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/HelloFXTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/HelloFXTest.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/HelloGluonTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/HelloGluonTest.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/IOSTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/IOSTest.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/SubstrateTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/SubstrateTest.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/TestUtils.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/config/ConfigTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/config/ConfigTests.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/model/ClassPathTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/model/ClassPathTests.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/model/InternalProjectConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/model/InternalProjectConfigurationTest.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/util/FileOpsTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/util/FileOpsTests.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/util/LibTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/util/LibTest.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/util/PlistTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/util/PlistTests.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/util/ProcessTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/util/ProcessTest.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/util/StringsTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/util/StringsTests.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/util/VersionParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/util/VersionParserTest.java -------------------------------------------------------------------------------- /src/test/java/com/gluonhq/substrate/util/VersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/java/com/gluonhq/substrate/util/VersionTest.java -------------------------------------------------------------------------------- /src/test/resources/substrate-test.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/resources/substrate-test.jar -------------------------------------------------------------------------------- /src/test/resources/test-ops.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/resources/test-ops.xml -------------------------------------------------------------------------------- /src/test/resources/test-resource.txt: -------------------------------------------------------------------------------- 1 | This file exists strictly for unit testing -------------------------------------------------------------------------------- /src/test/resources/test1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/resources/test1.plist -------------------------------------------------------------------------------- /src/test/resources/test2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/src/test/resources/test2.plist -------------------------------------------------------------------------------- /test-project/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/build.gradle -------------------------------------------------------------------------------- /test-project/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /test-project/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /test-project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/gradlew -------------------------------------------------------------------------------- /test-project/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/gradlew.bat -------------------------------------------------------------------------------- /test-project/helloFX/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloFX/build.gradle -------------------------------------------------------------------------------- /test-project/helloFX/src/main/java/com/gluonhq/substrate/test/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloFX/src/main/java/com/gluonhq/substrate/test/Main.java -------------------------------------------------------------------------------- /test-project/helloFXML/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloFXML/build.gradle -------------------------------------------------------------------------------- /test-project/helloFXML/src/main/java/com/gluonhq/substrate/test/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloFXML/src/main/java/com/gluonhq/substrate/test/Main.java -------------------------------------------------------------------------------- /test-project/helloFXML/src/main/java/com/gluonhq/substrate/test/MainController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloFXML/src/main/java/com/gluonhq/substrate/test/MainController.java -------------------------------------------------------------------------------- /test-project/helloFXML/src/main/resources/com/gluonhq/substrate/test/bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloFXML/src/main/resources/com/gluonhq/substrate/test/bundle.properties -------------------------------------------------------------------------------- /test-project/helloFXML/src/main/resources/com/gluonhq/substrate/test/main.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloFXML/src/main/resources/com/gluonhq/substrate/test/main.fxml -------------------------------------------------------------------------------- /test-project/helloFXML/src/main/resources/com/gluonhq/substrate/test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloFXML/src/main/resources/com/gluonhq/substrate/test/style.css -------------------------------------------------------------------------------- /test-project/helloGluon/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloGluon/build.gradle -------------------------------------------------------------------------------- /test-project/helloGluon/src/main/java/com/gluonhq/substrate/test/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloGluon/src/main/java/com/gluonhq/substrate/test/Main.java -------------------------------------------------------------------------------- /test-project/helloGluon/src/main/resources/com/gluonhq/substrate/test/openduke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloGluon/src/main/resources/com/gluonhq/substrate/test/openduke.png -------------------------------------------------------------------------------- /test-project/helloGluon/src/main/resources/com/gluonhq/substrate/test/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloGluon/src/main/resources/com/gluonhq/substrate/test/styles.css -------------------------------------------------------------------------------- /test-project/helloWorld/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloWorld/build.gradle -------------------------------------------------------------------------------- /test-project/helloWorld/src/main/java/com/gluonhq/substrate/test/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/helloWorld/src/main/java/com/gluonhq/substrate/test/Main.java -------------------------------------------------------------------------------- /test-project/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluonhq/substrate/HEAD/test-project/settings.gradle --------------------------------------------------------------------------------