Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
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
Merge requests
!1801
Set extra version number when building MSI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Set extra version number when building MSI
Trenly/vlc:MSIFixMaybe
into
master
Overview
12
Commits
1
Pipelines
9
Changes
2
Merged
Trenly
requested to merge
Trenly/vlc:MSIFixMaybe
into
master
3 years ago
Overview
11
Commits
1
Pipelines
9
Changes
2
Expand
I think this resolves
#26850 (closed)
but I'm not entirely sure how to test the build
1
0
Merge request reports
Compare
master
version 8
5ff21eee
2 years ago
version 7
856f4c60
2 years ago
version 6
fe259adb
3 years ago
version 5
3ca0c55a
3 years ago
version 4
24fe6518
3 years ago
version 3
930fede3
3 years ago
version 2
5430b355
3 years ago
version 1
c2092d08
3 years ago
master (base)
and
latest version
latest version
cafda671
1 commit,
2 years ago
version 8
5ff21eee
1 commit,
2 years ago
version 7
856f4c60
1 commit,
2 years ago
version 6
fe259adb
1 commit,
3 years ago
version 5
3ca0c55a
2 commits,
3 years ago
version 4
24fe6518
2 commits,
3 years ago
version 3
930fede3
1 commit,
3 years ago
version 2
5430b355
1 commit,
3 years ago
version 1
c2092d08
1 commit,
3 years ago
2 files
+
3
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
extras/package/win32/msi/config.wxi.in
+
2
−
1
Options
<?xml version='1.0'?>
<Include>
<?define ShortProductName = "VLC" ?>
<?define ProductName = "VLC media player" ?>
@@ -10,4+10,4 @@
<?define VerMajor = "@VERSION_MAJOR@" ?>
<?define VerMinor = "@VERSION_MINOR@" ?>
<?define VerPatch = "@VERSION_REVISION@" ?>
<?define VerExtra = "@VERSION_EXTRA@" ?>
<?define Version = "$(var.VerMajor).$(var.VerMinor).$(var.VerPatch)" ?>
<?define VersionLong = "$(var.Version).
0
" ?>
<?define VersionLong = "$(var.Version).
$(var.VerExtra)
" ?>
<?define SourceDir = "vlc-@VERSION@" ?>
<!--<?define PluginsPath = "$(var.BinPath)\plugins" ?>
Loading