Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LEGUP 6.0.1 Push #776

Merged
merged 22 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift click to select a range
90aa66b
Removed all Inno Setup related code
charlestian23 Feb 23, 2024
980445c
Merge branch 'dev' into inno-setup-removal
charlestian23 Feb 23, 2024
176e3ad
Merge pull request #743 from charlestian23/inno-setup-removal
Chase-Grajeda Feb 23, 2024
76bdd7d
Update javadoc java version (#744)
FisherLuba Feb 23, 2024
4257dd0
Create GridRegion.java
Chase-Grajeda Feb 27, 2024
5726c76
Adding FinishWithEmptyDirectRule test cases
jadeandtea Feb 27, 2024
264b326
Adding test case to TestRunner
jadeandtea Feb 27, 2024
f376817
Merge branch 'dev' into LightUp-Test-Suite-Additions
jadeandtea Feb 27, 2024
838272e
Merge branch 'master' into dev
charlestian23 Mar 27, 2024
6054db7
Improved auto-formatter behavior (#781)
charlestian23 Mar 29, 2024
5452703
Finishing Short Truth Table Contradiction Rule tests (#713)
charlestian23 Mar 29, 2024
3541a9b
Short Truth Table remaining case rules (#737)
charlestian23 Mar 29, 2024
80280db
Automated Java code formatting changes (#783)
github-actions[bot] Mar 29, 2024
0200a26
Merge branch 'dev' into LightUp-Test-Suite-Additions
Chase-Grajeda Mar 29, 2024
b1c8c2f
Merge pull request #748 from jadeandtea/LightUp-Test-Suite-Additions
Chase-Grajeda Mar 29, 2024
9270d0e
Automated Java code formatting changes (#786)
github-actions[bot] Mar 30, 2024
2ad0fd7
Finish room case rule attempt (#717)
cadogs Apr 2, 2024
e519c8e
Issue 555 bug fix: bizarre Satisfy Number behavior (#755)
charlestian23 Apr 2, 2024
e6ff803
Automated Java code formatting changes (#787)
github-actions[bot] Apr 2, 2024
ef00322
Finish room case rule attempt (#788)
cadogs Apr 2, 2024
f6817c3
Oops lol
charlestian23 Apr 2, 2024
4781736
Automated Java code formatting changes (#792)
github-actions[bot] Apr 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Removed all Inno Setup related code
  • Loading branch information
charlestian23 committed Feb 23, 2024
commit 90aa66b081f76c55e714e2f8d943d89b931c065f
35 changes: 0 additions & 35 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,41 71,6 @@ jar {
archiveFileName = 'Legup.jar'
}

/*
* CREATES NATIVE WINDOWS EXECUTABLE
* Launches launch4j to create an executable (.exe) file wrapping the jar
* THIS IS NOT THE INSTALLER
* Add "icon = 'path/to/icon.ico'" to set an icon for the executable
*/
createExe() {
mainClassName = 'edu.rpi.legup.Legup'
outputDir = '../native/windows'
outfile = 'bin/Legup.exe'
bundledJrePath = 'jre'
bundledJre64Bit = true
jdkPreference = 'preferJre'
jreMinVersion = '11'
jreRuntimeBits = '64/32'
}

/*
* CREATES NATIVE WINDOWS INSTALLER -- ONLY RUNS ON WINDOWS
* Runs the shipped version of Inno Setup (6.2) to compile the installer
* Modify the setup settings in native/windows/legup_inno_setup.iss
*
* Modifications are likely required to run the setup script on your computer:
* Edit the "CHANGE ME" line in native/windows/legup_inno_setup.iss to reflect
* the path to the Java installation you want to ship inside the executable.
*/
task buildNativeWindows(type: Exec, dependsOn: 'createExe') {
jar
createExe

workingDir = "${buildDir}/../native/windows"
commandLine 'cmd', '/c', 'make_windows_installer.bat'
}


repositories {
mavenCentral()
}
Expand Down
Empty file removed native/linux/.keep
Empty file.
Empty file removed native/macos/.keep
Empty file.
53 changes: 0 additions & 53 deletions native/windows/OLD_inno_setup.iss

This file was deleted.

Binary file removed native/windows/inno-setup/Compil32.exe
Binary file not shown.
Loading