Skip to content

Commit

Permalink
bump to v2.262
Browse files Browse the repository at this point in the history
  • Loading branch information
murrty authored Aug 20, 2021
1 parent 72680bd commit 1d3d696
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions App.config
Original file line number Diff line number Diff line change
Expand Up @@ -621,16 +621,16 @@
<applicationSettings>
<youtube_dl_gui.Properties.Settings>
<setting name="CurrentVersion" serializeAs="String">
<value>2.261</value>
<value>2.262</value>
</setting>
<setting name="LastDebugDate" serializeAs="String">
<value>2021-08-02</value>
<value>2021-08-20</value>
</setting>
<setting name="IsBetaVersion" serializeAs="String">
<value>False</value>
</setting>
<setting name="BetaVersion" serializeAs="String">
<value>2.261-pre4</value>
<value>0</value>
</setting>
</youtube_dl_gui.Properties.Settings>
</applicationSettings>
Expand Down
3 changes: 2 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
namespace youtube_dl_gui {
static class Program {
static GuidAttribute ProgramGUID = (GuidAttribute)Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(GuidAttribute), true)[0];
public static volatile string ProgramPath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
//public static volatile string ProgramPath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
public static volatile string ProgramPath = Environment.CurrentDirectory;
public static readonly string UserAgent = "User-Agent: youtube-dl-gui/" + Properties.Settings.Default.CurrentVersion;
public static volatile bool IsDebug = false;
public static volatile bool UseIni = false;
Expand Down
6 changes: 3 additions & 3 deletions Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Properties/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<Profiles />
<Settings>
<Setting Name="CurrentVersion" Type="System.Decimal" Scope="Application">
<Value Profile="(Default)">2.261</Value>
<Value Profile="(Default)">2.262</Value>
</Setting>
<Setting Name="firstTime" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="LastDebugDate" Type="System.String" Scope="Application">
<Value Profile="(Default)">2021-08-02</Value>
<Value Profile="(Default)">2021-08-20</Value>
</Setting>
<Setting Name="SkippedVersion" Type="System.Decimal" Scope="User">
<Value Profile="(Default)">-1</Value>
Expand All @@ -18,7 +18,7 @@
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="BetaVersion" Type="System.String" Scope="Application">
<Value Profile="(Default)">2.261-pre4</Value>
<Value Profile="(Default)">0</Value>
</Setting>
<Setting Name="SkippedBetaVersion" Type="System.String" Scope="User">
<Value Profile="(Default)" />
Expand Down
1 change: 1 addition & 0 deletions youtube-dl-gui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Management" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml.Linq" />
Expand Down

0 comments on commit 1d3d696

Please sign in to comment.