summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* backend: Remove unused OSD popupBastien Nocera2014-02-042-4/+0
|
* Update project homepage urlWilliam Jon McCann2013-12-181-1/+1
|
* build: Fixes for make distcheckRico Tzschichholz2013-09-181-1/+1
|
* core: Consistently prefix plugin-visible API with “totem_object_”Philip Withnall2013-08-041-39/+39
| | | | Helps: https://bugzilla.gnome.org/show_bug.cgi?id=626399
* Make TotemObject signal emission functions static to totem-object.cPhilip Withnall2013-07-051-3/+0
|
* docs: Link to libgd as wellBastien Nocera2013-05-081-0/+1
|
* backend: Remove bacon_video_widget_set_fullscreen() callBastien Nocera2013-03-271-1/+0
| | | | | And all its users. It's not readable, and is never read within the backend, so remove it.
* main: Remove auto-resize and zoom to video sizeBastien Nocera2013-03-061-4/+0
| | | | | | | Those will not make much sense anymore when we want Totem to be maximised most of the time, as per the new designs. https://bugzilla.gnome.org/show_bug.cgi?id=694457
* main: Remove "Toggle controls" featureBastien Nocera2013-03-061-1/+0
| | | | | | It doesn't fit with the upcoming designs. https://bugzilla.gnome.org/show_bug.cgi?id=694456
* Use g_cclosure_marshal_generic() instead custom marshallersJavier Jardón2012-12-101-5/+0
|
* main: Remove unused TotemCellRendererVideoBastien Nocera2012-10-113-24/+0
|
* main: Remove unused TotemVideoListBastien Nocera2012-10-113-22/+0
|
* build: Fix pkg-config usageBastien Nocera2012-07-131-3/+2
| | | | | | | | | | | We shouldn't be concatenating outputs from pkg-config, it ends up listing libraries twice and making a mess. This commit also cleans up the dependencies for the thumbnailer, audio preview and nautilus tabs, as they don't need clutter for example. https://bugzilla.gnome.org/show_bug.cgi?id=679461
* docs: Add new functionsBastien Nocera2012-07-031-2/+5
|
* docs: More headers to ignoreBastien Nocera2012-07-031-1/+7
|
* docs: Remove rate related docsBastien Nocera2012-07-031-2/+0
|
* main: Make get_video_widget() work from PythonBastien Nocera2012-07-031-1/+1
|
* backend: Remove unused connection-speed settingBastien Nocera2012-04-271-5/+0
|
* backend: Split out the subtitle loadingBastien Nocera2012-04-231-0/+1
| | | | | | | Split out the subtitle loading from _open() so it can be handled on-the-fly (without reloading the movie itself). https://bugzilla.gnome.org/show_bug.cgi?id=514050
* docs: Remove incomplete and unused API docsBastien Nocera2012-04-221-1/+1
| | | | | | We don't expect TotemObject to be subclassed, we were missing docs for new members, and the copy/paste still mentioned TotemPlParser types. Moved to the private section.
* docs: Update for latest additions and removalsBastien Nocera2012-04-211-4/+5
|
* backend: Remove _get_mrls() helper functionBastien Nocera2012-04-121-1/+0
| | | | | | It's not called anymore. https://bugzilla.gnome.org/show_bug.cgi?id=673590
* docs: Fix builddir ≠ srcdir documentation buildsPhilip Withnall2011-12-211-2/+2
|
* docs: Add a missing XML include to the documentationPhilip Withnall2011-12-211-0/+4
|
* Add some unused symbols to the documentation section filePhilip Withnall2011-12-211-0/+2
|
* docs: Update the plugin writing guidePhilip Withnall2011-07-051-50/+23
|
* docs: Update lists of documented symbolsPhilip Withnall2011-07-052-15/+9
| | | | Closes: bgo#598805
* docs: Remove outdated definitionsBastien Nocera2011-07-011-2/+0
|
* Fix the API documentation buildPhilip Withnall2010-12-222-5/+11
|
* Rename “audio out type” to “audio output type” in the ↵Philip Withnall2010-12-151-5/+5
| | | | | | | | BaconVideoWidget API This makes things more consistent, and has to be done before we reach the API freeze for 3.0 if it's to be done at all, because BvwAudioOutputType is effectively public API, since it's used in our GSettings schema.
* Add missing documentationPhilip Withnall2010-09-151-0/+12
|
* Fix automake's file cleaning listsPhilip Withnall2010-09-041-0/+0
| | | | | Our transition to git.mk exposed a few files which weren't getting cleaned at the correct point. This also adds a gtk-doc file which we were missing.
* Add git.mk supportPhilip Withnall2010-09-042-0/+4
| | | | Add git.mk from Pango to automatically generate and update .gitignore files.
* Port to GSettingsPhilip Withnall2010-09-041-1/+1
|
* Fix naming of visualization methods in BaconVideoWidgetPhilip Withnall2010-09-041-7/+7
|
* Add a connection-speed property to BaconVideoWidgetPhilip Withnall2010-09-041-0/+3
|
* Generate enum types for BaconVideoWidgetPhilip Withnall2010-09-041-0/+16
|
* Exclude chapter headers from the documentationPhilip Withnall2010-08-211-1/+4
|
* Fix the documentation buildPhilip Withnall2010-07-131-0/+29
|
* Move methods from Totem to TotemObject for use in pluginsPhilip Withnall2010-06-271-28/+28
| | | | | | | | | | | g-ir-scanner will assign methods named "totem_foo" to the Totem record, so they all need to be renamed to "totem_object_foo" so that they're correctly assigned to the TotemObject class. This just changes the method declarations and definitions, and adds a #define for each method so that the old name continues to work in Totem code. This can be tidied up in a later commit, possibly at the same time as tidying up Totem's plugin-visible API.
* Rename libtotem_main.la to libtotem.laPhilip Withnall2010-06-271-1/+1
| | | | | | libtotem.la is a more conventional name, and we don't need to leak the fact that Totem is built from an unholy mess of noinsted libraries into the set of installed libraries.
* Move TotemDiscMediaType get_type() and quark() functions to totem-pl-parserPhilip Withnall2010-06-271-4/+0
| | | | The enum lives there, so the type functions should do too.
* Add missing documentationPhilip Withnall2010-06-191-1/+1
|
* Fix plugin documentation buildPhilip Withnall2010-06-192-33/+1
| | | | Remove symbols from the documentation files which no longer exist.
* Port to libpeas for plugin handlingBastien Nocera2010-06-161-1/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=604830
* gtk-doc warning fixesPhilip Withnall2010-02-181-1/+7
| | | | | Fix some gtk-doc warnings (missing functions, unused functions) and fix the IDs in the documentation XML.
* Ignore OSD file in API docsBastien Nocera2009-12-111-0/+1
|
* Fix documentation checks failingBastien Nocera2009-12-112-5/+10
|
* Bug 588569 – Add plugin authoring tutorialPhilip Withnall2009-08-083-1/+153
|
* Fix path problems when building documentation so builddir != srcdir worksPhilip Withnall2009-05-311-0/+2
| | | | | | | | 2009-05-31 Philip Withnall <philip@tecnocode.co.uk> * docs/reference/Makefile.am: Add the builddir to gtkdoc-mkhtml's path so that builddir != srcdir builds work for the documentation. (Closes: #581723)