Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
vlc-unity
Manage
Activity
Members
Labels
Plan
Issues
46
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
vlc-unity
Merge requests
!81
release 0.1.8
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
release 0.1.8
mfkl/vlc-unity:release/0.1.8
into
master
Overview
0
Commits
4
Pipelines
6
Changes
3
Merged
Martin Finkel
requested to merge
mfkl/vlc-unity:release/0.1.8
into
master
1 year ago
Overview
0
Commits
4
Pipelines
6
Changes
3
Expand
0
0
Merge request reports
Compare
master
version 5
0eaee98b
1 year ago
version 4
57406163
1 year ago
version 3
94090c94
1 year ago
version 2
23e70ccb
1 year ago
version 1
f7a3cc76
1 year ago
master (base)
and
latest version
latest version
4c693fdb
4 commits,
1 year ago
version 5
0eaee98b
3 commits,
1 year ago
version 4
57406163
2 commits,
1 year ago
version 3
94090c94
2 commits,
1 year ago
version 2
23e70ccb
2 commits,
1 year ago
version 1
f7a3cc76
1 commit,
1 year ago
3 files
+
9
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
Assets/VLCUnity/Editor/VLCNativePluginProcessor.cs
+
0
−
3
Options
@@ -136,9 +136,6 @@ void ConfigureUWPNativePlugins()
if
(!
pi
.
assetPath
.
Contains
(
UWP_PATH
))
continue
;
var
isX64
=
pi
.
assetPath
.
Contains
(
$"
{
UWP_PATH
}
/
{
UWP_ARCH
[
0
]}
"
);
var
sdkPath
=
isX64
?
$"
{
UWP_PATH
}
/
{
UWP_ARCH
[
0
]}
/
{
SDK
}
"
:
$"
{
UWP_PATH
}
/
{
UWP_ARCH
[
1
]}
/
{
SDK
}
"
;
if
(
pi
.
assetPath
.
Contains
(
sdkPath
))
continue
;
// pi.ClearSettings();
var
dirty
=
false
;
Loading