Skip to content

Commit 3bab234

Browse files
committed
🆙 Release v0.0.1
1 parent ad61ce4 commit 3bab234

4 files changed

Lines changed: 5 additions & 94 deletions

File tree

ChangeLog.txt

Lines changed: 2 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,3 @@
1-
v5.0.0
2-
- Support Kodi 18 Leia
3-
4-
v4.0.0
5-
- Support Kodi 17 Krypton
6-
- Add channel logo icon
7-
- Add new genre codes
8-
- Add pattern matched rule creation
9-
- Add list force-refresh client action into menu
10-
- Add scheduler execution client action into menu
11-
- Add rule availability status change method
12-
- Add read-only timer rule list
13-
- Add initial settings failure alert
14-
- Skip listing up zero-programs channels
15-
- Remove recorded program grouping option
16-
- Remove ongoing recording playback option
17-
- Unsupport mirakurun direct watch
18-
- Support Raspberry Pi independent target binary
19-
- Support iOS arm build target (beta)
20-
21-
v3.3.0
22-
- Support Chinachu gamma
23-
24-
v3.2.0
25-
- Support service ID for mirakurun live watching
26-
27-
v3.1.0
28-
- Add recording item grouping force disable option
29-
30-
v3.0.0
31-
- Change project name to 'Harekaze for Kodi'
32-
- Support Mirakurun live tv watching
33-
34-
v2.1.0
35-
- Add recording item grouping option
36-
37-
v2.0.2
38-
- Fix crash when chinachu provides no channel name
39-
- Fix crash when programs contain no category field
40-
41-
v2.0.1
42-
- Fix Kodi.guilib dependency
43-
44-
v2.0.0
45-
- New major version for Kodi Jarvis 16.x
46-
- Support canceling ongoing recording
47-
- Show episode information of recorded programs
48-
- Bug fix
49-
50-
v1.2.0
51-
- Change disk storage availability update interval
52-
- Support playback ongoing recording (beta)
53-
- Bug fix
54-
55-
v1.1.0
56-
- Support Kodi on Windows
57-
- Manual program reserving addition/deletion is available
58-
- Show recording disk space information
59-
- Bug fix
60-
61-
v1.0.1
62-
- Bug fix
63-
64-
v1.0.0
65-
- Support Kodi on ARM Linux
66-
- Show reserving timer
67-
- Enable audio/video transcoding option
68-
- Update thumbnail option
69-
- Bug fix
70-
71-
v0.0.3
72-
- Support Kodi on Android
73-
- Show recorded TV show's thumbnail
74-
- Deletion of recorded TV shows is available
75-
- Enable colored TV guide with Kodisystem's genre type
76-
77-
v0.0.2
78-
- Support recorded TV shows
79-
- Improve category type definition
80-
811
v0.0.1
82-
- Support Live TV watching
2+
- Initial release
3+
- Support Kodi 18.7 Leia

VS2019/pvr_client/pvr_client.rc

0 Bytes
Binary file not shown.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.68])
5-
AC_INIT([pvrepgstation], [5.0.0], [Harekaze2 project])
5+
AC_INIT([pvrepgstation], [0.0.1], [Harekaze2 project])
66
AC_CONFIG_MACRO_DIR([m4])
77
AM_INIT_AUTOMAKE([foreign])
88
LT_INIT

template/pvr.epgstation/addon.xml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<addon id="pvr.epgstation"
3-
name="Harekaze (EPGStation PVR client)"
4-
version="5.0.0"
5-
provider-name="Harekaze project">
2+
<addon id="pvr.epgstation" name="Harekaze (EPGStation PVR client)" version="0.0.1" provider-name="Harekaze project">
63
<requires>
74
<import addon="kodi.binary.instance.pvr" version="5.10.0"/>
85
<import addon="kodi.binary.global.main" version="1.0.12"/>
96
</requires>
10-
<extension point="xbmc.pvrclient"
11-
library_linux="pvr.epgstation.so"
12-
library_osx="pvr.epgstation.dylib"
13-
library_ios="pvr.epgstation-ios.dylib"
14-
library_android="libpvr.epgstation.so"
15-
library_rbpi="pvr.epgstation.armel.so"
16-
library_windx="pvr.epgstation.dll"
17-
/>
7+
<extension point="xbmc.pvrclient" library_linux="pvr.epgstation.so" library_osx="pvr.epgstation.dylib" library_ios="pvr.epgstation-ios.dylib" library_android="libpvr.epgstation.so" library_rbpi="pvr.epgstation.armel.so" library_windx="pvr.epgstation.dll"/>
188
<extension point="xbmc.addon.metadata">
199
<platform>linux osx ios android rbpi windx</platform>
2010
<license>GPL v3.0</license>

0 commit comments

Comments
 (0)