├── .gitattributes ├── .gitignore ├── Functions.vb ├── JREInstallObject.vb ├── JavaRa.ico ├── JavaRa.sln ├── JavaRa.vbproj ├── My Project ├── Application.Designer.vb ├── Application.myapp ├── AssemblyInfo.vb ├── Resources.Designer.vb ├── Resources.resx ├── Settings.Designer.vb ├── Settings.settings └── app.manifest ├── README.md ├── Resources ├── about.html ├── atom.png ├── clean.png ├── clear.png ├── credits.html ├── credits1.html ├── download.png ├── tools.png └── update.png ├── UI.Designer.vb ├── UI.resx ├── UI.vb ├── binaries └── JavaRa.exe ├── localizations ├── lang.Brazilian.locale ├── lang.Chinese (Simplified).locale ├── lang.Chinese (Traditional).locale ├── lang.Czech.locale ├── lang.Finnish.locale ├── lang.French.locale ├── lang.German.locale ├── lang.Hungarian.locale ├── lang.Italian.locale ├── lang.Polish.locale ├── lang.Russian.locale ├── lang.Spanish.locale └── output_strings.false ├── routines_interface.vb ├── routines_locales.vb └── routines_registry.vb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/.gitignore -------------------------------------------------------------------------------- /Functions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/Functions.vb -------------------------------------------------------------------------------- /JREInstallObject.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/JREInstallObject.vb -------------------------------------------------------------------------------- /JavaRa.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/JavaRa.ico -------------------------------------------------------------------------------- /JavaRa.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/JavaRa.sln -------------------------------------------------------------------------------- /JavaRa.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/JavaRa.vbproj -------------------------------------------------------------------------------- /My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/My Project/Application.myapp -------------------------------------------------------------------------------- /My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/My Project/Resources.resx -------------------------------------------------------------------------------- /My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/My Project/Settings.settings -------------------------------------------------------------------------------- /My Project/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/My Project/app.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/README.md -------------------------------------------------------------------------------- /Resources/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/Resources/about.html -------------------------------------------------------------------------------- /Resources/atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/Resources/atom.png -------------------------------------------------------------------------------- /Resources/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/Resources/clean.png -------------------------------------------------------------------------------- /Resources/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/Resources/clear.png -------------------------------------------------------------------------------- /Resources/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/Resources/credits.html -------------------------------------------------------------------------------- /Resources/credits1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/Resources/credits1.html -------------------------------------------------------------------------------- /Resources/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/Resources/download.png -------------------------------------------------------------------------------- /Resources/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/Resources/tools.png -------------------------------------------------------------------------------- /Resources/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/Resources/update.png -------------------------------------------------------------------------------- /UI.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/UI.Designer.vb -------------------------------------------------------------------------------- /UI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/UI.resx -------------------------------------------------------------------------------- /UI.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/UI.vb -------------------------------------------------------------------------------- /binaries/JavaRa.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/binaries/JavaRa.exe -------------------------------------------------------------------------------- /localizations/lang.Brazilian.locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.Brazilian.locale -------------------------------------------------------------------------------- /localizations/lang.Chinese (Simplified).locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.Chinese (Simplified).locale -------------------------------------------------------------------------------- /localizations/lang.Chinese (Traditional).locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.Chinese (Traditional).locale -------------------------------------------------------------------------------- /localizations/lang.Czech.locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.Czech.locale -------------------------------------------------------------------------------- /localizations/lang.Finnish.locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.Finnish.locale -------------------------------------------------------------------------------- /localizations/lang.French.locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.French.locale -------------------------------------------------------------------------------- /localizations/lang.German.locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.German.locale -------------------------------------------------------------------------------- /localizations/lang.Hungarian.locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.Hungarian.locale -------------------------------------------------------------------------------- /localizations/lang.Italian.locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.Italian.locale -------------------------------------------------------------------------------- /localizations/lang.Polish.locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.Polish.locale -------------------------------------------------------------------------------- /localizations/lang.Russian.locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.Russian.locale -------------------------------------------------------------------------------- /localizations/lang.Spanish.locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/lang.Spanish.locale -------------------------------------------------------------------------------- /localizations/output_strings.false: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/localizations/output_strings.false -------------------------------------------------------------------------------- /routines_interface.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/routines_interface.vb -------------------------------------------------------------------------------- /routines_locales.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/routines_locales.vb -------------------------------------------------------------------------------- /routines_registry.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaneGowland/JavaRa/HEAD/routines_registry.vb --------------------------------------------------------------------------------