Skip to content

Commit

Permalink
v7.0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stax76 committed Dec 13, 2023
1 parent 49f22a1 commit 3eb4af5
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 6 deletions.
5 changes: 3 additions & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

# v7.0.0.2 Beta (2023-12-??)
# v7.0.0.2 Beta (2023-12-13)

- Besides a portable download there is now again a setup installer.
- Fix dynamic menu items missing in context menu.
- Fix certain binding setups shown poorly or incorrect in the main menu.
- Fix certain binding setups shown poorly or incorrectly in the main menu.
- Fix conf editor not remembering the search text.
- Fix quit-watch-later not working.
- New option `menu-syntax`. Default: `#menu:`
Expand Down
2 changes: 1 addition & 1 deletion docs/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Download

1. [Stable via Microsoft Store](https://www.microsoft.com/store/productId/9N64SQZTB3LM)

2. [Stable and beta portable via GitHub download](../../../releases)
2. [Stable and beta portable and setup via GitHub download](../../../releases)

3. Stable via command line from Microsoft Store: `winget install mpv.net`

Expand Down
6 changes: 3 additions & 3 deletions src/MpvNet.Windows/MpvNet.Windows.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>mpv-icon.ico</ApplicationIcon>
<Product>mpv.net</Product>
<FileVersion>7.0.0.1</FileVersion>
<AssemblyVersion>7.0.0.1</AssemblyVersion>
<InformationalVersion>7.0.0.1</InformationalVersion>
<FileVersion>7.0.0.2</FileVersion>
<AssemblyVersion>7.0.0.2</AssemblyVersion>
<InformationalVersion>7.0.0.2</InformationalVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
26 changes: 26 additions & 0 deletions src/Setup/Inno/inno-setup.iss
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

#define MyAppName "mpv.net"
#define MyAppExeName "mpvnet.exe"
#define MyAppSourceDir "..\..\MpvNet.Windows\bin\Debug"
#define MyAppVersion GetFileVersion("..\..\MpvNet.Windows\bin\Debug\mpvnet.exe")

[Setup]
AppId={{9AA2B100-BEF3-44D0-B819-D8FC3C4D557D}}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
AppPublisher=Frank Skare (stax76)
ArchitecturesInstallIn64BitMode=x64
Compression=lzma2
DefaultDirName={commonpf}\{#MyAppName}
OutputBaseFilename=mpv.net-v{#MyAppVersion}-setup
OutputDir=E:\Desktop
DefaultGroupName={#MyAppName}
SetupIconFile=..\..\MpvNet.Windows\mpv-icon.ico
UninstallDisplayIcon={app}\{#MyAppExeName}

[Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"

[Files]
Source: "{#MyAppSourceDir}\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "{#MyAppSourceDir}\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs;
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.

0 comments on commit 3eb4af5

Please sign in to comment.