-
Notifications
You must be signed in to change notification settings - Fork 172
SD EPG fixes [ci release] #493
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
Merged
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
167c011
SD EPG changes to fix SD lockout issues
jusjoken f8c76d6
SD EPG Updates - added seeker/duration_for_watchdog to allow users to…
jusjoken 9dc22cf
Updates to build.gradle and Github actions to support change to ubunt…
jusjoken 0c3aa08
Release for version 9.2.9 [ci release]
jusjoken ff61323
Fixes after PR review
jusjoken File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,7 +48,7 @@ ext { | |
| version = fullVersion | ||
|
|
||
| // Just printing out the SAGETV build version for informational purposes | ||
| // System.out.println("SAGETV VERSION ${versionArch}"); | ||
| //System.out.println("SAGETV VERSION ${versionArch}"); | ||
|
|
||
| // set gradle's buildDir to something other than the default 'build', or | ||
| // we'll end up deleting EVERYTHING in 'build' when we ./gradlew clean | ||
|
|
@@ -322,19 +322,22 @@ def getBuildNumber() { | |
|
|
||
| if (OperatingSystem.current().isLinux()) { | ||
| // use git to find the build version | ||
| ant.exec( | ||
| command: 'git rev-list HEAD --count', | ||
| os: 'Linux', | ||
| failonerror: true, | ||
| outputproperty: 'sagebuildnum') | ||
|
|
||
| buildVer = ant.sagebuildnum | ||
| // 03-06-2025 jusjoken: Also we should note that you will get error code 128 if you have git | ||
| // installed, but you did not pull this project using git because git will not know where | ||
| // to get the commit count from. | ||
| new ByteArrayOutputStream().withStream { outputStream -> | ||
| exec { | ||
| executable 'git' | ||
| args 'rev-list', 'HEAD', '--count' | ||
| standardOutput = outputStream | ||
| } | ||
| buildVer = outputStream.toString().trim() | ||
| } | ||
| } else if (OperatingSystem.current().isWindows()) { | ||
| //ensure full path to git\bin is in the Path Environment variable on windows | ||
| // 04-24-2017 JS: I changed this to remove the dependency on sh. Also we should note that | ||
| // you will get error code 128 if you have git installed, but you did not pull this project | ||
| // using git because git will not know where to get the commit count from. This is likely | ||
| // true for Linux too. | ||
| // using git because git will not know where to get the commit count from. | ||
| new ByteArrayOutputStream().withStream { outputStream -> | ||
| exec { | ||
| executable 'git' | ||
|
|
@@ -381,7 +384,7 @@ task(updateBuildNumber) { | |
| // save buildnumber to file | ||
| // we'll be referencing it later | ||
| // Eventually we'll do this, but for now, fetch it every time | ||
| // new File('.buildnumber').write(buildVersion) | ||
| new File('.buildnumber').write(buildVersion) | ||
| } | ||
| } | ||
|
|
||
|
|
@@ -406,7 +409,7 @@ compileJava.dependsOn updateBuildNumber | |
| sageJar.dependsOn cleanSageJar, classes, test | ||
| miniclientJar.dependsOn clean, miniclientClasses, cleanMiniJar | ||
| linuxMiniClientRelease.dependsOn miniclientJar | ||
| sageJar.finalizedBy restoreSageConstants | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why was this line removed?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fixed (commented out when I was trying to get the commit number code working again after move to ubuntu 22.04) |
||
| //sageJar.finalizedBy restoreSageConstants | ||
|
|
||
| // Eclipse project setup | ||
| eclipse { | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.