Rémi Denis-Courmont
aec97d0619
Same as previous commit
2008-04-21 23:06:06 +03:00
Rafaël Carré
7511b55c22
Remove framework-only links when packaging VLC-release.app
2008-04-20 17:09:47 +02:00
Pierre d'Herbemont
3d8e99515c
macosx: Use mv and chmod instead of install which doesn't work out-of-the-box here.
2008-04-15 22:58:02 +02:00
Pierre d'Herbemont
c6dadfb18f
macosx: As pointed by funman, remove a duplicate case.
2008-04-15 22:50:41 +02:00
Pierre d'Herbemont
d6164715d6
macosx: Use $suffix in Pre-Compile.sh, and install as requested by funman.
2008-04-15 22:44:36 +02:00
VideoLAN
a55cd54a8e
macosx: Fix VLC-release.app library links.
2008-04-15 22:31:55 +02:00
Pierre d'Herbemont
449fd28aaf
Replace vlc_bool_t by bool, VLC_TRUE by true and VLC_FALSE by false.
...
This improves readability a lot and prevent us from reinventing the wheel.
2008-04-14 02:02:22 +02:00
Jean-Paul Saman
04e7bd8471
Files belonging to patch from, thannoy: Allow future control toolbar to be hidden (default) or shown.
2008-04-11 17:02:57 +02:00
thannoy@actech-innovation.com
d5ec802741
Allow future control toolbar to be hidden (default) or shown.
...
Even if no control toolbar is implemented for ActiveX yet, we already
provide the code to enable/disable it for compatibility with Firefox
API behaviour.
The getter used to know if toolbar is shown will always return FALSE
until a toolbar is implemented. (getter which will be available soon
for Firefox)
To use it:
- ActiveX global property named "toolbar":
For HTML : <param name="toolbar" value="True" />
- API on IVLCControl2 interface, property "toolbar" (RW):
For Javascript : yourvlcobject.toolbar = false;
isToolBarShown = yourvlcobject.toolbar;
Signed-off-by: Jean-Paul Saman <jpsaman@videolan.org>
2008-04-11 17:02:57 +02:00
Jean-Paul Saman
8b80610319
Add Toolbar DISPID to activex axvlc.idl
2008-04-11 17:02:57 +02:00
thannoy@actech-innovation.com
adf0cc35eb
Fix IVLCVideo.teletext binding
...
Signed-off-by: Jean-Paul Saman <jpsaman@videolan.org>
2008-04-11 17:02:57 +02:00
Rafaël Carré
e8f945338c
Mozilla : use \n
2008-04-03 21:37:58 +02:00
Rafaël Carré
a1fc064400
Source files no need the executable bit
2008-04-03 21:26:24 +02:00
Pierre d'Herbemont
6feab08f8b
macosx: Framework compilation fix about lua.
2008-04-03 16:02:54 +02:00
Faustino Osuna
6837b438b9
VLCKit.framework: Update documentation, clean up whitespace, reorganize code, and remove dead code.
2008-03-31 23:58:30 +01:00
Faustino Osuna
f87ebe5bfc
VLCKit.framework: Remove dead code from VLCTime object.
2008-03-31 23:57:19 +01:00
Faustino Osuna
0b34e2c004
VLCKit.framework: Reorganize project files.
2008-03-31 23:33:04 +01:00
Faustino Osuna
f88c57c4e7
VLCKit.framework: Documentation updates and whitespace cleanup.
2008-03-31 23:33:04 +01:00
Faustino Osuna
0bf9167869
VLCKit.framework: Update project layout.
2008-03-31 23:05:28 +01:00
Faustino Osuna
43a3035ffd
VLCKit.framework: Documentation updates, whitespace cleanup.
2008-03-31 23:02:12 +01:00
Tanguy Krotoff
313a874300
libvlc: rename all libvlc_MediaInstance in libvlc_MediaPlayer and libvlc_MediaDescriptor to libvlc_Media
...
Signed-off-by: Pierre d'Herbemont <pdherbemont@videolan.org>
2008-03-31 12:18:44 +02:00
Tanguy Krotoff
ee1330c497
libvlc: add libvlc_MediaInstanceStopped
...
Signed-off-by: Pierre d'Herbemont <pdherbemont@videolan.org>
2008-03-31 12:18:44 +02:00
Pierre d'Herbemont
bf1292e443
libvlc: rename libvlc_media_descriptor to libvlc_media and libvlc_media_instance to libvlc_media_player.
2008-03-30 04:02:57 +02:00
Rafaël Carré
1619a9c861
Mozilla: fix compilation on OSX, where we don't use libX11
2008-03-26 23:54:37 +01:00
Jean-Paul Saman
900e1dcdd5
Refactor toolbar sizing.
2008-03-25 15:16:28 +01:00
Anthony Loiseau
03a19fdb07
Mozilla-plugin linux toolbar can be hidden by adding show_toolbar="no" to the
...
'embed' HTML node that import VLC mozplug. Default to visible.
Signed-off-by: Jean-Paul Saman <jpsaman@videolan.org>
2008-03-25 15:16:28 +01:00
Rafaël Carré
cf3100336b
Add FLV mimetypes in browser plugins
...
Patch contributed by dkl0
2008-03-19 01:58:46 +01:00
Jean-Baptiste Kempf
7a214f493f
Shut a warning.
2008-03-12 23:52:08 -07:00
Rémi Duraffort
ddba9af97a
Forgotten in the previous commit.
2008-03-12 12:07:42 +01:00
Faustino Osuna
39bd59801c
macosx/VLCKit: Load VLCLibrary when VLCKit is loaded. No longer need atexit( ... ) to unload library, use __attribute__((destructor))__ instead. Also make sure we don't autorelease the VLCLibrary (as the library's destructor will take care of that for us).
2008-03-04 22:41:30 +00:00
Faustino Osuna
a0fd14f980
Ignore Xcode project files.
2008-03-04 22:38:58 +00:00
Jean-Paul Saman
fae5455b0b
More cases were p_md was not checked in Mozilla toolbar code.
2008-03-04 22:10:00 +01:00
Jean-Paul Saman
fded58d9ef
[PATCH] by Anthony Loiseau <anthony.loiseau at gmail dot com>: Avoid browser crashing on mozilla-plugin when jumping into the media using the time-slider and no movie is loaded.
...
Signed-off-by: Jean-Paul Saman <jpsaman@videolan.org>
2008-03-04 22:10:00 +01:00
Faustino Osuna
ea3b06940d
Make sure there is a new-line at the end of the .gitignore files.
2008-03-03 16:10:46 +00:00
Faustino Osuna
657ee94e0c
Add more ignores for cmake and Mac OS X build folders.
2008-03-03 08:40:48 +00:00
Faustino Osuna
2dae9d9ac4
Add more ignores.
2008-03-03 08:19:14 +00:00
Pierre d'Herbemont
dbddc5ae45
More Id and permission fixes.
2008-03-02 23:27:04 +01:00
Pavlov Konstantin
1f253f8d9a
Fix $Id$ (probably)
2008-03-03 01:01:55 +03:00
Rémi Denis-Courmont
0795b8399e
Ignore files create by configure
...
This only affects people still not building from subdir.
Signed-off-by: Rémi Denis-Courmont <rem@videolan.org>
2008-03-02 13:51:38 +02:00
Faustino Osuna
fa838a3b9f
macosx/VLCKit: Take the time to run through config.cmake even if CMakeCache.txt exists.
2008-02-29 19:24:48 +00:00
Rémi Denis-Courmont
28094cb6a1
Actually fix the ActiveX plugin
2008-02-25 19:58:36 +00:00
Jean-Paul Saman
2c083c9f86
Fix i386-Win32Cross-Trunk compilation.
2008-02-25 10:27:52 +00:00
Jean-Paul Saman
868cd6a7e4
Remove trailing whitespace.
2008-02-25 09:22:38 +00:00
Jean-Paul Saman
35979e860a
Refactor mozilla toolbar code. There are still a few things wrong:
...
- nice images
- fix playlist status bug
- timeslider not updated bug
- button/slider position and detection of button click is hardcoded
2008-02-25 09:22:36 +00:00
Jean-Paul Saman
cd2efd35ef
Fixed another crash with fullscreen in mozilla toolbar.
2008-02-25 09:22:34 +00:00
Jean-Paul Saman
f90b88ab58
Cleanup and fix crash when plugin wasn't playing.
2008-02-25 09:22:32 +00:00
Pierre d'Herbemont
aaf7998bdf
macosx/vlc_app: Display an indicator when waiting for playlist content.
2008-02-24 16:27:47 +00:00
Pierre d'Herbemont
1e9ff27051
projects/mozilla: Use an hyphen in "plug-in". This closes #1474 . (Patch by timeless@gmail.com)
2008-02-23 19:39:07 +00:00
Damien Fouilleul
d47037fef0
activex: oops, used duplicate id for BITMAP resource
2008-02-21 11:47:59 +00:00
Damien Fouilleul
7b7da74cd7
mozilla: fixed name argument in add(url, name, options), thanx to thannoy on IRC
2008-02-20 16:18:54 +00:00