Skip to content

Commit 7ed2a37

Browse files
committed
Initial import of QtMultimediaKit port
0 parents  commit 7ed2a37

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+10194
-0
lines changed

CHANGELOG

+128
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
2.0 (24.12.2011):
2+
- fully refactored, cleaned up and modularized source;
3+
- added possibility to select displayed controls;
4+
- try up to three times to get meta data;
5+
- many fixes and changes.
6+
7+
1.2 (05.12.2011):
8+
- automatically decide if video should be embedded in dialog when applet height is too low;
9+
- improved video output (at least for GStreamer backend);
10+
- use custom volume and seek sliders:
11+
- change position without dragging;
12+
- show position under mouse cursor;
13+
- allow to embed in systray;
14+
- some other changes.
15+
16+
1.1 (01.12.2011):
17+
- added toggle play list button to default controls set;
18+
- added track length infromation to play list (sortable);
19+
- added option to disable D-Bus interace;
20+
- improved dialog appearance;
21+
- more friendly install script;
22+
- removed compile time dependency on gettext;
23+
- some other fixes.
24+
25+
1.0 (01.08.2009):
26+
- added D-Bus interface;
27+
- added initial support for playing CD Audio, DVD and (S)VCD;
28+
- added optional controls to play list dialog;
29+
- added possibility to show tool tip on track change;
30+
- added possibility to repeat track only;
31+
- added support for sorting tracks in ascending or descending order or by drag and drop;
32+
- added filter bar to play list;
33+
- added possibility to set video aspect ratio;
34+
- added possibility to select audio channel (if available);
35+
- added possibility to select subtitle (if available);
36+
- added possibility to select chapter (if available);
37+
- added possibility to select angle (if available);
38+
- added context menu for track:
39+
- edit title;
40+
- copy URL;
41+
- play, pause and stop;
42+
- remove track;
43+
- show disc contents as dynamic play list;
44+
- show controls bar in full screen mode;
45+
- show play list dialog after delay when dragging URL(s) on applet;
46+
- propagate keyboard events to applet when play list dialog is visible;
47+
- improved play list layout when showing video in dialog;
48+
- moved play list handling to model / view architecture;
49+
- allow dropping folders and recursively load supported contents;
50+
- improved behavior in panels;
51+
- other fixes, improvements and small changes.
52+
53+
0.9.5 (01.06.2009):
54+
- added keyboard shortcut for toggling full screen (F);
55+
- improved context menu layout;
56+
- remember last played track;
57+
- toggle play list visibility by single left mouse button click on applet;
58+
- some other fixes and improvements.
59+
60+
0.9 (12.05.2009):
61+
- added support for opening URLs and playing streams;
62+
- added support for multiple play lists in tabs;
63+
- added possibility to export play list in PLS format;
64+
- added possibility to import play list in XSPF and ASX formats;
65+
- added possibility to edit track title in play list;
66+
- preserve track title defined in play list;
67+
- improved positioning of play list and volume control dialogs;
68+
- toggle play list visibility by invoking keyboard shortcut.
69+
70+
0.8 (05.05.2009):
71+
- Play action is always enabled when play list is not empty;
72+
- block screen saver and block non critical notifications during video playback;
73+
- added Russian translation by Ritt K.;
74+
- some other changes and fixes.
75+
76+
0.7 (20.04.2009):
77+
- added possibility to change size of play list dialog;
78+
- added keyboard shortcut for toggling controls visibility (C);
79+
- show tool tip with track information not only when hovering video area;
80+
- fixed problems with position slider.
81+
82+
0.6 (14.04.2009):
83+
- improved applet resizing;
84+
- added German translation by Matthias Fehring;
85+
- added keyboard shortcuts for:
86+
- pausing and playing (Space);
87+
- play next and previous track (left and right arrow with Shift modifier);
88+
- seeking video (left and right arrow);
89+
- changing volume (top and bottom arrow) and (un)mute (M);
90+
- accessing volume slider (V);
91+
- accessing file open dialog (O);
92+
- accessing jump to position dialog (J);
93+
- accessing play list (P).
94+
- query Phonon backend for list of supported MIME types.
95+
96+
0.5 (05.04.2009):
97+
- ported to new Plasma VideoWidget (for KDE 4.3, using local copy);
98+
- support for creating player applet by dropping video or audio file on desktop;
99+
- possibility to automatically hide video area when there is only audio;
100+
- possibility to remember last used play list and start playback on applet creation;
101+
- added Jump to position dialog;
102+
- added tool tip with current track information;
103+
- added translations support;
104+
- added Polish translation by me;
105+
- added install.sh script.
106+
107+
0.4 (24.01.2009):
108+
- initial port to KDE 4.2 changes;
109+
- other small changes and fixes.
110+
111+
0.3 (23.12.2008):
112+
- basic play list support:
113+
- export in M3U format;
114+
- basic M3U and PLS import;
115+
- repeat option;
116+
- shuffle.
117+
- filtering of opened mime types (accepts only multimedia types);
118+
- when backend error occur the message box should be shown.
119+
120+
0.2 (22.12.2008):
121+
- added video settings dialog;
122+
- added volume control;
123+
- remember last used directory;
124+
- improved controls behavior;
125+
- other small changes and fixes.
126+
127+
0.1 (21.12.2008):
128+
- initial version.

CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
2+
3+
add_subdirectory(applet)

0 commit comments

Comments
 (0)