* decided on lower-case binding names
This commit is contained in:
parent
c033fa565c
commit
d00d8fc329
|
@ -82,13 +82,13 @@ public class MediaBindingBean {
|
|||
}
|
||||
|
||||
|
||||
@Define("SxE")
|
||||
@Define("sxe")
|
||||
public String getSxE() {
|
||||
return SeasonEpisode.formatSxE(getEpisode());
|
||||
}
|
||||
|
||||
|
||||
@Define("S00E00")
|
||||
@Define("s00e00")
|
||||
public String getS00E00() {
|
||||
return SeasonEpisode.formatS00E00(getEpisode());
|
||||
}
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
parameter.exclude: ^StreamKind|Count$
|
||||
|
||||
# preview expressions (keys are tagged so they can be sorted alphabetically)
|
||||
expressions: n,y,s,e,t,airdate,startdate,absolute,special,imdb,episode,SxE,S00E00,movie,vc,ac,cf,vf,af,resolution,ws,sdhd,source,group,crc32,fn,ext,file,pi,pn,lang,media.title,media.durationString,media.overallBitRateString,video.codecID,video.frameRate,video.displayAspectRatioString,video.height,video.scanType,audio.format,audio.bitRateString,audio.language,text.codecInfo,text.language
|
||||
expressions: n,y,s,e,t,airdate,startdate,absolute,special,imdb,episode,sxe,s00e00,movie,vc,ac,cf,vf,af,resolution,ws,sdhd,source,group,crc32,fn,ext,file,pi,pn,lang,media.title,media.durationString,media.overallBitRateString,video.codecID,video.frameRate,video.displayAspectRatioString,video.height,video.scanType,audio.format,audio.bitRateString,audio.language,text.codecInfo,text.language
|
||||
|
|
|
@ -7,7 +7,7 @@ movie.sample: Avatar (2009) Part 1
|
|||
# basic 1.01
|
||||
episode.example[0]: {n} - {s}.{e} - {t}
|
||||
# S01E01
|
||||
episode.example[1]: {n} - {S00E00} - {t}
|
||||
episode.example[1]: {n} - {s00e00} - {t}
|
||||
# airdate
|
||||
episode.example[2]: {n} [{airdate}] {t}
|
||||
# uglyfy name
|
||||
|
|
|
@ -168,12 +168,12 @@
|
|||
<td>1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>SxE</td>
|
||||
<td>sxe</td>
|
||||
<td>season/episode numbers</td>
|
||||
<td>1x01</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>S00E00</td>
|
||||
<td>s00e00</td>
|
||||
<td>season/episode numbers</td>
|
||||
<td>S01E01</td>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in New Issue