rage - update readme and version preparing for a release

This commit is contained in:
Carsten Haitzler 2016-08-20 12:22:43 +09:00
parent b5d428d9c1
commit 4571c85ec4
2 changed files with 32 additions and 15 deletions

40
README
View File

@ -1,4 +1,4 @@
Rage 0.1.4
Rage 0.2.0
******************************************************************************
@ -38,6 +38,20 @@ the position bar at the bottom, if it's a video, brings up a video
thumbnail of that position (it may take a while to generate thumbnails
for that video - they are cached).
If you run rage without arguments at all it goes into "browser" mode
where it will index all your media files in "$HOME/Videos" or whatever
you have configured your XDG video directory to be. It will flatten
out all directories that it recursively scans in this videos director
with a header with the directory name and a list of images per video
and the filename with extensions removed. It will either generate a
series of images to flip as the video thumb or may actually search for
a poster file dependig on length of video file (if it is more than 60
minutes long and less than 5 hours and the image ratio is between 4:3
and 4:1 it'll be assumed to be a movie for example). So while it is
fetching or generating thumbnails for the first time, be a little
patient. They will be cached so they only need to be generated or
fetched once (or if the file changes).
It's fully key controlled too. Key controls are:
----------------+----------------------------------------------------------
@ -72,7 +86,7 @@ Escape - Exit
f - Fullscreen toggle
F11 - Fullscreen toggle
n - Normalize window size to video size
\ - Toggle File list
\ - Toggle File list or browser mode depending on launch mode
y - Video low quality toggle
z - Video zoom fit/fill modes toggle
e - Eject file/media
@ -107,15 +121,15 @@ F7 - DVD nav menu 7
Requirements:
-------------
* elementary (>= 1.11.0)
* eina (>= 1.11.0)
* eet (>= 1.11.0)
* evas (>= 1.11.0)
* ecore (>= 1.11.0)
* edje (>= 1.11.0)
* emotion (>= 1.11.0)
* ecore-imf (>= 1.11.0)
* ecore-imf-evas (>= 1.11.0)
* ecore-input (>= 1.11.0)
* ethumb (>= 1.11.0)
* elementary (>= 1.18.0)
* eina (>= 1.18.0)
* eet (>= 1.18.0)
* evas (>= 1.18.0)
* ecore (>= 1.18.0)
* edje (>= 1.18.0)
* emotion (>= 1.18.0)
* ecore-imf (>= 1.18.0)
* ecore-imf-evas (>= 1.18.0)
* ecore-input (>= 1.18.0)
* ethumb (>= 1.18.0)

View File

@ -1,7 +1,7 @@
# get rid of that stupid cache mechanism
rm -f config.cache
AC_INIT([rage], [0.1.4], [enlightenment-devel@lists.sourceforge.net])
AC_INIT([rage], [0.2.0], [enlightenment-devel@lists.sourceforge.net])
AC_PREREQ([2.60])
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_MACRO_DIR([m4])
@ -16,12 +16,15 @@ AC_PROG_CC
AM_PROG_CC_C_O
AC_C___ATTRIBUTE__
efl_version="1.13.0"
efl_version="1.18.0"
requirements="\
elementary >= ${efl_version} \
edje >= ${efl_version} \
emotion >= ${efl_version} \
eio >= ${efl_version} \
eina >= ${efl_version} \
ecore >= ${efl_version} \
evas >= ${efl_version} \
"
PKG_CHECK_MODULES([RAGE], [${requirements}])