-
Notifications
You must be signed in to change notification settings - Fork 16
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
Tracks the addition of MythTV version 0.28-pre to MAF #179
Comments
Note that this can be closed as soon as 0.28 follows the same path as |
move to v1.30.0? |
Moving to 130.0 is fine. But now we can no longer say MAF So, it's moved to 1.30.0 and I change the label to enhancement. This remains a sticky issue for me as I'm now 281 commits behind |
Workaround, as long as no 0.27 protocol is changed: diff --git a/src/main/java/org/mythtv/services/api/connect/MythAccessFactory.java b/src/main/java/org/mythtv/services/api/connect/MythAccessFactory.java
index 478d483..f41277f 100644
--- a/src/main/java/org/mythtv/services/api/connect/MythAccessFactory.java
+++ b/src/main/java/org/mythtv/services/api/connect/MythAccessFactory.java
@@ -111,6 +111,8 @@ public class MythAccessFactory {
return ApiVersion.v026;
else if(version.startsWith("0.27"))
return ApiVersion.v027;
+ else if(version.startsWith("0.28"))
+ return ApiVersion.v027;
}
}
|
Sounds good. We should through a todo to fix it when the services api adds |
I wasn't going to commit it. It's would be dangerous for 0.28-pre |
Do we OK now if there have been any api changes since the release of v0.27? |
No changes, just 11 additions. See the very http://code.mythtv.org/cgit/mythtv/commit/?id=de990998c84b5d0d064a5f9b052249bd9e41d372 |
We should be OK for the time being. |
Pushed v1.30 to GitHub. 10/28/2013 |
Requires: MythTV-Clients/MythTV-Service-API/issues/16 to be
resolved 1st.
At this point, MAF can use v027 code for v028.
The text was updated successfully, but these errors were encountered: