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
7e6fdd0d
Commit
7e6fdd0d
authored
Feb 11, 2006
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* enable multiple selections for streaming as well (closes #522) and put some news
parent
890c6db3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
7 deletions
+4
-7
NEWS
NEWS
+2
-2
extras/MacOSX/Resources/English.lproj/Wizard.nib/keyedobjects.nib
...acOSX/Resources/English.lproj/Wizard.nib/keyedobjects.nib
+0
-0
modules/gui/macosx/wizard.m
modules/gui/macosx/wizard.m
+2
-5
No files found.
NEWS
View file @
7e6fdd0d
...
@@ -34,8 +34,8 @@ Interfaces:
...
@@ -34,8 +34,8 @@ Interfaces:
- Improved playlist handling
- Improved playlist handling
- Support for popup menus, animated bitmaps, equalizer, ...
- Support for popup menus, animated bitmaps, equalizer, ...
* OS X
* OS X
-
Overlay control panel
-
support for processing multiple items with the wizard in a single run
-
-
option to save selections in the wizard for a session (default enabled)
* HTTP
* HTTP
- Much improved default interface pages
- Much improved default interface pages
...
...
extras/MacOSX/Resources/English.lproj/Wizard.nib/keyedobjects.nib
View file @
7e6fdd0d
No preview for this file type
modules/gui/macosx/wizard.m
View file @
7e6fdd0d
...
@@ -525,16 +525,13 @@ static VLCWizard *_o_sharedInstance = nil;
...
@@ -525,16 +525,13 @@ static VLCWizard *_o_sharedInstance = nil;
o_mode
=
[[
o_t1_matrix_strmgOrTrnscd
selectedCell
]
title
];
o_mode
=
[[
o_t1_matrix_strmgOrTrnscd
selectedCell
]
title
];
if
(
[
o_mode
isEqualToString
:
_NS
(
"Stream to network"
)]
)
if
(
[
o_mode
isEqualToString
:
_NS
(
"Stream to network"
)]
)
{
{
/* we will be streaming
-- we can't allow multiple selections
*/
/* we will be streaming */
[
o_userSelections
setObject
:
@"strmg"
forKey
:
@"trnscdOrStrmg"
];
[
o_userSelections
setObject
:
@"strmg"
forKey
:
@"trnscdOrStrmg"
];
[
o_t2_tbl_plst
setAllowsMultipleSelection
:
NO
];
}
}
else
else
{
{
/* we will just do some transcoding, so we can allow multiple
/* we will just do some transcoding */
* selections in our playlist */
[
o_userSelections
setObject
:
@"trnscd"
forKey
:
@"trnscdOrStrmg"
];
[
o_userSelections
setObject
:
@"trnscd"
forKey
:
@"trnscdOrStrmg"
];
[
o_t2_tbl_plst
setAllowsMultipleSelection
:
YES
];
}
}
[
o_btn_backward
setEnabled
:
YES
];
[
o_btn_backward
setEnabled
:
YES
];
[
o_tab_pageHolder
selectTabViewItemAtIndex
:
1
];
[
o_tab_pageHolder
selectTabViewItemAtIndex
:
1
];
...
...
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