mirror of
https://github.com/hama3254/Crunchyroll-Downloader-v3.0.git
synced 2024-12-24 15:11:48 +01:00
removed AoD, fixes Funimation
-added direct api call for funimation -removed anime-on-demand.de due to it's shutdown and merge with Crunchyroll -removed old version of the funimation code
This commit is contained in:
parent
e688d8fe00
commit
537ca11c43
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -1,25 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/>
|
||||
</startup>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<probing privatePath="lib" />
|
||||
<probing privatePath="lib"/>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="CefSharp" publicKeyToken="40c4b6fc221f4138" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-93.1.140.0" newVersion="93.1.140.0" />
|
||||
<assemblyIdentity name="CefSharp" publicKeyToken="40c4b6fc221f4138" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-93.1.140.0" newVersion="93.1.140.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="CefSharp.Core" publicKeyToken="40c4b6fc221f4138" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-93.1.140.0" newVersion="93.1.140.0" />
|
||||
<assemblyIdentity name="CefSharp.Core" publicKeyToken="40c4b6fc221f4138" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-93.1.140.0" newVersion="93.1.140.0"/>
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<AppContextSwitchOverrides value="Switch.System.IO.UseLegacyPathHandling=false"/>
|
||||
</runtime>
|
||||
<system.net>
|
||||
<settings>
|
||||
<httpWebRequest useUnsafeHeaderParsing = "true"/>
|
||||
<httpWebRequest useUnsafeHeaderParsing="true"/>
|
||||
</settings>
|
||||
</system.net>
|
||||
</configuration>
|
||||
|
||||
|
@ -86,10 +86,7 @@ Public Class CRD_List_Item
|
||||
PictureBox5.Location = New Point(0, 136)
|
||||
PictureBox5.Height = 6
|
||||
|
||||
If Service = "AoD" Then
|
||||
MetroStyleManager1.Style = MetroColorStyle.LightGreen
|
||||
ServiceSleep = 500
|
||||
ElseIf Service = "FM" Then
|
||||
If Service = "FM" Then
|
||||
MetroStyleManager1.Style = MetroColorStyle.DarkPurple
|
||||
Else
|
||||
MetroStyleManager1.Style = MetroColorStyle.Orange
|
||||
|
@ -79,6 +79,7 @@ Partial Class CefSharp_Browser
|
||||
Me.WebBrowser1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||
Or System.Windows.Forms.AnchorStyles.Left) _
|
||||
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
'TODO: Ausnahme "Ungültiger primitiver Typ: System.IntPtr. Verwenden Sie CodeObjectCreateExpression." beim Generieren des Codes für "".
|
||||
Me.WebBrowser1.Location = New System.Drawing.Point(0, 0)
|
||||
Me.WebBrowser1.Name = "WebBrowser1"
|
||||
Me.WebBrowser1.Size = New System.Drawing.Size(1280, 720)
|
||||
|
@ -386,7 +386,7 @@ Public Class CefSharp_Browser
|
||||
|
||||
If Main.b = False Then
|
||||
If CBool(InStr(requesturl, "https://title-api.prd.funimationsvc.com/v1/show")) And CBool(InStr(requesturl, "/episodes/")) Then
|
||||
Main.GetFunimationJS_VideoProxy(requesturl)
|
||||
Main.GetFunimationNewJS_VideoProxy(requesturl)
|
||||
Main.b = True
|
||||
Exit Sub
|
||||
Else
|
||||
@ -487,5 +487,10 @@ Public Class CefSharp_Browser
|
||||
End Sub
|
||||
|
||||
|
||||
|
||||
|
||||
'Private Sub WebBrowser1_ConsoleMessage(sender As Object, e As ConsoleMessageEventArgs) Handles WebBrowser1.ConsoleMessage
|
||||
' Debug.WriteLine(e.Message)
|
||||
'End Sub
|
||||
End Class
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
<AssemblyName>Crunchyroll Downloader</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<MyType>WindowsForms</MyType>
|
||||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<TargetFrameworkProfile>
|
||||
</TargetFrameworkProfile>
|
||||
|
@ -87,26 +87,7 @@ Public Class ErrorDialog
|
||||
ComboBox1.SelectedIndex = 0
|
||||
Catch ex As Exception
|
||||
End Try
|
||||
ElseIf Main.DialogTaskString = "AoD_Resolution" Then
|
||||
StatusLabel.Text = Main.LabelResoNotFoundText
|
||||
Dim ResoList As New List(Of String)
|
||||
Dim m3u8_split As String() = Main.ResoNotFoundString.Split(New String() {vbLf}, System.StringSplitOptions.RemoveEmptyEntries)
|
||||
For i As Integer = 0 To m3u8_split.Count - 1
|
||||
If CBool(InStr(m3u8_split(i), "RESOLUTION=")) Then
|
||||
ResoList.Add(m3u8_split(i))
|
||||
End If
|
||||
Next
|
||||
|
||||
Dim Reso_avaible1 As String() = Main.ResoNotFoundString.Split(New String() {"RESOLUTION="}, System.StringSplitOptions.RemoveEmptyEntries)
|
||||
For i As Integer = 0 To ResoList.Count - 1
|
||||
Dim Reso_avaible As String() = ResoList.Item(i).Split(New String() {"RESOLUTION="}, System.StringSplitOptions.RemoveEmptyEntries)
|
||||
ComboBox1.Items.Add(Reso_avaible(1))
|
||||
Next
|
||||
SurroundingSub()
|
||||
Try
|
||||
ComboBox1.SelectedIndex = 0
|
||||
Catch ex As Exception
|
||||
End Try
|
||||
End If
|
||||
|
||||
End Sub
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("3.8")>
|
||||
<Assembly: AssemblyFileVersion("3.8.0.9")>
|
||||
<Assembly: AssemblyVersion("3.8.1.0")>
|
||||
<Assembly: AssemblyFileVersion("3.8.1.0")>
|
||||
<Assembly: NeutralResourcesLanguage("en")>
|
||||
|
@ -90,60 +90,6 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Zeichenfolge, die {"sources":[{"file":" ähnelt.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property AoD_files() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("AoD_files", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Zeichenfolge, die <h1 itemprop="name"> ähnelt.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property AoD_HTML_Anime_Title() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("AoD_HTML_Anime_Title", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Zeichenfolge, die <h3 class="episodebox-title" title=" ähnelt.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property AoD_HTML_Episode_Title() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("AoD_HTML_Episode_Title", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Zeichenfolge, die "image":" ähnelt.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property AoD_Image() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("AoD_Image", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Zeichenfolge, die "mediaid": ähnelt.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property AoD_MediaID() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("AoD_MediaID", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Zeichenfolge, die "title":" ähnelt.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property AoD_Titel() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("AoD_Titel", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Zeichenfolge, die [Script Info]
|
||||
'''; Template for error handling in the Crunchyrol Downloader by hama3254 https://github.com/hama3254/Crunchyroll-Downloader-v3.0
|
||||
@ -959,15 +905,5 @@ Namespace My.Resources
|
||||
Return ResourceManager.GetString("thumbnailString", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Zeichenfolge, die US cookies can't be used as long you are logged in.
|
||||
'''I delete the curremt session with the unlock, if you want to be logged in with the US cookie you need to enter you data on the left. ähnelt.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property US_ToolTip() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("US_ToolTip", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
||||
|
@ -145,9 +145,6 @@
|
||||
<data name="about_icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\about_icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="AoD_Titel" xml:space="preserve">
|
||||
<value>"title":"</value>
|
||||
</data>
|
||||
<data name="Funimation_Subtitle_String2" xml:space="preserve">
|
||||
<value>", "kind": "subtitle", "type": "Full", "language": "</value>
|
||||
</data>
|
||||
@ -225,9 +222,6 @@
|
||||
<data name="main_button_download_deactivate" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\main_button_download-deactivate.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="AoD_Image" xml:space="preserve">
|
||||
<value>"image":"</value>
|
||||
</data>
|
||||
<data name="Funimation_Subtitle_String" xml:space="preserve">
|
||||
<value>", "kind": "subtitle", "type": "CC", "language": "</value>
|
||||
</data>
|
||||
@ -257,10 +251,6 @@ setInterval(function loadXMLDoc() {
|
||||
<data name="Funimation_src_string" xml:space="preserve">
|
||||
<value>"src":</value>
|
||||
</data>
|
||||
<data name="US_ToolTip" xml:space="preserve">
|
||||
<value>US cookies can't be used as long you are logged in.
|
||||
I delete the curremt session with the unlock, if you want to be logged in with the US cookie you need to enter you data on the left.</value>
|
||||
</data>
|
||||
<data name="ass_template" xml:space="preserve">
|
||||
<value>[Script Info]
|
||||
; Template for error handling in the Crunchyrol Downloader by hama3254 https://github.com/hama3254/Crunchyroll-Downloader-v3.0
|
||||
@ -426,9 +416,6 @@ Dialogue: 0,0:00:00.00,0:00:00.00,Default,,0000,0000,0000,,some ideas on how tem
|
||||
<data name="icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\icon.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="AoD_files" xml:space="preserve">
|
||||
<value>{"sources":[{"file":"</value>
|
||||
</data>
|
||||
<data name="CR_Head_Url_Split" xml:space="preserve">
|
||||
<value><meta property="og:url" content="</value>
|
||||
</data>
|
||||
@ -478,12 +465,6 @@ Dialogue: 0,0:00:00.00,0:00:00.00,Default,,0000,0000,0000,,some ideas on how tem
|
||||
<data name="Funimation_subs_src" xml:space="preserve">
|
||||
<value>{"src": "</value>
|
||||
</data>
|
||||
<data name="AoD_HTML_Anime_Title" xml:space="preserve">
|
||||
<value><h1 itemprop="name"></value>
|
||||
</data>
|
||||
<data name="AoD_HTML_Episode_Title" xml:space="preserve">
|
||||
<value><h3 class="episodebox-title" title="</value>
|
||||
</data>
|
||||
<data name="CR_MediaName" xml:space="preserve">
|
||||
<value><h4 id="showmedia_about_name" class="strong">“</value>
|
||||
</data>
|
||||
@ -520,9 +501,6 @@ Dialogue: 0,0:00:00.00,0:00:00.00,Default,,0000,0000,0000,,some ideas on how tem
|
||||
<data name="Funimation_Player_ID_2" xml:space="preserve">
|
||||
<value>src="https://www.funimation.com/player/</value>
|
||||
</data>
|
||||
<data name="AoD_MediaID" xml:space="preserve">
|
||||
<value>"mediaid":</value>
|
||||
</data>
|
||||
<data name="main_close_dark" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\main-close_dark.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
Binary file not shown.
@ -1,25 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/>
|
||||
</startup>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<probing privatePath="lib" />
|
||||
<probing privatePath="lib"/>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="CefSharp" publicKeyToken="40c4b6fc221f4138" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-93.1.140.0" newVersion="93.1.140.0" />
|
||||
<assemblyIdentity name="CefSharp" publicKeyToken="40c4b6fc221f4138" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-93.1.140.0" newVersion="93.1.140.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="CefSharp.Core" publicKeyToken="40c4b6fc221f4138" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-93.1.140.0" newVersion="93.1.140.0" />
|
||||
<assemblyIdentity name="CefSharp.Core" publicKeyToken="40c4b6fc221f4138" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-93.1.140.0" newVersion="93.1.140.0"/>
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
<AppContextSwitchOverrides value="Switch.System.IO.UseLegacyPathHandling=false"/>
|
||||
</runtime>
|
||||
<system.net>
|
||||
<settings>
|
||||
<httpWebRequest useUnsafeHeaderParsing = "true"/>
|
||||
<httpWebRequest useUnsafeHeaderParsing="true"/>
|
||||
</settings>
|
||||
</system.net>
|
||||
</configuration>
|
||||
|
||||
|
Binary file not shown.
98
Crunchyroll Downloader/einstellungen.Designer.vb
generated
98
Crunchyroll Downloader/einstellungen.Designer.vb
generated
@ -124,11 +124,6 @@ Partial Class Einstellungen
|
||||
Me.CB_fun_eng = New MetroFramework.Controls.MetroCheckBox()
|
||||
Me.CB_fun_es = New MetroFramework.Controls.MetroCheckBox()
|
||||
Me.CB_fun_ptbr = New MetroFramework.Controls.MetroCheckBox()
|
||||
Me.TabPage8 = New System.Windows.Forms.TabPage()
|
||||
Me.GroupBox8 = New System.Windows.Forms.GroupBox()
|
||||
Me.AoD_0p = New MetroFramework.Controls.MetroRadioButton()
|
||||
Me.AoD_576p = New MetroFramework.Controls.MetroRadioButton()
|
||||
Me.AoD_1080_Plus = New MetroFramework.Controls.MetroRadioButton()
|
||||
Me.TabPage7 = New System.Windows.Forms.TabPage()
|
||||
Me.LastVersion = New MetroFramework.Controls.MetroLabel()
|
||||
Me.Label8 = New MetroFramework.Controls.MetroLabel()
|
||||
@ -169,8 +164,6 @@ Partial Class Einstellungen
|
||||
Me.GroupBox10.SuspendLayout()
|
||||
Me.GroupBox7.SuspendLayout()
|
||||
Me.GroupBox9.SuspendLayout()
|
||||
Me.TabPage8.SuspendLayout()
|
||||
Me.GroupBox8.SuspendLayout()
|
||||
Me.TabPage7.SuspendLayout()
|
||||
CType(Me.PictureBox7, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.SuspendLayout()
|
||||
@ -389,10 +382,10 @@ Partial Class Einstellungen
|
||||
Me.TabPage2.HorizontalScrollbarBarColor = True
|
||||
Me.TabPage2.HorizontalScrollbarHighlightOnWheel = False
|
||||
Me.TabPage2.HorizontalScrollbarSize = 10
|
||||
Me.TabPage2.Location = New System.Drawing.Point(4, 35)
|
||||
Me.TabPage2.Location = New System.Drawing.Point(4, 44)
|
||||
Me.TabPage2.Name = "TabPage2"
|
||||
Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
|
||||
Me.TabPage2.Size = New System.Drawing.Size(501, 528)
|
||||
Me.TabPage2.Size = New System.Drawing.Size(501, 519)
|
||||
Me.TabPage2.TabIndex = 1
|
||||
Me.TabPage2.Text = "Output"
|
||||
Me.TabPage2.VerticalScrollbarBarColor = True
|
||||
@ -843,10 +836,10 @@ Partial Class Einstellungen
|
||||
Me.TabPage1.HorizontalScrollbarBarColor = True
|
||||
Me.TabPage1.HorizontalScrollbarHighlightOnWheel = False
|
||||
Me.TabPage1.HorizontalScrollbarSize = 10
|
||||
Me.TabPage1.Location = New System.Drawing.Point(4, 35)
|
||||
Me.TabPage1.Location = New System.Drawing.Point(4, 44)
|
||||
Me.TabPage1.Name = "TabPage1"
|
||||
Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
|
||||
Me.TabPage1.Size = New System.Drawing.Size(501, 528)
|
||||
Me.TabPage1.Size = New System.Drawing.Size(501, 519)
|
||||
Me.TabPage1.TabIndex = 0
|
||||
Me.TabPage1.Text = " Main"
|
||||
Me.TabPage1.VerticalScrollbar = True
|
||||
@ -1105,13 +1098,12 @@ Partial Class Einstellungen
|
||||
Me.TabControl1.Controls.Add(Me.TabPage2)
|
||||
Me.TabControl1.Controls.Add(Me.MetroTabPage1)
|
||||
Me.TabControl1.Controls.Add(Me.TabPage6)
|
||||
Me.TabControl1.Controls.Add(Me.TabPage8)
|
||||
Me.TabControl1.Controls.Add(Me.TabPage7)
|
||||
Me.TabControl1.FontSize = MetroFramework.MetroTabControlSize.Tall
|
||||
Me.TabControl1.FontWeight = MetroFramework.MetroTabControlWeight.Regular
|
||||
Me.TabControl1.Location = New System.Drawing.Point(22, 60)
|
||||
Me.TabControl1.Name = "TabControl1"
|
||||
Me.TabControl1.SelectedIndex = 3
|
||||
Me.TabControl1.SelectedIndex = 0
|
||||
Me.TabControl1.Size = New System.Drawing.Size(509, 567)
|
||||
Me.TabControl1.TabIndex = 0
|
||||
Me.TabControl1.UseSelectable = True
|
||||
@ -1125,9 +1117,9 @@ Partial Class Einstellungen
|
||||
Me.MetroTabPage1.HorizontalScrollbarBarColor = True
|
||||
Me.MetroTabPage1.HorizontalScrollbarHighlightOnWheel = False
|
||||
Me.MetroTabPage1.HorizontalScrollbarSize = 10
|
||||
Me.MetroTabPage1.Location = New System.Drawing.Point(4, 35)
|
||||
Me.MetroTabPage1.Location = New System.Drawing.Point(4, 44)
|
||||
Me.MetroTabPage1.Name = "MetroTabPage1"
|
||||
Me.MetroTabPage1.Size = New System.Drawing.Size(501, 528)
|
||||
Me.MetroTabPage1.Size = New System.Drawing.Size(501, 519)
|
||||
Me.MetroTabPage1.TabIndex = 7
|
||||
Me.MetroTabPage1.Text = "Crunchyroll"
|
||||
Me.MetroTabPage1.VerticalScrollbarBarColor = True
|
||||
@ -1356,70 +1348,6 @@ Partial Class Einstellungen
|
||||
Me.CB_fun_ptbr.Text = "Português (Brasil)"
|
||||
Me.CB_fun_ptbr.UseSelectable = True
|
||||
'
|
||||
'TabPage8
|
||||
'
|
||||
Me.TabPage8.BackColor = System.Drawing.Color.Transparent
|
||||
Me.TabPage8.Controls.Add(Me.GroupBox8)
|
||||
Me.TabPage8.Location = New System.Drawing.Point(4, 35)
|
||||
Me.TabPage8.Name = "TabPage8"
|
||||
Me.TabPage8.Size = New System.Drawing.Size(501, 528)
|
||||
Me.TabPage8.TabIndex = 6
|
||||
Me.TabPage8.Text = " AoD"
|
||||
'
|
||||
'GroupBox8
|
||||
'
|
||||
Me.GroupBox8.BackColor = System.Drawing.Color.Transparent
|
||||
Me.GroupBox8.Controls.Add(Me.AoD_0p)
|
||||
Me.GroupBox8.Controls.Add(Me.AoD_576p)
|
||||
Me.GroupBox8.Controls.Add(Me.AoD_1080_Plus)
|
||||
Me.GroupBox8.Font = New System.Drawing.Font("Arial", 9.75!)
|
||||
Me.GroupBox8.ForeColor = System.Drawing.Color.Black
|
||||
Me.GroupBox8.Location = New System.Drawing.Point(5, 15)
|
||||
Me.GroupBox8.Name = "GroupBox8"
|
||||
Me.GroupBox8.Size = New System.Drawing.Size(490, 74)
|
||||
Me.GroupBox8.TabIndex = 90
|
||||
Me.GroupBox8.TabStop = False
|
||||
Me.GroupBox8.Text = "Anime on Demand unique resolution "
|
||||
'
|
||||
'AoD_0p
|
||||
'
|
||||
Me.AoD_0p.AutoSize = True
|
||||
Me.AoD_0p.FontSize = MetroFramework.MetroCheckBoxSize.Medium
|
||||
Me.AoD_0p.ForeColor = System.Drawing.Color.Black
|
||||
Me.AoD_0p.Location = New System.Drawing.Point(348, 32)
|
||||
Me.AoD_0p.Name = "AoD_0p"
|
||||
Me.AoD_0p.Size = New System.Drawing.Size(65, 19)
|
||||
Me.AoD_0p.TabIndex = 44
|
||||
Me.AoD_0p.TabStop = True
|
||||
Me.AoD_0p.Text = "Ignore"
|
||||
Me.AoD_0p.UseSelectable = True
|
||||
'
|
||||
'AoD_576p
|
||||
'
|
||||
Me.AoD_576p.AutoSize = True
|
||||
Me.AoD_576p.FontSize = MetroFramework.MetroCheckBoxSize.Medium
|
||||
Me.AoD_576p.ForeColor = System.Drawing.Color.Black
|
||||
Me.AoD_576p.Location = New System.Drawing.Point(210, 32)
|
||||
Me.AoD_576p.Name = "AoD_576p"
|
||||
Me.AoD_576p.Size = New System.Drawing.Size(57, 19)
|
||||
Me.AoD_576p.TabIndex = 43
|
||||
Me.AoD_576p.TabStop = True
|
||||
Me.AoD_576p.Text = "576p"
|
||||
Me.AoD_576p.UseSelectable = True
|
||||
'
|
||||
'AoD_1080_Plus
|
||||
'
|
||||
Me.AoD_1080_Plus.AutoSize = True
|
||||
Me.AoD_1080_Plus.FontSize = MetroFramework.MetroCheckBoxSize.Medium
|
||||
Me.AoD_1080_Plus.ForeColor = System.Drawing.Color.Black
|
||||
Me.AoD_1080_Plus.Location = New System.Drawing.Point(62, 32)
|
||||
Me.AoD_1080_Plus.Name = "AoD_1080_Plus"
|
||||
Me.AoD_1080_Plus.Size = New System.Drawing.Size(75, 19)
|
||||
Me.AoD_1080_Plus.TabIndex = 42
|
||||
Me.AoD_1080_Plus.TabStop = True
|
||||
Me.AoD_1080_Plus.Text = "1080p+"
|
||||
Me.AoD_1080_Plus.UseSelectable = True
|
||||
'
|
||||
'TabPage7
|
||||
'
|
||||
Me.TabPage7.BackColor = System.Drawing.Color.Transparent
|
||||
@ -1432,9 +1360,9 @@ Partial Class Einstellungen
|
||||
Me.TabPage7.Controls.Add(Me.Label4)
|
||||
Me.TabPage7.Controls.Add(Me.Label6)
|
||||
Me.TabPage7.Controls.Add(Me.Label5)
|
||||
Me.TabPage7.Location = New System.Drawing.Point(4, 35)
|
||||
Me.TabPage7.Location = New System.Drawing.Point(4, 44)
|
||||
Me.TabPage7.Name = "TabPage7"
|
||||
Me.TabPage7.Size = New System.Drawing.Size(501, 528)
|
||||
Me.TabPage7.Size = New System.Drawing.Size(501, 519)
|
||||
Me.TabPage7.TabIndex = 5
|
||||
Me.TabPage7.Text = "About "
|
||||
'
|
||||
@ -1623,9 +1551,6 @@ Partial Class Einstellungen
|
||||
Me.GroupBox7.ResumeLayout(False)
|
||||
Me.GroupBox9.ResumeLayout(False)
|
||||
Me.GroupBox9.PerformLayout()
|
||||
Me.TabPage8.ResumeLayout(False)
|
||||
Me.GroupBox8.ResumeLayout(False)
|
||||
Me.GroupBox8.PerformLayout()
|
||||
Me.TabPage7.ResumeLayout(False)
|
||||
CType(Me.PictureBox7, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.ResumeLayout(False)
|
||||
@ -1672,8 +1597,6 @@ Partial Class Einstellungen
|
||||
Private WithEvents TabPage6 As MetroFramework.Controls.MetroTabPage
|
||||
Friend WithEvents TabPage7 As TabPage
|
||||
Friend WithEvents PictureBox7 As PictureBox
|
||||
Friend WithEvents TabPage8 As TabPage
|
||||
Friend WithEvents GroupBox8 As GroupBox
|
||||
Friend WithEvents GroupBox7 As GroupBox
|
||||
Friend WithEvents GroupBox9 As GroupBox
|
||||
Friend WithEvents GroupBox10 As GroupBox
|
||||
@ -1707,9 +1630,6 @@ Partial Class Einstellungen
|
||||
Friend WithEvents A360p As MetroFramework.Controls.MetroRadioButton
|
||||
Friend WithEvents A720p As MetroFramework.Controls.MetroRadioButton
|
||||
Friend WithEvents A1080p As MetroFramework.Controls.MetroRadioButton
|
||||
Friend WithEvents AoD_0p As MetroFramework.Controls.MetroRadioButton
|
||||
Friend WithEvents AoD_576p As MetroFramework.Controls.MetroRadioButton
|
||||
Friend WithEvents AoD_1080_Plus As MetroFramework.Controls.MetroRadioButton
|
||||
Public WithEvents Label8 As MetroFramework.Controls.MetroLabel
|
||||
Public WithEvents Label9 As MetroFramework.Controls.MetroLabel
|
||||
Public WithEvents Label7 As MetroFramework.Controls.MetroLabel
|
||||
|
@ -18,7 +18,7 @@ Public Class Einstellungen
|
||||
|
||||
Private Sub Einstellungen_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
|
||||
Label6.Text = "You have: v" + Application.ProductVersion.ToString + " Chromium-U9.3"
|
||||
Label6.Text = "You have: v" + Application.ProductVersion.ToString + " Chromium-U10"
|
||||
|
||||
BackgroundWorker1.RunWorkerAsync()
|
||||
|
||||
@ -190,13 +190,7 @@ Public Class Einstellungen
|
||||
ElseIf Main.Reso = 42 Then
|
||||
AAuto.Checked = True
|
||||
End If
|
||||
If Main.AoD_Reso = 1080 Then
|
||||
AoD_1080_Plus.Checked = True
|
||||
ElseIf Main.AoD_Reso = 576 Then
|
||||
AoD_576p.Checked = True
|
||||
ElseIf Main.AoD_Reso = 0 Then
|
||||
AoD_0p.Checked = True
|
||||
End If
|
||||
|
||||
|
||||
If Check_CB() = False Then
|
||||
ComboBox1.Items.Add(Main.CB_SuB_Nothing)
|
||||
@ -426,17 +420,7 @@ Public Class Einstellungen
|
||||
Main.Reso = 42
|
||||
rk.SetValue("Resu", 42, RegistryValueKind.String)
|
||||
End If
|
||||
If AoD_1080_Plus.Checked Then
|
||||
Main.AoD_Reso = 1080
|
||||
rk.SetValue("AoD_Reso", 1080, RegistryValueKind.String)
|
||||
ElseIf AoD_576p.Checked Then
|
||||
Main.AoD_Reso = 576
|
||||
rk.SetValue("AoD_Reso", 576, RegistryValueKind.String)
|
||||
ElseIf AoD_0p.Checked Then
|
||||
Main.AoD_Reso = 0
|
||||
rk.SetValue("AoD_Reso", 0, RegistryValueKind.String)
|
||||
|
||||
End If
|
||||
If ComboBox1.SelectedItem.ToString = "English" Then
|
||||
Main.SubSprache = "enUS"
|
||||
rk.SetValue("Sub", "enUS", RegistryValueKind.String)
|
||||
@ -920,7 +904,7 @@ Public Class Einstellungen
|
||||
GroupBox5.ForeColor = color
|
||||
GroupBox6.ForeColor = color
|
||||
GroupBox7.ForeColor = color
|
||||
GroupBox8.ForeColor = color
|
||||
|
||||
GroupBox9.ForeColor = color
|
||||
GroupBox10.ForeColor = color
|
||||
GroupBox11.ForeColor = color
|
||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
6f9417ce7e694fa1e780dfd866bafe4f10e58047
|
||||
352c1818320c95c3e555a1345e2f4cce77e2ebb1
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user