Skip to content

Commit ba1135c

Browse files
committed
Merge branch 'develop'
2 parents c688537 + 151a2be commit ba1135c

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

Changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 3.12.8 (2023/04/05)
2+
- 界面不在限制大小,可以自由拖拽大小
3+
14
# 3.12.7 (2022/12/29)
25
- 修改直播延迟逻辑
36
- 修改直播缓存命名方式,以支持文件夹快速合并方案

M3u8Downloader_H.Core/M3u8Downloader_H.Core.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<Nullable>enable</Nullable>
6-
<Version>3.12.7.0</Version>
6+
<Version>3.12.8.0</Version>
77
<Authors>Harlan</Authors>
8-
<AssemblyVersion>3.12.7.0</AssemblyVersion>
8+
<AssemblyVersion>3.12.8.0</AssemblyVersion>
99
</PropertyGroup>
1010

1111
<PropertyGroup Condition="'$(Configuration)'=='Release'">

M3u8Downloader_H.M3U8/M3u8Downloader_H.M3U8.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<Nullable>enable</Nullable>
6-
<AssemblyVersion>3.12.7.0</AssemblyVersion>
7-
<Version>3.12.7.0</Version>
6+
<AssemblyVersion>3.12.8.0</AssemblyVersion>
7+
<Version>3.12.8.0</Version>
88
</PropertyGroup>
99

1010
<PropertyGroup Condition="'$(Configuration)'=='Release'">

M3u8Downloader_H.PluginManager/M3u8Downloader_H.PluginManager.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>net6.0-windows</TargetFramework>
66
<Nullable>enable</Nullable>
77
<UseWPF>true</UseWPF>
8-
<Version>3.12.7.0</Version>
8+
<Version>3.12.8.0</Version>
99
<ApplicationIcon>icon.ico</ApplicationIcon>
1010
</PropertyGroup>
1111

M3u8Downloader_H/M3u8Downloader_H.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<UseWindowsForms>true</UseWindowsForms>
88
<RootNamespace>M3u8Downloader_H</RootNamespace>
99
<Platforms>AnyCPU;x64</Platforms>
10-
<AssemblyVersion>3.12.7.0</AssemblyVersion>
11-
<Version>3.12.7.0</Version>
10+
<AssemblyVersion>3.12.8.0</AssemblyVersion>
11+
<Version>3.12.8.0</Version>
1212
<PackageId>m3u8视频下载器</PackageId>
1313
<Product>m3u8视频下载器</Product>
1414
<ApplicationIcon>icon.ico</ApplicationIcon>

M3u8Downloader_H/Views/MainWindowView.xaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
d:DataContext="{d:DesignInstance Type=local:MainWindowViewModel}"
1515
WindowStartupLocation="CenterScreen"
1616
WindowStyle="None"
17-
MinHeight="480" MinWidth="700"
18-
MaxHeight="480" MaxWidth="700"
17+
MinHeight="480" MinWidth="700"
1918
Height="480" Width="700">
2019

2120
<i:Interaction.Behaviors>
@@ -99,8 +98,8 @@
9998
<!-- 操作区 -->
10099
<Grid Grid.Row="0" Height="95" Name="videoDownloadInfoGrid" DataContext="{Binding VideoDownloadInfo}">
101100
<Grid.ColumnDefinitions>
102-
<ColumnDefinition Width="4*" />
103-
<ColumnDefinition />
101+
<ColumnDefinition />
102+
<ColumnDefinition Width="auto" />
104103
</Grid.ColumnDefinitions>
105104
<StackPanel >
106105
<TextBox Text="{Binding RequestUrl,Delay=150}" Margin="8"
@@ -139,7 +138,7 @@
139138
</StackPanel>
140139
<Grid Grid.Column="1" >
141140
<Button cal:Message.Attach="ProcessDownload($DataContext)"
142-
Margin="5" materialDesign:ShadowAssist.ShadowDepth="Depth2" >
141+
Margin="5" Width="150" materialDesign:ShadowAssist.ShadowDepth="Depth2" >
143142
<materialDesign:PackIcon Kind="Download" Width="24" Height="24" />
144143
</Button>
145144
</Grid>
@@ -152,6 +151,7 @@
152151
<StackPanel
153152
Margin="8,10,8,8"
154153
HorizontalAlignment="Center"
154+
VerticalAlignment="Center"
155155
Visibility="{Binding Downloads.Count, Converter={x:Static converters:IntToInverseBoolVisibilityConverter.Instance}}">
156156
<Image Source="pack://application:,,,/icon.ico"
157157
Width="160"

0 commit comments

Comments
 (0)