Skip to content

Commit

Permalink
release kantv-1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouwg committed Mar 8, 2024
1 parent 93397b7 commit c0604a9
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ public KANTVMgr(KANTVEventListener eventListener) throws KANTVException
String nativeVersion = getVersion();
String errorMsg = "JAR's version " + javaVersion + " does not match JNI's version: " + nativeVersion;
CDELog.j(TAG, errorMsg);
throw new KANTVException(errorMsg);
//weiguo:uncomment it for production project
//throw new KANTVException(errorMsg);
}

mEventListener = eventListener;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

final class KANTVVersion
{
public static final String KANTV_VERSION="KANTV-v1.2.9";
public static final String KANTV_VERSION="KANTV-v1.3.0";

public static native int kantv_anti_tamper();
}
Expand Down
4 changes: 2 additions & 2 deletions cdeosplayer/constants.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ project.ext {
ndkVersion = "21.4.7075529"

//version and version code of KanTV
releaseVersion = '1.2.9'
releaseVersionCode = 1000209
releaseVersion = '1.3.0'
releaseVersionCode = 1000300

//version and version code of internal Exoplayer2 playEngine
releaseVersionExoplayer = '2.15.1'
Expand Down
4 changes: 2 additions & 2 deletions cdeosplayer/kantv/src/main/assets/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"kantvServer": "www.cde-os.com",
"releaseMode": "0",
"apkVersion": "1.2.9",
"releaseMode": "1",
"apkVersion": "1.3.0",
"apkForTV": "0"
}
2 changes: 1 addition & 1 deletion cdeosplayer/kantv/src/main/res/values-en/strings_pref.xml
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
<string name="pref_title_about">About</string>
<string name="pref_key_version">pref.version</string>
<string name="pref_title_version">Current Version</string>
<string name="pref_summary_version">1.2.9</string>
<string name="pref_summary_version">1.3.0</string>

<string name="pref_key_versionhistory">pref.versionhistory</string>
<string name="pref_title_versionhistory">Version history</string>
Expand Down
2 changes: 1 addition & 1 deletion cdeosplayer/kantv/src/main/res/values-zh/strings_pref.xml
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
<string name="pref_title_about">关于</string>
<string name="pref_key_version">pref.version</string>
<string name="pref_title_version">当前版本</string>
<string name="pref_summary_version">1.2.9</string>
<string name="pref_summary_version">1.3.0</string>

<string name="pref_key_versionhistory">pref.versionhistory</string>
<string name="pref_title_versionhistory">版本历史</string>
Expand Down
2 changes: 1 addition & 1 deletion cdeosplayer/kantv/src/main/res/values/strings_pref.xml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@
<string name="pref_title_about">About</string>
<string name="pref_key_version">pref.version</string>
<string name="pref_title_version">Current Version</string>
<string name="pref_summary_version">1.2.9</string>
<string name="pref_summary_version">1.3.0</string>

<string name="pref_key_versionhistory">pref.versionhistory</string>
<string name="pref_title_versionhistory">Version history</string>
Expand Down
7 changes: 7 additions & 0 deletions release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,13 @@
<li> release source code v1.2.9 of KanTV APK before officially start integrating the excellent and amazing whisper.cpp to project KanTV. I have to say that I heard whisper.cpp too late but just try it since March 5,2024</li>
</ul>

- v1.3.0 2024-03-05,
<ul>
<li> start integrating whisper.cpp to project kantv. breankdown task in PoC </li>
<li> PoC stage-1 is finished and works well as expected </li>
<li> PoC stage-2 is finished and works well as expected, it's a milestone </li>
</ul>


### Screenshots(一些屏幕截图)

Expand Down

0 comments on commit c0604a9

Please sign in to comment.