Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
f10d3f04
Commit
f10d3f04
authored
Jul 23, 2014
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt/macos: add missing addons intf and meta categories
parent
0be3f55c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
0 deletions
+20
-0
modules/gui/macosx/AddonManager.m
modules/gui/macosx/AddonManager.m
+4
-0
modules/gui/qt4/dialogs/plugins.cpp
modules/gui/qt4/dialogs/plugins.cpp
+12
-0
modules/gui/qt4/managers/addons_manager.cpp
modules/gui/qt4/managers/addons_manager.cpp
+4
-0
No files found.
modules/gui/macosx/AddonManager.m
View file @
f10d3f04
...
...
@@ -99,6 +99,10 @@ static VLCAddonManager *_o_sharedInstance = nil;
[[
_typeSwitcher
lastItem
]
setTag
:
ADDON_PLAYLIST_PARSER
];
[
_typeSwitcher
addItemWithTitle
:
_NS
(
"Service Discovery"
)];
[[
_typeSwitcher
lastItem
]
setTag
:
ADDON_SERVICE_DISCOVERY
];
[
_typeSwitcher
addItemWithTitle
:
_NS
(
"Interfaces"
)];
[[
_typeSwitcher
lastItem
]
setTag
:
ADDON_INTERFACE
];
[
_typeSwitcher
addItemWithTitle
:
_NS
(
"Art and meta fetchers"
)];
[[
_typeSwitcher
lastItem
]
setTag
:
ADDON_META
];
[
_typeSwitcher
addItemWithTitle
:
_NS
(
"Extensions"
)];
[[
_typeSwitcher
lastItem
]
setTag
:
ADDON_EXTENSION
];
...
...
modules/gui/qt4/dialogs/plugins.cpp
View file @
f10d3f04
...
...
@@ -383,6 +383,12 @@ AddonsTab::AddonsTab( intf_thread_t *p_intf_ ) : QVLCFrame( p_intf_ )
qtr
(
"Service discoveries adds new sources to your playlist"
" such as web radios, video websites, ..."
),
ADDON_SERVICE_DISCOVERY
);
ADD_CATEGORY
(
qtr
(
"Interfaces"
),
""
,
ADDON_INTERFACE
);
ADD_CATEGORY
(
qtr
(
"Art and meta fetchers"
),
qtr
(
"Retrieves extra info and art for playlist items"
),
ADDON_META
);
ADD_CATEGORY
(
qtr
(
"Extensions"
),
qtr
(
"Extensions brings various enhancements."
" Check descriptions for more details"
),
...
...
@@ -931,6 +937,12 @@ QColor AddonsListModel::getColorByAddonType( int i_type )
case
ADDON_SKIN2
:
color
=
QColor
(
0x8B
,
0xD6
,
0xFC
);
break
;
case
ADDON_INTERFACE
:
color
=
QColor
(
0x00
,
0x13
,
0x85
);
break
;
case
ADDON_META
:
color
=
QColor
(
0xCD
,
0x23
,
0xBF
);
break
;
case
ADDON_PLUGIN
:
case
ADDON_UNKNOWN
:
case
ADDON_OTHER
:
...
...
modules/gui/qt4/managers/addons_manager.cpp
View file @
f10d3f04
...
...
@@ -86,6 +86,10 @@ QString AddonsManager::getAddonType( int i_type )
return
qtr
(
"Playlist parsers"
);
case
ADDON_SERVICE_DISCOVERY
:
return
qtr
(
"Service Discovery"
);
case
ADDON_INTERFACE
:
return
qtr
(
"Interfaces"
);
case
ADDON_META
:
return
qtr
(
"Art and meta fetchers"
);
case
ADDON_EXTENSION
:
return
qtr
(
"Extensions"
);
default:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment