diff options
author | konablend <[email protected]> | 2009-06-20 04:04:54 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2009-06-20 04:04:54 +0000 |
commit | e4f0be4b780b7d0986739fda3c84be7ef99c4ffa (patch) | |
tree | 5a00857165a108085b8a6d6e0a7dc678e9345ff8 /libhb/hb.c | |
parent | f1c2309090f2b764fc3cc9cf8bbce59721ba2dbd (diff) |
Use new appcast URL nameing scheme for HandBrakeCLI --update.
- increase storage space hb_handle_s.version[16] to 32 to handle longer version strings; eg. "svn2500 x86_64"
- reduce 2-query mechanism to 1-query and only check/notify for newer releases of same type (ie: stable or unstable)
- remove hard-coded url and extract host/path components from HB_PROJECT_URL_APPCAST macro
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2586 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.c')
-rw-r--r-- | libhb/hb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/hb.c b/libhb/hb.c index 26826ecdd..e554a4d2c 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -5,7 +5,7 @@ struct hb_handle_s { /* The "Check for update" thread */ int build; - char version[16]; + char version[32]; hb_thread_t * update_thread; /* This thread's only purpose is to check other threads' |