├── Version.txt ├── Launcher ├── Version.txt ├── Launcher.7z ├── Opera Launcher │ ├── Opera 32.ico │ ├── Opera Launcher.ico │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Opera Launcher.csproj.user │ ├── Opera Launcher.sln │ ├── Form1.cs │ ├── Form1.Designer.cs │ ├── Program.cs │ └── Opera Launcher.csproj ├── Opera GX x64 Launcher │ ├── Opera_GX.ico │ ├── Opera GX 32.ico │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Opera GX x64 Launcher.csproj.user │ ├── Opera GX x64 Launcher.sln │ ├── Form1.cs │ ├── Form1.Designer.cs │ ├── Program.cs │ └── Opera GX x64 Launcher.csproj ├── Opera GX x86 Launcher │ ├── Opera_GX.ico │ ├── Opera GX 32.ico │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Opera GX x86 Launcher.csproj.user │ ├── Opera GX x86 Launcher.sln │ ├── Form1.cs │ ├── Form1.Designer.cs │ ├── Program.cs │ └── Opera GX x86 Launcher.csproj ├── Opera Dev x64 Launcher │ ├── Opera_Dev.ico │ ├── Opera Dev 32.ico │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Opera Dev x64 Launcher.csproj.user │ ├── Opera Dev x64 Launcher.sln │ ├── Form1.cs │ ├── Form1.Designer.cs │ ├── Program.cs │ └── Opera Dev x64 Launcher.csproj ├── Opera Dev x86 Launcher │ ├── Opera_Dev.ico │ ├── Opera Dev 32.ico │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Opera Dev x86 Launcher.csproj.user │ ├── Opera Dev x86 Launcher.sln │ ├── Form1.cs │ ├── Form1.Designer.cs │ ├── Program.cs │ └── Opera Dev x86 Launcher.csproj ├── Opera Stable x64 Launcher │ ├── Opera.ico │ ├── Opera 32.ico │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Opera Stable x64 Launcher.csproj.user │ ├── Opera Stable x64 Launcher.sln │ ├── Form1.cs │ ├── Form1.Designer.cs │ └── Program.cs ├── Opera Stable x86 Launcher │ ├── Opera.ico │ ├── Opera 32.ico │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Opera Stable x86 Launcher.csproj.user │ ├── Opera Stable x86 Launcher.sln │ ├── Form1.cs │ ├── Form1.Designer.cs │ └── Program.cs ├── Opera Beta x64 Launcher │ ├── Opera_Beta.ico │ ├── Opera Beta 32.ico │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Opera Beta x64 Launcher.csproj.user │ ├── Opera Beta x64 Launcher.sln │ ├── Form1.cs │ ├── Form1.Designer.cs │ ├── Program.cs │ └── Opera Beta x64 Launcher.csproj └── Opera Beta x86 Launcher │ ├── Opera_Beta.ico │ ├── Opera Beta 32.ico │ ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ └── Resources.Designer.cs │ ├── Opera Beta x86 Launcher.csproj.user │ ├── Opera Beta x86 Launcher.sln │ ├── Form1.cs │ ├── Form1.Designer.cs │ └── Program.cs ├── Opera Updater.ico ├── Opera Updater32.ico ├── app.config ├── README.md ├── Properties ├── Settings.settings ├── Settings.Designer.cs ├── AssemblyInfo.cs └── Resources.Designer.cs ├── Program.cs ├── LICENSE ├── Portable Opera Updater.sln └── Portable Opera Updater.csproj /Version.txt: -------------------------------------------------------------------------------- 1 | 1.3.5.0 -------------------------------------------------------------------------------- /Launcher/Version.txt: -------------------------------------------------------------------------------- 1 | 1.2.0.0 -------------------------------------------------------------------------------- /Opera Updater.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Opera Updater.ico -------------------------------------------------------------------------------- /Launcher/Launcher.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Launcher.7z -------------------------------------------------------------------------------- /Opera Updater32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Opera Updater32.ico -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Opera 32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Launcher/Opera 32.ico -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Opera_GX.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera GX x64 Launcher/Opera_GX.ico -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Opera_GX.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera GX x86 Launcher/Opera_GX.ico -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Opera Launcher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Launcher/Opera Launcher.ico -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Opera_Dev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Dev x64 Launcher/Opera_Dev.ico -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Opera_Dev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Dev x86 Launcher/Opera_Dev.ico -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Opera GX 32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera GX x64 Launcher/Opera GX 32.ico -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Opera GX 32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera GX x86 Launcher/Opera GX 32.ico -------------------------------------------------------------------------------- /Launcher/Opera Stable x64 Launcher/Opera.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Stable x64 Launcher/Opera.ico -------------------------------------------------------------------------------- /Launcher/Opera Stable x86 Launcher/Opera.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Stable x86 Launcher/Opera.ico -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Opera_Beta.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Beta x64 Launcher/Opera_Beta.ico -------------------------------------------------------------------------------- /Launcher/Opera Beta x86 Launcher/Opera_Beta.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Beta x86 Launcher/Opera_Beta.ico -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Opera Dev 32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Dev x64 Launcher/Opera Dev 32.ico -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Opera Dev 32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Dev x86 Launcher/Opera Dev 32.ico -------------------------------------------------------------------------------- /Launcher/Opera Stable x64 Launcher/Opera 32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Stable x64 Launcher/Opera 32.ico -------------------------------------------------------------------------------- /Launcher/Opera Stable x86 Launcher/Opera 32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Stable x86 Launcher/Opera 32.ico -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Opera Beta 32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Beta x64 Launcher/Opera Beta 32.ico -------------------------------------------------------------------------------- /Launcher/Opera Beta x86 Launcher/Opera Beta 32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndertakerBen/PorOperaUpd/HEAD/Launcher/Opera Beta x86 Launcher/Opera Beta 32.ico -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Portable Opera Updater 2 | This is the complete sourcecode of the Portable Opera Updater 3 | 4 | For unpacking the downloaded Opera offline installer i use 7zr.exe 5 | 6 | - 7zr.exe - https://www.7-zip.org/ (Public Domain) 7 | -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x86 Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x64 Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x86 Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Opera Launcher.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | de-DE 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Opera GX x64 Launcher.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | de-DE 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Opera GX x86 Launcher.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | de-DE 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Opera Beta x64 Launcher.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | de-DE 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x86 Launcher/Opera Beta x86 Launcher.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | de-DE 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Opera Dev x64 Launcher.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | de-DE 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Opera Dev x86 Launcher.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | de-DE 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x64 Launcher/Opera Stable x64 Launcher.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | de-DE 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x86 Launcher/Opera Stable x86 Launcher.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | de-DE 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace Portable_Opera_Updater 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// Der Haupteinstiegspunkt für die Anwendung. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 UndertakerBen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Opera Launcher.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Opera Launcher", "Opera Launcher.csproj", "{989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {244BAEF9-A7A0-4236-8F25-8A4DF7FCB2AE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Launcher.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Portable Opera Updater.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Portable Opera Updater", "Portable Opera Updater.csproj", "{A7849774-7AC9-4AFB-B5B0-DC3CDCC01F4C}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {A7849774-7AC9-4AFB-B5B0-DC3CDCC01F4C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {A7849774-7AC9-4AFB-B5B0-DC3CDCC01F4C}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {A7849774-7AC9-4AFB-B5B0-DC3CDCC01F4C}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {A7849774-7AC9-4AFB-B5B0-DC3CDCC01F4C}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {F16F714D-2D49-4E9E-B9BC-4B32FC3245DE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Opera GX x64 Launcher.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Opera GX x64 Launcher", "Opera GX x64 Launcher.csproj", "{989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {244BAEF9-A7A0-4236-8F25-8A4DF7FCB2AE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Opera GX x86 Launcher.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Opera GX x86 Launcher", "Opera GX x86 Launcher.csproj", "{989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {244BAEF9-A7A0-4236-8F25-8A4DF7FCB2AE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Portable_Opera_Updater.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.2.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Opera Beta x64 Launcher.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Opera Beta x64 Launcher", "Opera Beta x64 Launcher.csproj", "{989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {244BAEF9-A7A0-4236-8F25-8A4DF7FCB2AE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Beta_x64_Launcher.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x86 Launcher/Opera Beta x86 Launcher.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Opera Beta x86 Launcher", "Opera Beta x86 Launcher.csproj", "{989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {244BAEF9-A7A0-4236-8F25-8A4DF7FCB2AE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x86 Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Beta_x86_Launcher.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Opera Dev x64 Launcher.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Opera Dev x64 Launcher", "Opera Dev x64 Launcher.csproj", "{989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {244BAEF9-A7A0-4236-8F25-8A4DF7FCB2AE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Dev_x64_Launcher.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Opera Dev x86 Launcher.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Opera Dev x86 Launcher", "Opera Dev x86 Launcher.csproj", "{989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {244BAEF9-A7A0-4236-8F25-8A4DF7FCB2AE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Dev_x86_Launcher.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_GX_x64_Launcher.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_GX_x86_Launcher.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x64 Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Stable_x64_Launcher.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x86 Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Stable_x86_Launcher.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x64 Launcher/Opera Stable x64 Launcher.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Opera Stable x64 Launcher", "Opera Stable x64 Launcher.csproj", "{989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {244BAEF9-A7A0-4236-8F25-8A4DF7FCB2AE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x86 Launcher/Opera Stable x86 Launcher.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Opera Stable x86 Launcher", "Opera Stable x86 Launcher.csproj", "{989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {244BAEF9-A7A0-4236-8F25-8A4DF7FCB2AE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Allgemeine Informationen über eine Assembly werden über die folgenden 6 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, 7 | // die einer Assembly zugeordnet sind. 8 | [assembly: AssemblyTitle("Opera Launcher")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Ben's Rumpelkammer")] 12 | [assembly: AssemblyProduct("Opera Launcher")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly 18 | // für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von 19 | // COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. 20 | [assembly: ComVisible(false)] 21 | 22 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird 23 | [assembly: Guid("989ac71b-8082-4a6b-ba4a-4d7aafd83fa3")] 24 | 25 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: 26 | // 27 | // Hauptversion 28 | // Nebenversion 29 | // Buildnummer 30 | // Revision 31 | // 32 | // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, 33 | // indem Sie "*" wie unten gezeigt eingeben: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.2.0.0")] 36 | [assembly: AssemblyFileVersion("1.2.0.0")] 37 | -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Allgemeine Informationen über eine Assembly werden über die folgenden 6 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, 7 | // die einer Assembly zugeordnet sind. 8 | [assembly: AssemblyTitle("Opera GX x64 Launcher")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Ben's Rumpelkammer")] 12 | [assembly: AssemblyProduct("Opera GX x64 Launcher")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly 18 | // für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von 19 | // COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. 20 | [assembly: ComVisible(false)] 21 | 22 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird 23 | [assembly: Guid("989ac71b-8082-4a6b-ba4a-4d7aafd83fa3")] 24 | 25 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: 26 | // 27 | // Hauptversion 28 | // Nebenversion 29 | // Buildnummer 30 | // Revision 31 | // 32 | // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, 33 | // indem Sie "*" wie unten gezeigt eingeben: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.2.0.0")] 36 | [assembly: AssemblyFileVersion("1.2.0.0")] 37 | -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Allgemeine Informationen über eine Assembly werden über die folgenden 6 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, 7 | // die einer Assembly zugeordnet sind. 8 | [assembly: AssemblyTitle("Opera GX x86 Starter")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Ben's Rumpelkammer")] 12 | [assembly: AssemblyProduct("Opera GX x86 Starter")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly 18 | // für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von 19 | // COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. 20 | [assembly: ComVisible(false)] 21 | 22 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird 23 | [assembly: Guid("989ac71b-8082-4a6b-ba4a-4d7aafd83fa3")] 24 | 25 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: 26 | // 27 | // Hauptversion 28 | // Nebenversion 29 | // Buildnummer 30 | // Revision 31 | // 32 | // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, 33 | // indem Sie "*" wie unten gezeigt eingeben: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.2.0.0")] 36 | [assembly: AssemblyFileVersion("1.2.0.0")] 37 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Allgemeine Informationen über eine Assembly werden über die folgenden 6 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, 7 | // die einer Assembly zugeordnet sind. 8 | [assembly: AssemblyTitle("Opera Beta x64 Launcher")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Ben's Rumpelkammer")] 12 | [assembly: AssemblyProduct("Opera Beta x64 Launcher")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly 18 | // für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von 19 | // COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. 20 | [assembly: ComVisible(false)] 21 | 22 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird 23 | [assembly: Guid("989ac71b-8082-4a6b-ba4a-4d7aafd83fa3")] 24 | 25 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: 26 | // 27 | // Hauptversion 28 | // Nebenversion 29 | // Buildnummer 30 | // Revision 31 | // 32 | // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, 33 | // indem Sie "*" wie unten gezeigt eingeben: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.2.0.0")] 36 | [assembly: AssemblyFileVersion("1.2.0.0")] 37 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x86 Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Allgemeine Informationen über eine Assembly werden über die folgenden 6 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, 7 | // die einer Assembly zugeordnet sind. 8 | [assembly: AssemblyTitle("Opera Beta x86 Launcher")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Ben's Rumpelkammer")] 12 | [assembly: AssemblyProduct("Opera Beta x86 Launcher")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly 18 | // für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von 19 | // COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. 20 | [assembly: ComVisible(false)] 21 | 22 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird 23 | [assembly: Guid("989ac71b-8082-4a6b-ba4a-4d7aafd83fa3")] 24 | 25 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: 26 | // 27 | // Hauptversion 28 | // Nebenversion 29 | // Buildnummer 30 | // Revision 31 | // 32 | // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, 33 | // indem Sie "*" wie unten gezeigt eingeben: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.2.0.0")] 36 | [assembly: AssemblyFileVersion("1.2.0.0")] 37 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Allgemeine Informationen über eine Assembly werden über die folgenden 6 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, 7 | // die einer Assembly zugeordnet sind. 8 | [assembly: AssemblyTitle("Opera Dev x64 Launcher")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Ben's Rumpelkammer")] 12 | [assembly: AssemblyProduct("Opera Dev x64 Launcher")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly 18 | // für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von 19 | // COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. 20 | [assembly: ComVisible(false)] 21 | 22 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird 23 | [assembly: Guid("989ac71b-8082-4a6b-ba4a-4d7aafd83fa3")] 24 | 25 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: 26 | // 27 | // Hauptversion 28 | // Nebenversion 29 | // Buildnummer 30 | // Revision 31 | // 32 | // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, 33 | // indem Sie "*" wie unten gezeigt eingeben: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.2.0.0")] 36 | [assembly: AssemblyFileVersion("1.2.0.0")] 37 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Allgemeine Informationen über eine Assembly werden über die folgenden 6 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, 7 | // die einer Assembly zugeordnet sind. 8 | [assembly: AssemblyTitle("Opera Dev x86 Launcher")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Ben's Rumpelkammer")] 12 | [assembly: AssemblyProduct("Opera Dev x86 Launcher")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly 18 | // für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von 19 | // COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. 20 | [assembly: ComVisible(false)] 21 | 22 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird 23 | [assembly: Guid("989ac71b-8082-4a6b-ba4a-4d7aafd83fa3")] 24 | 25 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: 26 | // 27 | // Hauptversion 28 | // Nebenversion 29 | // Buildnummer 30 | // Revision 31 | // 32 | // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, 33 | // indem Sie "*" wie unten gezeigt eingeben: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.2.0.0")] 36 | [assembly: AssemblyFileVersion("1.2.0.0")] 37 | -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Allgemeine Informationen über eine Assembly werden über die folgenden 6 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, 7 | // die einer Assembly zugeordnet sind. 8 | [assembly: AssemblyTitle("Portable Opera Updater")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Ben's Rumpelkammer")] 12 | [assembly: AssemblyProduct("Portable Opera Updater")] 13 | [assembly: AssemblyCopyright("Copyright © 2023")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly 18 | // für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von 19 | // COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. 20 | [assembly: ComVisible(false)] 21 | 22 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird 23 | [assembly: Guid("a7849774-7ac9-4afb-b5b0-dc3cdcc01f4c")] 24 | 25 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: 26 | // 27 | // Hauptversion 28 | // Nebenversion 29 | // Buildnummer 30 | // Revision 31 | // 32 | // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, 33 | // indem Sie "*" wie unten gezeigt eingeben: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.3.5.0")] 36 | [assembly: AssemblyFileVersion("1.3.5.0")] 37 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x64 Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Allgemeine Informationen über eine Assembly werden über die folgenden 6 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, 7 | // die einer Assembly zugeordnet sind. 8 | [assembly: AssemblyTitle("Opera Stable x64 Launcher")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Ben's Rumpelkammer")] 12 | [assembly: AssemblyProduct("Opera Stable x64 Launcher")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly 18 | // für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von 19 | // COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. 20 | [assembly: ComVisible(false)] 21 | 22 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird 23 | [assembly: Guid("989ac71b-8082-4a6b-ba4a-4d7aafd83fa3")] 24 | 25 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: 26 | // 27 | // Hauptversion 28 | // Nebenversion 29 | // Buildnummer 30 | // Revision 31 | // 32 | // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, 33 | // indem Sie "*" wie unten gezeigt eingeben: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.2.0.0")] 36 | [assembly: AssemblyFileVersion("1.2.0.0")] 37 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x86 Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // Allgemeine Informationen über eine Assembly werden über die folgenden 6 | // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, 7 | // die einer Assembly zugeordnet sind. 8 | [assembly: AssemblyTitle("Opera Stable x86 Launcher")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Ben's Rumpelkammer")] 12 | [assembly: AssemblyProduct("Opera Stable x86 Launcher")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly 18 | // für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von 19 | // COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. 20 | [assembly: ComVisible(false)] 21 | 22 | // Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird 23 | [assembly: Guid("989ac71b-8082-4a6b-ba4a-4d7aafd83fa3")] 24 | 25 | // Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: 26 | // 27 | // Hauptversion 28 | // Nebenversion 29 | // Buildnummer 30 | // Revision 31 | // 32 | // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, 33 | // indem Sie "*" wie unten gezeigt eingeben: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.2.0.0")] 36 | [assembly: AssemblyFileVersion("1.2.0.0")] 37 | -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Forms; 4 | 5 | namespace Opera_Launcher 6 | { 7 | public partial class Form1 : Form 8 | { 9 | private readonly string applicationPath = Application.StartupPath; 10 | public Form1() 11 | { 12 | CultureInfo culture = CultureInfo.CurrentUICulture; 13 | InitializeComponent(); 14 | switch (culture.TwoLetterISOLanguageName) 15 | { 16 | case "de": 17 | radioButton3.Text = "Das Standard Profil von Opera verwenden"; 18 | radioButton2.Text = "Für jede Version ein eigenes Profil verwenden"; 19 | radioButton1.Text = "Ein Profil für alle Versionen verwenden"; 20 | break; 21 | case "ru": 22 | radioButton3.Text = "Использовать стандартное месторасположение профиля (readme)"; 23 | radioButton2.Text = "Использовать разные папки для профилей разных версий"; 24 | radioButton1.Text = "Использовать один профиль для всех версий"; 25 | break; 26 | default: 27 | radioButton3.Text = "Use the standard profile of Opera"; 28 | radioButton2.Text = "Use a separate profile for each version"; 29 | radioButton1.Text = "Use one profile for all versions"; 30 | break; 31 | } 32 | } 33 | private void Button1_Click(object sender, System.EventArgs e) 34 | { 35 | if (radioButton1.Checked) 36 | { 37 | System.IO.File.WriteAllText(applicationPath + "\\Opera\\Profile.txt", "--user-data-dir=\"profile\""); 38 | this.Close(); 39 | } 40 | if (radioButton2.Checked) 41 | { 42 | System.IO.File.WriteAllText(applicationPath + "\\Opera\\Profile.txt", "--user-data-dir=\"Opera\\profile\""); 43 | this.Close(); 44 | } 45 | if (radioButton3.Checked) 46 | { 47 | System.IO.File.WriteAllText(applicationPath + "\\Opera\\Profile.txt", ""); 48 | this.Close(); 49 | } 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Forms; 4 | 5 | namespace Opera_GX_x64_Launcher 6 | { 7 | public partial class Form1 : Form 8 | { 9 | private readonly string applicationPath = Application.StartupPath; 10 | public Form1() 11 | { 12 | CultureInfo culture = CultureInfo.CurrentUICulture; 13 | InitializeComponent(); 14 | switch (culture.TwoLetterISOLanguageName) 15 | { 16 | case "de": 17 | radioButton3.Text = "Das Standard Profil von Opera verwenden"; 18 | radioButton2.Text = "Für jede Version ein eigenes Profil verwenden"; 19 | radioButton1.Text = "Ein Profil für alle Versionen verwenden"; 20 | break; 21 | case "ru": 22 | radioButton3.Text = "Использовать стандартное месторасположение профиля (readme)"; 23 | radioButton2.Text = "Использовать разные папки для профилей разных версий"; 24 | radioButton1.Text = "Использовать один профиль для всех версий"; 25 | break; 26 | default: 27 | radioButton3.Text = "Use the standard profile of Opera"; 28 | radioButton2.Text = "Use a separate profile for each version"; 29 | radioButton1.Text = "Use one profile for all versions"; 30 | break; 31 | } 32 | } 33 | private void Button1_Click(object sender, System.EventArgs e) 34 | { 35 | if (radioButton1.Checked) 36 | { 37 | System.IO.File.WriteAllText(applicationPath + "\\Opera GX x64\\Profile.txt", "--user-data-dir=\"profile\""); 38 | this.Close(); 39 | } 40 | if (radioButton2.Checked) 41 | { 42 | System.IO.File.WriteAllText(applicationPath + "\\Opera GX x64\\Profile.txt", "--user-data-dir=\"Opera GX x64\\profile\""); 43 | this.Close(); 44 | } 45 | if (radioButton3.Checked) 46 | { 47 | System.IO.File.WriteAllText(applicationPath + "\\Opera GX x64\\Profile.txt", ""); 48 | this.Close(); 49 | } 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Forms; 4 | 5 | namespace Opera_GX_x86_Launcher 6 | { 7 | public partial class Form1 : Form 8 | { 9 | private readonly string applicationPath = Application.StartupPath; 10 | public Form1() 11 | { 12 | CultureInfo culture = CultureInfo.CurrentUICulture; 13 | InitializeComponent(); 14 | switch (culture.TwoLetterISOLanguageName) 15 | { 16 | case "de": 17 | radioButton3.Text = "Das Standard Profil von Opera verwenden"; 18 | radioButton2.Text = "Für jede Version ein eigenes Profil verwenden"; 19 | radioButton1.Text = "Ein Profil für alle Versionen verwenden"; 20 | break; 21 | case "ru": 22 | radioButton3.Text = "Использовать стандартное месторасположение профиля (readme)"; 23 | radioButton2.Text = "Использовать разные папки для профилей разных версий"; 24 | radioButton1.Text = "Использовать один профиль для всех версий"; 25 | break; 26 | default: 27 | radioButton3.Text = "Use the standard profile of Opera"; 28 | radioButton2.Text = "Use a separate profile for each version"; 29 | radioButton1.Text = "Use one profile for all versions"; 30 | break; 31 | } 32 | } 33 | private void Button1_Click(object sender, System.EventArgs e) 34 | { 35 | if (radioButton1.Checked) 36 | { 37 | System.IO.File.WriteAllText(applicationPath + "\\Opera GX x86\\Profile.txt", "--user-data-dir=\"profile\""); 38 | this.Close(); 39 | } 40 | if (radioButton2.Checked) 41 | { 42 | System.IO.File.WriteAllText(applicationPath + "\\Opera GX x86\\Profile.txt", "--user-data-dir=\"Opera GX x86\\profile\""); 43 | this.Close(); 44 | } 45 | if (radioButton3.Checked) 46 | { 47 | System.IO.File.WriteAllText(applicationPath + "\\Opera GX x86\\Profile.txt", ""); 48 | this.Close(); 49 | } 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Forms; 4 | 5 | namespace Opera_Dev_x64_Launcher 6 | { 7 | public partial class Form1 : Form 8 | { 9 | private readonly string applicationPath = Application.StartupPath; 10 | public Form1() 11 | { 12 | CultureInfo culture = CultureInfo.CurrentUICulture; 13 | InitializeComponent(); 14 | switch (culture.TwoLetterISOLanguageName) 15 | { 16 | case "de": 17 | radioButton3.Text = "Das Standard Profil von Opera verwenden"; 18 | radioButton2.Text = "Für jede Version ein eigenes Profil verwenden"; 19 | radioButton1.Text = "Ein Profil für alle Versionen verwenden"; 20 | break; 21 | case "ru": 22 | radioButton3.Text = "Использовать стандартное месторасположение профиля (readme)"; 23 | radioButton2.Text = "Использовать разные папки для профилей разных версий"; 24 | radioButton1.Text = "Использовать один профиль для всех версий"; 25 | break; 26 | default: 27 | radioButton3.Text = "Use the standard profile of Opera"; 28 | radioButton2.Text = "Use a separate profile for each version"; 29 | radioButton1.Text = "Use one profile for all versions"; 30 | break; 31 | } 32 | } 33 | private void Button1_Click(object sender, System.EventArgs e) 34 | { 35 | if (radioButton1.Checked) 36 | { 37 | System.IO.File.WriteAllText(applicationPath + "\\Opera Dev x64\\Profile.txt", "--user-data-dir=\"profile\""); 38 | this.Close(); 39 | } 40 | if (radioButton2.Checked) 41 | { 42 | System.IO.File.WriteAllText(applicationPath + "\\Opera Dev x64\\Profile.txt", "--user-data-dir=\"Opera Dev x64\\profile\""); 43 | this.Close(); 44 | } 45 | if (radioButton3.Checked) 46 | { 47 | System.IO.File.WriteAllText(applicationPath + "\\Opera Dev x64\\Profile.txt", ""); 48 | this.Close(); 49 | } 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Forms; 4 | 5 | namespace Opera_Dev_x86_Launcher 6 | { 7 | public partial class Form1 : Form 8 | { 9 | private readonly string applicationPath = Application.StartupPath; 10 | public Form1() 11 | { 12 | CultureInfo culture = CultureInfo.CurrentUICulture; 13 | InitializeComponent(); 14 | switch (culture.TwoLetterISOLanguageName) 15 | { 16 | case "de": 17 | radioButton3.Text = "Das Standard Profil von Opera verwenden"; 18 | radioButton2.Text = "Für jede Version ein eigenes Profil verwenden"; 19 | radioButton1.Text = "Ein Profil für alle Versionen verwenden"; 20 | break; 21 | case "ru": 22 | radioButton3.Text = "Использовать стандартное месторасположение профиля (readme)"; 23 | radioButton2.Text = "Использовать разные папки для профилей разных версий"; 24 | radioButton1.Text = "Использовать один профиль для всех версий"; 25 | break; 26 | default: 27 | radioButton3.Text = "Use the standard profile of Opera"; 28 | radioButton2.Text = "Use a separate profile for each version"; 29 | radioButton1.Text = "Use one profile for all versions"; 30 | break; 31 | } 32 | } 33 | private void Button1_Click(object sender, System.EventArgs e) 34 | { 35 | if (radioButton1.Checked) 36 | { 37 | System.IO.File.WriteAllText(applicationPath + "\\Opera Dev x86\\Profile.txt", "--user-data-dir=\"profile\""); 38 | this.Close(); 39 | } 40 | if (radioButton2.Checked) 41 | { 42 | System.IO.File.WriteAllText(applicationPath + "\\Opera Dev x86\\Profile.txt", "--user-data-dir=\"Opera Dev x86\\profile\""); 43 | this.Close(); 44 | } 45 | if (radioButton3.Checked) 46 | { 47 | System.IO.File.WriteAllText(applicationPath + "\\Opera Dev x86\\Profile.txt", ""); 48 | this.Close(); 49 | } 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Forms; 4 | 5 | namespace Opera_Beta_x64_Launcher 6 | { 7 | public partial class Form1 : Form 8 | { 9 | private readonly string applicationPath = Application.StartupPath; 10 | public Form1() 11 | { 12 | CultureInfo culture = CultureInfo.CurrentUICulture; 13 | InitializeComponent(); 14 | switch (culture.TwoLetterISOLanguageName) 15 | { 16 | case "de": 17 | radioButton3.Text = "Das Standard Profil von Opera verwenden"; 18 | radioButton2.Text = "Für jede Version ein eigenes Profil verwenden"; 19 | radioButton1.Text = "Ein Profil für alle Versionen verwenden"; 20 | break; 21 | case "ru": 22 | radioButton3.Text = "Использовать стандартное месторасположение профиля (readme)"; 23 | radioButton2.Text = "Использовать разные папки для профилей разных версий"; 24 | radioButton1.Text = "Использовать один профиль для всех версий"; 25 | break; 26 | default: 27 | radioButton3.Text = "Use the standard profile of Opera"; 28 | radioButton2.Text = "Use a separate profile for each version"; 29 | radioButton1.Text = "Use one profile for all versions"; 30 | break; 31 | } 32 | } 33 | private void Button1_Click(object sender, System.EventArgs e) 34 | { 35 | if (radioButton1.Checked) 36 | { 37 | System.IO.File.WriteAllText(applicationPath + "\\Opera Beta x64\\Profile.txt", "--user-data-dir=\"profile\""); 38 | this.Close(); 39 | } 40 | if (radioButton2.Checked) 41 | { 42 | System.IO.File.WriteAllText(applicationPath + "\\Opera Beta x64\\Profile.txt", "--user-data-dir=\"Opera Beta x64\\profile\""); 43 | this.Close(); 44 | } 45 | if (radioButton3.Checked) 46 | { 47 | System.IO.File.WriteAllText(applicationPath + "\\Opera Beta x64\\Profile.txt", ""); 48 | this.Close(); 49 | } 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x86 Launcher/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Forms; 4 | 5 | namespace Opera_Beta_x86_Launcher 6 | { 7 | public partial class Form1 : Form 8 | { 9 | private readonly string applicationPath = Application.StartupPath; 10 | public Form1() 11 | { 12 | CultureInfo culture = CultureInfo.CurrentUICulture; 13 | InitializeComponent(); 14 | switch (culture.TwoLetterISOLanguageName) 15 | { 16 | case "de": 17 | radioButton3.Text = "Das Standard Profil von Opera verwenden"; 18 | radioButton2.Text = "Für jede Version ein eigenes Profil verwenden"; 19 | radioButton1.Text = "Ein Profil für alle Versionen verwenden"; 20 | break; 21 | case "ru": 22 | radioButton3.Text = "Использовать стандартное месторасположение профиля (readme)"; 23 | radioButton2.Text = "Использовать разные папки для профилей разных версий"; 24 | radioButton1.Text = "Использовать один профиль для всех версий"; 25 | break; 26 | default: 27 | radioButton3.Text = "Use the standard profile of Opera"; 28 | radioButton2.Text = "Use a separate profile for each version"; 29 | radioButton1.Text = "Use one profile for all versions"; 30 | break; 31 | } 32 | } 33 | private void Button1_Click(object sender, System.EventArgs e) 34 | { 35 | if (radioButton1.Checked) 36 | { 37 | System.IO.File.WriteAllText(applicationPath + "\\Opera Beta x86\\Profile.txt", "--user-data-dir=\"profile\""); 38 | this.Close(); 39 | } 40 | if (radioButton2.Checked) 41 | { 42 | System.IO.File.WriteAllText(applicationPath + "\\Opera Beta x86\\Profile.txt", "--user-data-dir=\"Opera Beta x86\\profile\""); 43 | this.Close(); 44 | } 45 | if (radioButton3.Checked) 46 | { 47 | System.IO.File.WriteAllText(applicationPath + "\\Opera Beta x86\\Profile.txt", ""); 48 | this.Close(); 49 | } 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x64 Launcher/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Forms; 4 | 5 | namespace Opera_Stable_x64_Launcher 6 | { 7 | public partial class Form1 : Form 8 | { 9 | private readonly string applicationPath = Application.StartupPath; 10 | public Form1() 11 | { 12 | CultureInfo culture = CultureInfo.CurrentUICulture; 13 | InitializeComponent(); 14 | switch (culture.TwoLetterISOLanguageName) 15 | { 16 | case "de": 17 | radioButton3.Text = "Das Standard Profil von Opera verwenden"; 18 | radioButton2.Text = "Für jede Version ein eigenes Profil verwenden"; 19 | radioButton1.Text = "Ein Profil für alle Versionen verwenden"; 20 | break; 21 | case "ru": 22 | radioButton3.Text = "Использовать стандартное месторасположение профиля (readme)"; 23 | radioButton2.Text = "Использовать разные папки для профилей разных версий"; 24 | radioButton1.Text = "Использовать один профиль для всех версий"; 25 | break; 26 | default: 27 | radioButton3.Text = "Use the standard profile of Opera"; 28 | radioButton2.Text = "Use a separate profile for each version"; 29 | radioButton1.Text = "Use one profile for all versions"; 30 | break; 31 | } 32 | } 33 | private void Button1_Click(object sender, System.EventArgs e) 34 | { 35 | if (radioButton1.Checked) 36 | { 37 | System.IO.File.WriteAllText(applicationPath + "\\Opera Stable x64\\Profile.txt", "--user-data-dir=\"profile\""); 38 | this.Close(); 39 | } 40 | if (radioButton2.Checked) 41 | { 42 | System.IO.File.WriteAllText(applicationPath + "\\Opera Stable x64\\Profile.txt", "--user-data-dir=\"Opera Stable x64\\profile\""); 43 | this.Close(); 44 | } 45 | if (radioButton3.Checked) 46 | { 47 | System.IO.File.WriteAllText(applicationPath + "\\Opera Stable x64\\Profile.txt", ""); 48 | this.Close(); 49 | } 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x86 Launcher/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Forms; 4 | 5 | namespace Opera_Stable_x86_Launcher 6 | { 7 | public partial class Form1 : Form 8 | { 9 | private readonly string applicationPath = Application.StartupPath; 10 | public Form1() 11 | { 12 | CultureInfo culture = CultureInfo.CurrentUICulture; 13 | InitializeComponent(); 14 | switch (culture.TwoLetterISOLanguageName) 15 | { 16 | case "de": 17 | radioButton3.Text = "Das Standard Profil von Opera verwenden"; 18 | radioButton2.Text = "Für jede Version ein eigenes Profil verwenden"; 19 | radioButton1.Text = "Ein Profil für alle Versionen verwenden"; 20 | break; 21 | case "ru": 22 | radioButton3.Text = "Использовать стандартное месторасположение профиля (readme)"; 23 | radioButton2.Text = "Использовать разные папки для профилей разных версий"; 24 | radioButton1.Text = "Использовать один профиль для всех версий"; 25 | break; 26 | default: 27 | radioButton3.Text = "Use the standard profile of Opera"; 28 | radioButton2.Text = "Use a separate profile for each version"; 29 | radioButton1.Text = "Use one profile for all versions"; 30 | break; 31 | } 32 | } 33 | private void Button1_Click(object sender, System.EventArgs e) 34 | { 35 | if (radioButton1.Checked) 36 | { 37 | System.IO.File.WriteAllText(applicationPath + "\\Opera Stable x86\\Profile.txt", "--user-data-dir=\"profile\""); 38 | this.Close(); 39 | } 40 | if (radioButton2.Checked) 41 | { 42 | System.IO.File.WriteAllText(applicationPath + "\\Opera Stable x86\\Profile.txt", "--user-data-dir=\"Opera Stable x86\\profile\""); 43 | this.Close(); 44 | } 45 | if (radioButton3.Checked) 46 | { 47 | System.IO.File.WriteAllText(applicationPath + "\\Opera Stable x86\\Profile.txt", ""); 48 | this.Close(); 49 | } 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Launcher.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. 17 | /// 18 | // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert 19 | // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. 20 | // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen 21 | // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Opera_Stable_x64_Launcher.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle 51 | /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Dev_x64_Launcher.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. 17 | /// 18 | // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert 19 | // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. 20 | // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen 21 | // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Opera_Dev_x64_Launcher.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle 51 | /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Dev_x86_Launcher.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. 17 | /// 18 | // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert 19 | // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. 20 | // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen 21 | // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Opera_Dev_x86_Launcher.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle 51 | /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_GX_x64_Launcher.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. 17 | /// 18 | // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert 19 | // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. 20 | // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen 21 | // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Opera_GX_x64_Launcher.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle 51 | /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_GX_x86_Launcher.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. 17 | /// 18 | // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert 19 | // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. 20 | // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen 21 | // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Opera_GX_x86_Launcher.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle 51 | /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Beta_x64_Launcher.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. 17 | /// 18 | // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert 19 | // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. 20 | // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen 21 | // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Opera_Beta_x64_Launcher.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle 51 | /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x86 Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Beta_x86_Launcher.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. 17 | /// 18 | // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert 19 | // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. 20 | // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen 21 | // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Opera_Beta_x86_Launcher.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle 51 | /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x64 Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Stable_x64_Launcher.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. 17 | /// 18 | // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert 19 | // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. 20 | // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen 21 | // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Opera_Stable_x64_Launcher.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle 51 | /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x86 Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Opera_Stable_x86_Launcher.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. 17 | /// 18 | // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert 19 | // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. 20 | // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen 21 | // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Opera_Stable_x86_Launcher.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle 51 | /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Dieser Code wurde von einem Tool generiert. 4 | // Laufzeitversion:4.0.30319.42000 5 | // 6 | // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 7 | // der Code erneut generiert wird. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Portable_Opera_Updater.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. 17 | /// 18 | // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert 19 | // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. 20 | // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen 21 | // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Portable_Opera_Updater.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle 51 | /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Opera_Launcher 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Erforderliche Designervariable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Verwendete Ressourcen bereinigen. 12 | /// 13 | /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Vom Windows Form-Designer generierter Code 24 | 25 | /// 26 | /// Erforderliche Methode für die Designerunterstützung. 27 | /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 32 | this.button1 = new System.Windows.Forms.Button(); 33 | this.radioButton1 = new System.Windows.Forms.RadioButton(); 34 | this.radioButton2 = new System.Windows.Forms.RadioButton(); 35 | this.radioButton3 = new System.Windows.Forms.RadioButton(); 36 | this.SuspendLayout(); 37 | // 38 | // button1 39 | // 40 | resources.ApplyResources(this.button1, "button1"); 41 | this.button1.Name = "button1"; 42 | this.button1.UseVisualStyleBackColor = true; 43 | this.button1.Click += new System.EventHandler(this.Button1_Click); 44 | // 45 | // radioButton1 46 | // 47 | resources.ApplyResources(this.radioButton1, "radioButton1"); 48 | this.radioButton1.Name = "radioButton1"; 49 | this.radioButton1.UseVisualStyleBackColor = true; 50 | // 51 | // radioButton2 52 | // 53 | resources.ApplyResources(this.radioButton2, "radioButton2"); 54 | this.radioButton2.Checked = true; 55 | this.radioButton2.Name = "radioButton2"; 56 | this.radioButton2.TabStop = true; 57 | this.radioButton2.UseVisualStyleBackColor = true; 58 | // 59 | // radioButton3 60 | // 61 | resources.ApplyResources(this.radioButton3, "radioButton3"); 62 | this.radioButton3.Name = "radioButton3"; 63 | this.radioButton3.UseVisualStyleBackColor = true; 64 | // 65 | // Form1 66 | // 67 | resources.ApplyResources(this, "$this"); 68 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 69 | this.Controls.Add(this.radioButton3); 70 | this.Controls.Add(this.radioButton2); 71 | this.Controls.Add(this.radioButton1); 72 | this.Controls.Add(this.button1); 73 | this.Name = "Form1"; 74 | this.ResumeLayout(false); 75 | this.PerformLayout(); 76 | 77 | } 78 | 79 | #endregion 80 | private System.Windows.Forms.Button button1; 81 | private System.Windows.Forms.RadioButton radioButton1; 82 | private System.Windows.Forms.RadioButton radioButton2; 83 | private System.Windows.Forms.RadioButton radioButton3; 84 | } 85 | } 86 | 87 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Opera_Beta_x64_Launcher 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Erforderliche Designervariable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Verwendete Ressourcen bereinigen. 12 | /// 13 | /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Vom Windows Form-Designer generierter Code 24 | 25 | /// 26 | /// Erforderliche Methode für die Designerunterstützung. 27 | /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 32 | this.button1 = new System.Windows.Forms.Button(); 33 | this.radioButton1 = new System.Windows.Forms.RadioButton(); 34 | this.radioButton2 = new System.Windows.Forms.RadioButton(); 35 | this.radioButton3 = new System.Windows.Forms.RadioButton(); 36 | this.SuspendLayout(); 37 | // 38 | // button1 39 | // 40 | resources.ApplyResources(this.button1, "button1"); 41 | this.button1.Name = "button1"; 42 | this.button1.UseVisualStyleBackColor = true; 43 | this.button1.Click += new System.EventHandler(this.Button1_Click); 44 | // 45 | // radioButton1 46 | // 47 | resources.ApplyResources(this.radioButton1, "radioButton1"); 48 | this.radioButton1.Name = "radioButton1"; 49 | this.radioButton1.UseVisualStyleBackColor = true; 50 | // 51 | // radioButton2 52 | // 53 | resources.ApplyResources(this.radioButton2, "radioButton2"); 54 | this.radioButton2.Checked = true; 55 | this.radioButton2.Name = "radioButton2"; 56 | this.radioButton2.TabStop = true; 57 | this.radioButton2.UseVisualStyleBackColor = true; 58 | // 59 | // radioButton3 60 | // 61 | resources.ApplyResources(this.radioButton3, "radioButton3"); 62 | this.radioButton3.Name = "radioButton3"; 63 | this.radioButton3.UseVisualStyleBackColor = true; 64 | // 65 | // Form1 66 | // 67 | resources.ApplyResources(this, "$this"); 68 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 69 | this.Controls.Add(this.radioButton3); 70 | this.Controls.Add(this.radioButton2); 71 | this.Controls.Add(this.radioButton1); 72 | this.Controls.Add(this.button1); 73 | this.Name = "Form1"; 74 | this.ResumeLayout(false); 75 | this.PerformLayout(); 76 | 77 | } 78 | 79 | #endregion 80 | private System.Windows.Forms.Button button1; 81 | private System.Windows.Forms.RadioButton radioButton1; 82 | private System.Windows.Forms.RadioButton radioButton2; 83 | private System.Windows.Forms.RadioButton radioButton3; 84 | } 85 | } 86 | 87 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x86 Launcher/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Opera_Beta_x86_Launcher 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Erforderliche Designervariable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Verwendete Ressourcen bereinigen. 12 | /// 13 | /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Vom Windows Form-Designer generierter Code 24 | 25 | /// 26 | /// Erforderliche Methode für die Designerunterstützung. 27 | /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 32 | this.button1 = new System.Windows.Forms.Button(); 33 | this.radioButton1 = new System.Windows.Forms.RadioButton(); 34 | this.radioButton2 = new System.Windows.Forms.RadioButton(); 35 | this.radioButton3 = new System.Windows.Forms.RadioButton(); 36 | this.SuspendLayout(); 37 | // 38 | // button1 39 | // 40 | resources.ApplyResources(this.button1, "button1"); 41 | this.button1.Name = "button1"; 42 | this.button1.UseVisualStyleBackColor = true; 43 | this.button1.Click += new System.EventHandler(this.Button1_Click); 44 | // 45 | // radioButton1 46 | // 47 | resources.ApplyResources(this.radioButton1, "radioButton1"); 48 | this.radioButton1.Name = "radioButton1"; 49 | this.radioButton1.UseVisualStyleBackColor = true; 50 | // 51 | // radioButton2 52 | // 53 | resources.ApplyResources(this.radioButton2, "radioButton2"); 54 | this.radioButton2.Checked = true; 55 | this.radioButton2.Name = "radioButton2"; 56 | this.radioButton2.TabStop = true; 57 | this.radioButton2.UseVisualStyleBackColor = true; 58 | // 59 | // radioButton3 60 | // 61 | resources.ApplyResources(this.radioButton3, "radioButton3"); 62 | this.radioButton3.Name = "radioButton3"; 63 | this.radioButton3.UseVisualStyleBackColor = true; 64 | // 65 | // Form1 66 | // 67 | resources.ApplyResources(this, "$this"); 68 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 69 | this.Controls.Add(this.radioButton3); 70 | this.Controls.Add(this.radioButton2); 71 | this.Controls.Add(this.radioButton1); 72 | this.Controls.Add(this.button1); 73 | this.Name = "Form1"; 74 | this.ResumeLayout(false); 75 | this.PerformLayout(); 76 | 77 | } 78 | 79 | #endregion 80 | private System.Windows.Forms.Button button1; 81 | private System.Windows.Forms.RadioButton radioButton1; 82 | private System.Windows.Forms.RadioButton radioButton2; 83 | private System.Windows.Forms.RadioButton radioButton3; 84 | } 85 | } 86 | 87 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Opera_Dev_x64_Launcher 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Erforderliche Designervariable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Verwendete Ressourcen bereinigen. 12 | /// 13 | /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Vom Windows Form-Designer generierter Code 24 | 25 | /// 26 | /// Erforderliche Methode für die Designerunterstützung. 27 | /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 32 | this.button1 = new System.Windows.Forms.Button(); 33 | this.radioButton1 = new System.Windows.Forms.RadioButton(); 34 | this.radioButton2 = new System.Windows.Forms.RadioButton(); 35 | this.radioButton3 = new System.Windows.Forms.RadioButton(); 36 | this.SuspendLayout(); 37 | // 38 | // button1 39 | // 40 | resources.ApplyResources(this.button1, "button1"); 41 | this.button1.Name = "button1"; 42 | this.button1.UseVisualStyleBackColor = true; 43 | this.button1.Click += new System.EventHandler(this.Button1_Click); 44 | // 45 | // radioButton1 46 | // 47 | resources.ApplyResources(this.radioButton1, "radioButton1"); 48 | this.radioButton1.Name = "radioButton1"; 49 | this.radioButton1.UseVisualStyleBackColor = true; 50 | // 51 | // radioButton2 52 | // 53 | resources.ApplyResources(this.radioButton2, "radioButton2"); 54 | this.radioButton2.Checked = true; 55 | this.radioButton2.Name = "radioButton2"; 56 | this.radioButton2.TabStop = true; 57 | this.radioButton2.UseVisualStyleBackColor = true; 58 | // 59 | // radioButton3 60 | // 61 | resources.ApplyResources(this.radioButton3, "radioButton3"); 62 | this.radioButton3.Name = "radioButton3"; 63 | this.radioButton3.UseVisualStyleBackColor = true; 64 | // 65 | // Form1 66 | // 67 | resources.ApplyResources(this, "$this"); 68 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 69 | this.Controls.Add(this.radioButton3); 70 | this.Controls.Add(this.radioButton2); 71 | this.Controls.Add(this.radioButton1); 72 | this.Controls.Add(this.button1); 73 | this.Name = "Form1"; 74 | this.ResumeLayout(false); 75 | this.PerformLayout(); 76 | 77 | } 78 | 79 | #endregion 80 | private System.Windows.Forms.Button button1; 81 | private System.Windows.Forms.RadioButton radioButton1; 82 | private System.Windows.Forms.RadioButton radioButton2; 83 | private System.Windows.Forms.RadioButton radioButton3; 84 | } 85 | } 86 | 87 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Opera_Dev_x86_Launcher 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Erforderliche Designervariable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Verwendete Ressourcen bereinigen. 12 | /// 13 | /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Vom Windows Form-Designer generierter Code 24 | 25 | /// 26 | /// Erforderliche Methode für die Designerunterstützung. 27 | /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 32 | this.button1 = new System.Windows.Forms.Button(); 33 | this.radioButton1 = new System.Windows.Forms.RadioButton(); 34 | this.radioButton2 = new System.Windows.Forms.RadioButton(); 35 | this.radioButton3 = new System.Windows.Forms.RadioButton(); 36 | this.SuspendLayout(); 37 | // 38 | // button1 39 | // 40 | resources.ApplyResources(this.button1, "button1"); 41 | this.button1.Name = "button1"; 42 | this.button1.UseVisualStyleBackColor = true; 43 | this.button1.Click += new System.EventHandler(this.Button1_Click); 44 | // 45 | // radioButton1 46 | // 47 | resources.ApplyResources(this.radioButton1, "radioButton1"); 48 | this.radioButton1.Name = "radioButton1"; 49 | this.radioButton1.UseVisualStyleBackColor = true; 50 | // 51 | // radioButton2 52 | // 53 | resources.ApplyResources(this.radioButton2, "radioButton2"); 54 | this.radioButton2.Checked = true; 55 | this.radioButton2.Name = "radioButton2"; 56 | this.radioButton2.TabStop = true; 57 | this.radioButton2.UseVisualStyleBackColor = true; 58 | // 59 | // radioButton3 60 | // 61 | resources.ApplyResources(this.radioButton3, "radioButton3"); 62 | this.radioButton3.Name = "radioButton3"; 63 | this.radioButton3.UseVisualStyleBackColor = true; 64 | // 65 | // Form1 66 | // 67 | resources.ApplyResources(this, "$this"); 68 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 69 | this.Controls.Add(this.radioButton3); 70 | this.Controls.Add(this.radioButton2); 71 | this.Controls.Add(this.radioButton1); 72 | this.Controls.Add(this.button1); 73 | this.Name = "Form1"; 74 | this.ResumeLayout(false); 75 | this.PerformLayout(); 76 | 77 | } 78 | 79 | #endregion 80 | private System.Windows.Forms.Button button1; 81 | private System.Windows.Forms.RadioButton radioButton1; 82 | private System.Windows.Forms.RadioButton radioButton2; 83 | private System.Windows.Forms.RadioButton radioButton3; 84 | } 85 | } 86 | 87 | -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Opera_GX_x64_Launcher 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Erforderliche Designervariable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Verwendete Ressourcen bereinigen. 12 | /// 13 | /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Vom Windows Form-Designer generierter Code 24 | 25 | /// 26 | /// Erforderliche Methode für die Designerunterstützung. 27 | /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 32 | this.button1 = new System.Windows.Forms.Button(); 33 | this.radioButton1 = new System.Windows.Forms.RadioButton(); 34 | this.radioButton2 = new System.Windows.Forms.RadioButton(); 35 | this.radioButton3 = new System.Windows.Forms.RadioButton(); 36 | this.SuspendLayout(); 37 | // 38 | // button1 39 | // 40 | resources.ApplyResources(this.button1, "button1"); 41 | this.button1.Name = "button1"; 42 | this.button1.UseVisualStyleBackColor = true; 43 | this.button1.Click += new System.EventHandler(this.Button1_Click); 44 | // 45 | // radioButton1 46 | // 47 | resources.ApplyResources(this.radioButton1, "radioButton1"); 48 | this.radioButton1.Name = "radioButton1"; 49 | this.radioButton1.UseVisualStyleBackColor = true; 50 | // 51 | // radioButton2 52 | // 53 | resources.ApplyResources(this.radioButton2, "radioButton2"); 54 | this.radioButton2.Checked = true; 55 | this.radioButton2.Name = "radioButton2"; 56 | this.radioButton2.TabStop = true; 57 | this.radioButton2.UseVisualStyleBackColor = true; 58 | // 59 | // radioButton3 60 | // 61 | resources.ApplyResources(this.radioButton3, "radioButton3"); 62 | this.radioButton3.Name = "radioButton3"; 63 | this.radioButton3.UseVisualStyleBackColor = true; 64 | // 65 | // Form1 66 | // 67 | resources.ApplyResources(this, "$this"); 68 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 69 | this.Controls.Add(this.radioButton3); 70 | this.Controls.Add(this.radioButton2); 71 | this.Controls.Add(this.radioButton1); 72 | this.Controls.Add(this.button1); 73 | this.Name = "Form1"; 74 | this.ResumeLayout(false); 75 | this.PerformLayout(); 76 | 77 | } 78 | 79 | #endregion 80 | private System.Windows.Forms.Button button1; 81 | private System.Windows.Forms.RadioButton radioButton1; 82 | private System.Windows.Forms.RadioButton radioButton2; 83 | private System.Windows.Forms.RadioButton radioButton3; 84 | } 85 | } 86 | 87 | -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Opera_GX_x86_Launcher 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Erforderliche Designervariable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Verwendete Ressourcen bereinigen. 12 | /// 13 | /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Vom Windows Form-Designer generierter Code 24 | 25 | /// 26 | /// Erforderliche Methode für die Designerunterstützung. 27 | /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 32 | this.button1 = new System.Windows.Forms.Button(); 33 | this.radioButton1 = new System.Windows.Forms.RadioButton(); 34 | this.radioButton2 = new System.Windows.Forms.RadioButton(); 35 | this.radioButton3 = new System.Windows.Forms.RadioButton(); 36 | this.SuspendLayout(); 37 | // 38 | // button1 39 | // 40 | resources.ApplyResources(this.button1, "button1"); 41 | this.button1.Name = "button1"; 42 | this.button1.UseVisualStyleBackColor = true; 43 | this.button1.Click += new System.EventHandler(this.Button1_Click); 44 | // 45 | // radioButton1 46 | // 47 | resources.ApplyResources(this.radioButton1, "radioButton1"); 48 | this.radioButton1.Name = "radioButton1"; 49 | this.radioButton1.UseVisualStyleBackColor = true; 50 | // 51 | // radioButton2 52 | // 53 | resources.ApplyResources(this.radioButton2, "radioButton2"); 54 | this.radioButton2.Checked = true; 55 | this.radioButton2.Name = "radioButton2"; 56 | this.radioButton2.TabStop = true; 57 | this.radioButton2.UseVisualStyleBackColor = true; 58 | // 59 | // radioButton3 60 | // 61 | resources.ApplyResources(this.radioButton3, "radioButton3"); 62 | this.radioButton3.Name = "radioButton3"; 63 | this.radioButton3.UseVisualStyleBackColor = true; 64 | // 65 | // Form1 66 | // 67 | resources.ApplyResources(this, "$this"); 68 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 69 | this.Controls.Add(this.radioButton3); 70 | this.Controls.Add(this.radioButton2); 71 | this.Controls.Add(this.radioButton1); 72 | this.Controls.Add(this.button1); 73 | this.Name = "Form1"; 74 | this.ResumeLayout(false); 75 | this.PerformLayout(); 76 | 77 | } 78 | 79 | #endregion 80 | private System.Windows.Forms.Button button1; 81 | private System.Windows.Forms.RadioButton radioButton1; 82 | private System.Windows.Forms.RadioButton radioButton2; 83 | private System.Windows.Forms.RadioButton radioButton3; 84 | } 85 | } 86 | 87 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x64 Launcher/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Opera_Stable_x64_Launcher 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Erforderliche Designervariable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Verwendete Ressourcen bereinigen. 12 | /// 13 | /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Vom Windows Form-Designer generierter Code 24 | 25 | /// 26 | /// Erforderliche Methode für die Designerunterstützung. 27 | /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 32 | this.button1 = new System.Windows.Forms.Button(); 33 | this.radioButton1 = new System.Windows.Forms.RadioButton(); 34 | this.radioButton2 = new System.Windows.Forms.RadioButton(); 35 | this.radioButton3 = new System.Windows.Forms.RadioButton(); 36 | this.SuspendLayout(); 37 | // 38 | // button1 39 | // 40 | resources.ApplyResources(this.button1, "button1"); 41 | this.button1.Name = "button1"; 42 | this.button1.UseVisualStyleBackColor = true; 43 | this.button1.Click += new System.EventHandler(this.Button1_Click); 44 | // 45 | // radioButton1 46 | // 47 | resources.ApplyResources(this.radioButton1, "radioButton1"); 48 | this.radioButton1.Name = "radioButton1"; 49 | this.radioButton1.UseVisualStyleBackColor = true; 50 | // 51 | // radioButton2 52 | // 53 | resources.ApplyResources(this.radioButton2, "radioButton2"); 54 | this.radioButton2.Checked = true; 55 | this.radioButton2.Name = "radioButton2"; 56 | this.radioButton2.TabStop = true; 57 | this.radioButton2.UseVisualStyleBackColor = true; 58 | // 59 | // radioButton3 60 | // 61 | resources.ApplyResources(this.radioButton3, "radioButton3"); 62 | this.radioButton3.Name = "radioButton3"; 63 | this.radioButton3.UseVisualStyleBackColor = true; 64 | // 65 | // Form1 66 | // 67 | resources.ApplyResources(this, "$this"); 68 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 69 | this.Controls.Add(this.radioButton3); 70 | this.Controls.Add(this.radioButton2); 71 | this.Controls.Add(this.radioButton1); 72 | this.Controls.Add(this.button1); 73 | this.Name = "Form1"; 74 | this.ResumeLayout(false); 75 | this.PerformLayout(); 76 | 77 | } 78 | 79 | #endregion 80 | private System.Windows.Forms.Button button1; 81 | private System.Windows.Forms.RadioButton radioButton1; 82 | private System.Windows.Forms.RadioButton radioButton2; 83 | private System.Windows.Forms.RadioButton radioButton3; 84 | } 85 | } 86 | 87 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x86 Launcher/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Opera_Stable_x86_Launcher 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Erforderliche Designervariable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Verwendete Ressourcen bereinigen. 12 | /// 13 | /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Vom Windows Form-Designer generierter Code 24 | 25 | /// 26 | /// Erforderliche Methode für die Designerunterstützung. 27 | /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 32 | this.button1 = new System.Windows.Forms.Button(); 33 | this.radioButton1 = new System.Windows.Forms.RadioButton(); 34 | this.radioButton2 = new System.Windows.Forms.RadioButton(); 35 | this.radioButton3 = new System.Windows.Forms.RadioButton(); 36 | this.SuspendLayout(); 37 | // 38 | // button1 39 | // 40 | resources.ApplyResources(this.button1, "button1"); 41 | this.button1.Name = "button1"; 42 | this.button1.UseVisualStyleBackColor = true; 43 | this.button1.Click += new System.EventHandler(this.Button1_Click); 44 | // 45 | // radioButton1 46 | // 47 | resources.ApplyResources(this.radioButton1, "radioButton1"); 48 | this.radioButton1.Name = "radioButton1"; 49 | this.radioButton1.UseVisualStyleBackColor = true; 50 | // 51 | // radioButton2 52 | // 53 | resources.ApplyResources(this.radioButton2, "radioButton2"); 54 | this.radioButton2.Checked = true; 55 | this.radioButton2.Name = "radioButton2"; 56 | this.radioButton2.TabStop = true; 57 | this.radioButton2.UseVisualStyleBackColor = true; 58 | // 59 | // radioButton3 60 | // 61 | resources.ApplyResources(this.radioButton3, "radioButton3"); 62 | this.radioButton3.Name = "radioButton3"; 63 | this.radioButton3.UseVisualStyleBackColor = true; 64 | // 65 | // Form1 66 | // 67 | resources.ApplyResources(this, "$this"); 68 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 69 | this.Controls.Add(this.radioButton3); 70 | this.Controls.Add(this.radioButton2); 71 | this.Controls.Add(this.radioButton1); 72 | this.Controls.Add(this.button1); 73 | this.Name = "Form1"; 74 | this.ResumeLayout(false); 75 | this.PerformLayout(); 76 | 77 | } 78 | 79 | #endregion 80 | private System.Windows.Forms.Button button1; 81 | private System.Windows.Forms.RadioButton radioButton1; 82 | private System.Windows.Forms.RadioButton radioButton2; 83 | private System.Windows.Forms.RadioButton radioButton3; 84 | } 85 | } 86 | 87 | -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Globalization; 4 | using System.Windows.Forms; 5 | using System.IO; 6 | 7 | namespace Opera_Launcher 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Der Haupteinstiegspunkt für die Anwendung. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | CultureInfo culture1 = CultureInfo.CurrentUICulture; 18 | string applicationPath = Application.StartupPath; 19 | if (File.Exists(applicationPath + "\\Opera\\Launcher.exe")) 20 | { 21 | var sb = new System.Text.StringBuilder(); 22 | string[] CommandLineArgs = Environment.GetCommandLineArgs(); 23 | for (int i = 1; i < CommandLineArgs.Length; i++) 24 | { 25 | if (CommandLineArgs[i].Contains("=")) 26 | { 27 | if (CommandLineArgs[i].Contains("LinkID")) 28 | { 29 | sb.Append(" " + CommandLineArgs[i]); 30 | } 31 | else if (CommandLineArgs[i].Contains("http")) 32 | { 33 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 34 | } 35 | else 36 | { 37 | string[] test = CommandLineArgs[i].Split(new char[] { '=' }, 2); 38 | sb.Append(" " + test[0] + "=\"" + test[1] + "\""); 39 | } 40 | } 41 | else if (CommandLineArgs[i].Contains(".pdf")) 42 | { 43 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 44 | } 45 | else 46 | { 47 | sb.Append(" " + CommandLineArgs[i]); 48 | } 49 | } 50 | if (!File.Exists(applicationPath + "\\Opera\\Profile.txt")) 51 | { 52 | Application.EnableVisualStyles(); 53 | Application.SetCompatibleTextRenderingDefault(false); 54 | Application.Run(new Form1()); 55 | string Arguments = File.ReadAllText(applicationPath + "\\Opera\\Profile.txt") + sb.ToString(); 56 | if (Arguments.Contains("--user-data-dir=")) 57 | { 58 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 59 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 60 | Process.Start(applicationPath + "\\Opera\\Launcher.exe", Arguments3); 61 | } 62 | else 63 | { 64 | Process.Start(applicationPath + "\\Opera\\Launcher.exe", Arguments); 65 | } 66 | } 67 | else 68 | { 69 | string Arguments = File.ReadAllText(applicationPath + "\\Opera\\Profile.txt") + sb.ToString(); 70 | if (Arguments.Contains("--user-data-dir=")) 71 | { 72 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 73 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 74 | Process.Start(applicationPath + "\\Opera\\Launcher.exe", Arguments3); 75 | } 76 | else 77 | { 78 | Process.Start(applicationPath + "\\Opera\\Launcher.exe", Arguments); 79 | } 80 | } 81 | } 82 | else if (culture1.TwoLetterISOLanguageName == "de") 83 | { 84 | MessageBox.Show("Opera ist nicht installiert", "Opera Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 85 | } 86 | else if (culture1.TwoLetterISOLanguageName == "ru") 87 | { 88 | MessageBox.Show("Opera Portable не найден", "Opera Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 89 | } 90 | else 91 | { 92 | MessageBox.Show("Opera is not installed", "Opera Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 93 | } 94 | } 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Globalization; 4 | using System.Windows.Forms; 5 | using System.IO; 6 | 7 | namespace Opera_GX_x86_Launcher 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Der Haupteinstiegspunkt für die Anwendung. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | CultureInfo culture1 = CultureInfo.CurrentUICulture; 18 | string applicationPath = Application.StartupPath; 19 | if (File.Exists(applicationPath + "\\Opera GX x86\\Launcher.exe")) 20 | { 21 | var sb = new System.Text.StringBuilder(); 22 | string[] CommandLineArgs = Environment.GetCommandLineArgs(); 23 | for (int i = 1; i < CommandLineArgs.Length; i++) 24 | { 25 | if (CommandLineArgs[i].Contains("=")) 26 | { 27 | if (CommandLineArgs[i].Contains("LinkID")) 28 | { 29 | sb.Append(" " + CommandLineArgs[i]); 30 | } 31 | else if (CommandLineArgs[i].Contains("http")) 32 | { 33 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 34 | } 35 | else 36 | { 37 | string[] test = CommandLineArgs[i].Split(new char[] { '=' }, 2); 38 | sb.Append(" " + test[0] + "=\"" + test[1] + "\""); 39 | } 40 | } 41 | else if (CommandLineArgs[i].Contains(".pdf")) 42 | { 43 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 44 | } 45 | else 46 | { 47 | sb.Append(" " + CommandLineArgs[i]); 48 | } 49 | } 50 | if (!File.Exists(applicationPath + "\\Opera GX x86\\Profile.txt")) 51 | { 52 | Application.EnableVisualStyles(); 53 | Application.SetCompatibleTextRenderingDefault(false); 54 | Application.Run(new Form1()); 55 | String Arguments = File.ReadAllText(applicationPath + "\\Opera GX x86\\Profile.txt") + sb.ToString(); 56 | if (Arguments.Contains("--user-data-dir=")) 57 | { 58 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 59 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 60 | Process.Start(applicationPath + "\\Opera GX x86\\Launcher.exe", Arguments3); 61 | } 62 | else 63 | { 64 | Process.Start(applicationPath + "\\Opera GX x86\\Launcher.exe", Arguments); 65 | } 66 | } 67 | else 68 | { 69 | String Arguments = File.ReadAllText(applicationPath + "\\Opera GX x86\\Profile.txt") + sb.ToString(); 70 | if (Arguments.Contains("--user-data-dir=")) 71 | { 72 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 73 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 74 | Process.Start(applicationPath + "\\Opera GX x86\\Launcher.exe", Arguments3); 75 | } 76 | else 77 | { 78 | Process.Start(applicationPath + "\\Opera GX x86\\Launcher.exe", Arguments); 79 | } 80 | } 81 | } 82 | else if (culture1.TwoLetterISOLanguageName == "de") 83 | { 84 | MessageBox.Show("Opera ist nicht installiert", "Opera GX x86 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 85 | } 86 | else if (culture1.TwoLetterISOLanguageName == "ru") 87 | { 88 | MessageBox.Show("Opera Portable не найден", "Opera GX x86 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 89 | } 90 | else 91 | { 92 | MessageBox.Show("Opera is not installed", "Opera GX x86 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 93 | } 94 | } 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Globalization; 4 | using System.Windows.Forms; 5 | using System.IO; 6 | 7 | namespace Opera_Dev_x64_Launcher 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Der Haupteinstiegspunkt für die Anwendung. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | CultureInfo culture1 = CultureInfo.CurrentUICulture; 18 | string applicationPath = Application.StartupPath; 19 | if (File.Exists(applicationPath + "\\Opera Dev x64\\Launcher.exe")) 20 | { 21 | var sb = new System.Text.StringBuilder(); 22 | string[] CommandLineArgs = Environment.GetCommandLineArgs(); 23 | for (int i = 1; i < CommandLineArgs.Length; i++) 24 | { 25 | if (CommandLineArgs[i].Contains("=")) 26 | { 27 | if (CommandLineArgs[i].Contains("LinkID")) 28 | { 29 | sb.Append(" " + CommandLineArgs[i]); 30 | } 31 | else if (CommandLineArgs[i].Contains("http")) 32 | { 33 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 34 | } 35 | else 36 | { 37 | string[] test = CommandLineArgs[i].Split(new char[] { '=' }, 2); 38 | sb.Append(" " + test[0] + "=\"" + test[1] + "\""); 39 | } 40 | } 41 | else if (CommandLineArgs[i].Contains(".pdf")) 42 | { 43 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 44 | } 45 | else 46 | { 47 | sb.Append(" " + CommandLineArgs[i]); 48 | } 49 | } 50 | if (!File.Exists(applicationPath + "\\Opera Dev x64\\Profile.txt")) 51 | { 52 | Application.EnableVisualStyles(); 53 | Application.SetCompatibleTextRenderingDefault(false); 54 | Application.Run(new Form1()); 55 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Dev x64\\Profile.txt") + sb.ToString(); 56 | if (Arguments.Contains("--user-data-dir=")) 57 | { 58 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 59 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 60 | Process.Start(applicationPath + "\\Opera Dev x64\\Launcher.exe", Arguments3); 61 | } 62 | else 63 | { 64 | Process.Start(applicationPath + "\\Opera Dev x64\\Launcher.exe", Arguments); 65 | } 66 | } 67 | else 68 | { 69 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Dev x64\\Profile.txt") + sb.ToString(); 70 | if (Arguments.Contains("--user-data-dir=")) 71 | { 72 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 73 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 74 | Process.Start(applicationPath + "\\Opera Dev x64\\Launcher.exe", Arguments3); 75 | } 76 | else 77 | { 78 | Process.Start(applicationPath + "\\Opera Dev x64\\Launcher.exe", Arguments); 79 | } 80 | } 81 | } 82 | else if (culture1.TwoLetterISOLanguageName == "de") 83 | { 84 | MessageBox.Show("Opera ist nicht installiert", "Opera Dev x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 85 | } 86 | else if (culture1.TwoLetterISOLanguageName == "ru") 87 | { 88 | MessageBox.Show("Opera Portable не найден", "Opera Dev x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 89 | } 90 | else 91 | { 92 | MessageBox.Show("Opera is not installed", "Opera Dev x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 93 | } 94 | } 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Globalization; 4 | using System.Windows.Forms; 5 | using System.IO; 6 | 7 | namespace Opera_Dev_x86_Launcher 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Der Haupteinstiegspunkt für die Anwendung. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | CultureInfo culture1 = CultureInfo.CurrentUICulture; 18 | string applicationPath = Application.StartupPath; 19 | if (File.Exists(applicationPath + "\\Opera Dev x86\\Launcher.exe")) 20 | { 21 | var sb = new System.Text.StringBuilder(); 22 | string[] CommandLineArgs = Environment.GetCommandLineArgs(); 23 | for (int i = 1; i < CommandLineArgs.Length; i++) 24 | { 25 | if (CommandLineArgs[i].Contains("=")) 26 | { 27 | if (CommandLineArgs[i].Contains("LinkID")) 28 | { 29 | sb.Append(" " + CommandLineArgs[i]); 30 | } 31 | else if (CommandLineArgs[i].Contains("http")) 32 | { 33 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 34 | } 35 | else 36 | { 37 | string[] test = CommandLineArgs[i].Split(new char[] { '=' }, 2); 38 | sb.Append(" " + test[0] + "=\"" + test[1] + "\""); 39 | } 40 | } 41 | else if (CommandLineArgs[i].Contains(".pdf")) 42 | { 43 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 44 | } 45 | else 46 | { 47 | sb.Append(" " + CommandLineArgs[i]); 48 | } 49 | } 50 | if (!File.Exists(applicationPath + "\\Opera Dev x86\\Profile.txt")) 51 | { 52 | Application.EnableVisualStyles(); 53 | Application.SetCompatibleTextRenderingDefault(false); 54 | Application.Run(new Form1()); 55 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Dev x86\\Profile.txt") + sb.ToString(); 56 | if (Arguments.Contains("--user-data-dir=")) 57 | { 58 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 59 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 60 | Process.Start(applicationPath + "\\Opera Dev x86\\Launcher.exe", Arguments3); 61 | } 62 | else 63 | { 64 | Process.Start(applicationPath + "\\Opera Dev x86\\Launcher.exe", Arguments); 65 | } 66 | } 67 | else 68 | { 69 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Dev x86\\Profile.txt") + sb.ToString(); 70 | if (Arguments.Contains("--user-data-dir=")) 71 | { 72 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 73 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 74 | Process.Start(applicationPath + "\\Opera Dev x86\\Launcher.exe", Arguments3); 75 | } 76 | else 77 | { 78 | Process.Start(applicationPath + "\\Opera Dev x86\\Launcher.exe", Arguments); 79 | } 80 | } 81 | } 82 | else if (culture1.TwoLetterISOLanguageName == "de") 83 | { 84 | MessageBox.Show("Opera ist nicht installiert", "Opera Dev x86 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 85 | } 86 | else if (culture1.TwoLetterISOLanguageName == "ru") 87 | { 88 | MessageBox.Show("Opera Portable не найден", "Opera Dev x86 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 89 | } 90 | else 91 | { 92 | MessageBox.Show("Opera is not installed", "Opera Dev x86 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 93 | } 94 | } 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Globalization; 4 | using System.Windows.Forms; 5 | using System.IO; 6 | 7 | namespace Opera_GX_x64_Launcher 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Der Haupteinstiegspunkt für die Anwendung. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | CultureInfo culture1 = CultureInfo.CurrentUICulture; 18 | string applicationPath = Application.StartupPath; 19 | if (File.Exists(applicationPath + "\\Opera GX x64\\Launcher.exe")) 20 | { 21 | var sb = new System.Text.StringBuilder(); 22 | string[] CommandLineArgs = Environment.GetCommandLineArgs(); 23 | for (int i = 1; i < CommandLineArgs.Length; i++) 24 | { 25 | if (CommandLineArgs[i].Contains("=")) 26 | { 27 | if (CommandLineArgs[i].Contains("LinkID")) 28 | { 29 | sb.Append(" " + CommandLineArgs[i]); 30 | } 31 | else if (CommandLineArgs[i].Contains("http")) 32 | { 33 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 34 | } 35 | else 36 | { 37 | string[] test = CommandLineArgs[i].Split(new char[] { '=' }, 2); 38 | sb.Append(" " + test[0] + "=\"" + test[1] + "\""); 39 | } 40 | } 41 | else if (CommandLineArgs[i].Contains(".pdf")) 42 | { 43 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 44 | } 45 | else 46 | { 47 | sb.Append(" " + CommandLineArgs[i]); 48 | } 49 | } 50 | if (!File.Exists(applicationPath + "\\Opera GX x64\\Profile.txt")) 51 | { 52 | Application.EnableVisualStyles(); 53 | Application.SetCompatibleTextRenderingDefault(false); 54 | Application.Run(new Form1()); 55 | String Arguments = File.ReadAllText(applicationPath + "\\Opera GX x64\\Profile.txt") + sb.ToString(); 56 | if (Arguments.Contains("--user-data-dir=")) 57 | { 58 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 59 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 60 | Process.Start(applicationPath + "\\Opera GX x64\\Launcher.exe", Arguments3); 61 | } 62 | else 63 | { 64 | Process.Start(applicationPath + "\\Opera GX x64\\Launcher.exe", Arguments); 65 | } 66 | } 67 | else 68 | { 69 | String Arguments = File.ReadAllText(applicationPath + "\\Opera GX x64\\Profile.txt") + sb.ToString(); 70 | if (Arguments.Contains("--user-data-dir=")) 71 | { 72 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 73 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 74 | Process.Start(applicationPath + "\\Opera GX x64\\Launcher.exe", Arguments3); 75 | } 76 | else 77 | { 78 | Process.Start(applicationPath + "\\Opera GX x64\\Launcher.exe", Arguments); 79 | } 80 | } 81 | } 82 | else if (culture1.TwoLetterISOLanguageName == "de") 83 | { 84 | _ = MessageBox.Show("Opera ist nicht installiert", "Opera GX x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 85 | } 86 | else if (culture1.TwoLetterISOLanguageName == "ru") 87 | { 88 | _ = MessageBox.Show("Opera Portable не найден", "Opera GX x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 89 | } 90 | else 91 | { 92 | _ = MessageBox.Show("Opera is not installed", "Opera GX x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 93 | } 94 | } 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Globalization; 4 | using System.Windows.Forms; 5 | using System.IO; 6 | 7 | namespace Opera_Beta_x64_Launcher 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Der Haupteinstiegspunkt für die Anwendung. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | CultureInfo culture1 = CultureInfo.CurrentUICulture; 18 | string applicationPath = Application.StartupPath; 19 | if (File.Exists(applicationPath + "\\Opera Beta x64\\Launcher.exe")) 20 | { 21 | var sb = new System.Text.StringBuilder(); 22 | string[] CommandLineArgs = Environment.GetCommandLineArgs(); 23 | for (int i = 1; i < CommandLineArgs.Length; i++) 24 | { 25 | if (CommandLineArgs[i].Contains("=")) 26 | { 27 | if (CommandLineArgs[i].Contains("LinkID")) 28 | { 29 | sb.Append(" " + CommandLineArgs[i]); 30 | } 31 | else if (CommandLineArgs[i].Contains("http")) 32 | { 33 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 34 | } 35 | else 36 | { 37 | string[] test = CommandLineArgs[i].Split(new char[] { '=' }, 2); 38 | sb.Append(" " + test[0] + "=\"" + test[1] + "\""); 39 | } 40 | } 41 | else if (CommandLineArgs[i].Contains(".pdf")) 42 | { 43 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 44 | } 45 | else 46 | { 47 | sb.Append(" " + CommandLineArgs[i]); 48 | } 49 | } 50 | if (!File.Exists(applicationPath + "\\Opera Beta x64\\Profile.txt")) 51 | { 52 | Application.EnableVisualStyles(); 53 | Application.SetCompatibleTextRenderingDefault(false); 54 | Application.Run(new Form1()); 55 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Beta x64\\Profile.txt") + sb.ToString(); 56 | if (Arguments.Contains("--user-data-dir=")) 57 | { 58 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 59 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 60 | Process.Start(applicationPath + "\\Opera Beta x64\\Launcher.exe", Arguments3); 61 | } 62 | else 63 | { 64 | Process.Start(applicationPath + "\\Opera Beta x64\\Launcher.exe", Arguments); 65 | } 66 | } 67 | else 68 | { 69 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Beta x64\\Profile.txt") + sb.ToString(); 70 | if (Arguments.Contains("--user-data-dir=")) 71 | { 72 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 73 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 74 | Process.Start(applicationPath + "\\Opera Beta x64\\Launcher.exe", Arguments3); 75 | } 76 | else 77 | { 78 | Process.Start(applicationPath + "\\Opera Beta x64\\Launcher.exe", Arguments); 79 | } 80 | } 81 | } 82 | else if (culture1.TwoLetterISOLanguageName == "de") 83 | { 84 | MessageBox.Show("Opera ist nicht installiert", "Opera Beta x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 85 | } 86 | else if (culture1.TwoLetterISOLanguageName == "ru") 87 | { 88 | MessageBox.Show("Opera Portable не найден", "Opera Beta x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 89 | } 90 | else 91 | { 92 | MessageBox.Show("Opera is not installed", "Opera Beta x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 93 | } 94 | } 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x86 Launcher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Globalization; 4 | using System.Windows.Forms; 5 | using System.IO; 6 | 7 | namespace Opera_Beta_x86_Launcher 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Der Haupteinstiegspunkt für die Anwendung. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | CultureInfo culture1 = CultureInfo.CurrentUICulture; 18 | string applicationPath = Application.StartupPath; 19 | if (File.Exists(applicationPath + "\\Opera Beta x86\\Launcher.exe")) 20 | { 21 | var sb = new System.Text.StringBuilder(); 22 | string[] CommandLineArgs = Environment.GetCommandLineArgs(); 23 | for (int i = 1; i < CommandLineArgs.Length; i++) 24 | { 25 | if (CommandLineArgs[i].Contains("=")) 26 | { 27 | if (CommandLineArgs[i].Contains("LinkID")) 28 | { 29 | sb.Append(" " + CommandLineArgs[i]); 30 | } 31 | else if (CommandLineArgs[i].Contains("http")) 32 | { 33 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 34 | } 35 | else 36 | { 37 | string[] test = CommandLineArgs[i].Split(new char[] { '=' }, 2); 38 | sb.Append(" " + test[0] + "=\"" + test[1] + "\""); 39 | } 40 | } 41 | else if (CommandLineArgs[i].Contains(".pdf")) 42 | { 43 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 44 | } 45 | else 46 | { 47 | sb.Append(" " + CommandLineArgs[i]); 48 | } 49 | } 50 | if (!File.Exists(applicationPath + "\\Opera Beta x86\\Profile.txt")) 51 | { 52 | Application.EnableVisualStyles(); 53 | Application.SetCompatibleTextRenderingDefault(false); 54 | Application.Run(new Form1()); 55 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Beta x86\\Profile.txt") + sb.ToString(); 56 | if (Arguments.Contains("--user-data-dir=")) 57 | { 58 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 59 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 60 | Process.Start(applicationPath + "\\Opera Beta x86\\Launcher.exe", Arguments3); 61 | } 62 | else 63 | { 64 | Process.Start(applicationPath + "\\Opera Beta x86\\Launcher.exe", Arguments); 65 | } 66 | } 67 | else 68 | { 69 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Beta x86\\Profile.txt") + sb.ToString(); 70 | if (Arguments.Contains("--user-data-dir=")) 71 | { 72 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 73 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 74 | Process.Start(applicationPath + "\\Opera Beta x86\\Launcher.exe", Arguments3); 75 | } 76 | else 77 | { 78 | Process.Start(applicationPath + "\\Opera Beta x86\\Launcher.exe", Arguments); 79 | } 80 | } 81 | } 82 | else if (culture1.TwoLetterISOLanguageName == "de") 83 | { 84 | MessageBox.Show("Opera ist nicht installiert", "Opera Beta x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 85 | } 86 | else if (culture1.TwoLetterISOLanguageName == "ru") 87 | { 88 | MessageBox.Show("Opera Portable не найден", "Opera Beta x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 89 | } 90 | else 91 | { 92 | MessageBox.Show("Opera is not installed", "Opera Beta x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 93 | } 94 | } 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x64 Launcher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Globalization; 4 | using System.Windows.Forms; 5 | using System.IO; 6 | 7 | namespace Opera_Stable_x64_Launcher 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Der Haupteinstiegspunkt für die Anwendung. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | CultureInfo culture1 = CultureInfo.CurrentUICulture; 18 | string applicationPath = Application.StartupPath; 19 | if (File.Exists(applicationPath + "\\Opera Stable x64\\Launcher.exe")) 20 | { 21 | var sb = new System.Text.StringBuilder(); 22 | string[] CommandLineArgs = Environment.GetCommandLineArgs(); 23 | for (int i = 1; i < CommandLineArgs.Length; i++) 24 | { 25 | if (CommandLineArgs[i].Contains("=")) 26 | { 27 | if (CommandLineArgs[i].Contains("LinkID")) 28 | { 29 | sb.Append(" " + CommandLineArgs[i]); 30 | } 31 | else if (CommandLineArgs[i].Contains("http")) 32 | { 33 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 34 | } 35 | else 36 | { 37 | string[] test = CommandLineArgs[i].Split(new char[] { '=' }, 2); 38 | sb.Append(" " + test[0] + "=\"" + test[1] + "\""); 39 | } 40 | } 41 | else if (CommandLineArgs[i].Contains(".pdf")) 42 | { 43 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 44 | } 45 | else 46 | { 47 | sb.Append(" " + CommandLineArgs[i]); 48 | } 49 | } 50 | if (!File.Exists(applicationPath + "\\Opera Stable x64\\Profile.txt")) 51 | { 52 | Application.EnableVisualStyles(); 53 | Application.SetCompatibleTextRenderingDefault(false); 54 | Application.Run(new Form1()); 55 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Stable x64\\Profile.txt") + sb.ToString(); 56 | if (Arguments.Contains("--user-data-dir=")) 57 | { 58 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 59 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 60 | Process.Start(applicationPath + "\\Opera Stable x64\\Launcher.exe", Arguments3); 61 | } 62 | else 63 | { 64 | Process.Start(applicationPath + "\\Opera Stable x64\\Launcher.exe", Arguments); 65 | } 66 | } 67 | else 68 | { 69 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Stable x64\\Profile.txt") + sb.ToString(); 70 | if (Arguments.Contains("--user-data-dir=")) 71 | { 72 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 73 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 74 | Process.Start(applicationPath + "\\Opera Stable x64\\Launcher.exe", Arguments3); 75 | } 76 | else 77 | { 78 | Process.Start(applicationPath + "\\Opera Stable x64\\Launcher.exe", Arguments); 79 | } 80 | } 81 | } 82 | else if (culture1.TwoLetterISOLanguageName == "de") 83 | { 84 | MessageBox.Show("Opera ist nicht installiert", "Opera Stable x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 85 | } 86 | else if (culture1.TwoLetterISOLanguageName == "ru") 87 | { 88 | MessageBox.Show("Opera Portable не найден", "Opera Stable x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 89 | } 90 | else 91 | { 92 | MessageBox.Show("Opera is not installed", "Opera Stable x64 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 93 | } 94 | } 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /Launcher/Opera Stable x86 Launcher/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Globalization; 4 | using System.Windows.Forms; 5 | using System.IO; 6 | 7 | namespace Opera_Stable_x86_Launcher 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// Der Haupteinstiegspunkt für die Anwendung. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | CultureInfo culture1 = CultureInfo.CurrentUICulture; 18 | string applicationPath = Application.StartupPath; 19 | if (File.Exists(applicationPath + "\\Opera Stable x86\\Launcher.exe")) 20 | { 21 | var sb = new System.Text.StringBuilder(); 22 | string[] CommandLineArgs = Environment.GetCommandLineArgs(); 23 | for (int i = 1; i < CommandLineArgs.Length; i++) 24 | { 25 | if (CommandLineArgs[i].Contains("=")) 26 | { 27 | if (CommandLineArgs[i].Contains("LinkID")) 28 | { 29 | sb.Append(" " + CommandLineArgs[i]); 30 | } 31 | else if (CommandLineArgs[i].Contains("http")) 32 | { 33 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 34 | } 35 | else 36 | { 37 | string[] test = CommandLineArgs[i].Split(new char[] { '=' }, 2); 38 | sb.Append(" " + test[0] + "=\"" + test[1] + "\""); 39 | } 40 | } 41 | else if (CommandLineArgs[i].Contains(".pdf")) 42 | { 43 | sb.Append(" \"" + CommandLineArgs[i] + "\""); 44 | } 45 | else 46 | { 47 | sb.Append(" " + CommandLineArgs[i]); 48 | } 49 | } 50 | if (!File.Exists(applicationPath + "\\Opera Stable x86\\Profile.txt")) 51 | { 52 | Application.EnableVisualStyles(); 53 | Application.SetCompatibleTextRenderingDefault(false); 54 | Application.Run(new Form1()); 55 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Stable x86\\Profile.txt") + sb.ToString(); 56 | if (Arguments.Contains("--user-data-dir=")) 57 | { 58 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 59 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 60 | Process.Start(applicationPath + "\\Opera Stable x86\\Launcher.exe", Arguments3); 61 | } 62 | else 63 | { 64 | Process.Start(applicationPath + "\\Opera Stable x86\\Launcher.exe", Arguments); 65 | } 66 | } 67 | else 68 | { 69 | String Arguments = File.ReadAllText(applicationPath + "\\Opera Stable x86\\Profile.txt") + sb.ToString(); 70 | if (Arguments.Contains("--user-data-dir=")) 71 | { 72 | string[] Arguments2 = Arguments.Split(new char[] { '=' }, 2); 73 | string Arguments3 = Arguments2[0] + "=\"" + applicationPath + "\\" + Arguments2[1].Remove(0, 1); 74 | Process.Start(applicationPath + "\\Opera Stable x86\\Launcher.exe", Arguments3); 75 | } 76 | else 77 | { 78 | Process.Start(applicationPath + "\\Opera Stable x86\\Launcher.exe", Arguments); 79 | } 80 | } 81 | } 82 | else if (culture1.TwoLetterISOLanguageName == "de") 83 | { 84 | MessageBox.Show("Opera ist nicht installiert", "Opera Stable x86 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 85 | } 86 | else if (culture1.TwoLetterISOLanguageName == "ru") 87 | { 88 | MessageBox.Show("Opera Portable не найден", "Opera Stable x86 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 89 | } 90 | else 91 | { 92 | MessageBox.Show("Opera is not installed", "Opera Stable x86 Launcher", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 93 | } 94 | } 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /Portable Opera Updater.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {A7849774-7AC9-4AFB-B5B0-DC3CDCC01F4C} 8 | WinExe 9 | Portable_Opera_Updater 10 | Portable Opera Updater 11 | v4.6 12 | 512 13 | true 14 | 15 | 16 | 17 | 18 | 19 | AnyCPU 20 | true 21 | full 22 | false 23 | bin\Debug\ 24 | DEBUG;TRACE 25 | prompt 26 | 4 27 | false 28 | 29 | 30 | AnyCPU 31 | pdbonly 32 | true 33 | bin\Release\ 34 | TRACE 35 | prompt 36 | 4 37 | false 38 | 39 | 40 | Opera Updater.ico 41 | 42 | 43 | false 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | Form 60 | 61 | 62 | Form1.cs 63 | 64 | 65 | 66 | 67 | 68 | 69 | Form1.cs 70 | 71 | 72 | ResXFileCodeGenerator 73 | Resources.Designer.cs 74 | Designer 75 | 76 | 77 | True 78 | Resources.resx 79 | True 80 | 81 | 82 | 83 | SettingsSingleFileGenerator 84 | Settings.Designer.cs 85 | 86 | 87 | True 88 | Settings.settings 89 | True 90 | 91 | 92 | 93 | 94 | {F935DC20-1CF0-11D0-ADB9-00C04FD58A0B} 95 | 1 96 | 0 97 | 0 98 | tlbimp 99 | False 100 | True 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /Launcher/Opera Launcher/Opera Launcher.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3} 8 | WinExe 9 | Opera_Launcher 10 | Opera Launcher 11 | v4.0 12 | 512 13 | true 14 | publish\ 15 | true 16 | Disk 17 | false 18 | Foreground 19 | 7 20 | Days 21 | false 22 | false 23 | true 24 | 0 25 | 1.0.0.%2a 26 | false 27 | false 28 | true 29 | 30 | 31 | AnyCPU 32 | true 33 | full 34 | false 35 | bin\Debug\ 36 | TRACE 37 | prompt 38 | 4 39 | 40 | 41 | AnyCPU 42 | pdbonly 43 | true 44 | bin\Release\ 45 | TRACE 46 | prompt 47 | 4 48 | 49 | 50 | Opera Launcher.ico 51 | 52 | 53 | true 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | Form 70 | 71 | 72 | Form1.cs 73 | 74 | 75 | 76 | 77 | Form1.cs 78 | 79 | 80 | ResXFileCodeGenerator 81 | Resources.Designer.cs 82 | Designer 83 | 84 | 85 | True 86 | Resources.resx 87 | True 88 | 89 | 90 | SettingsSingleFileGenerator 91 | Settings.Designer.cs 92 | 93 | 94 | True 95 | Settings.settings 96 | True 97 | 98 | 99 | 100 | 101 | False 102 | .NET Framework 3.5 SP1 103 | false 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /Launcher/Opera GX x64 Launcher/Opera GX x64 Launcher.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3} 8 | WinExe 9 | Opera_GX_x64_Launcher 10 | Opera GX x64 Launcher 11 | v4.0 12 | 512 13 | true 14 | publish\ 15 | true 16 | Disk 17 | false 18 | Foreground 19 | 7 20 | Days 21 | false 22 | false 23 | true 24 | 0 25 | 1.0.0.%2a 26 | false 27 | false 28 | true 29 | 30 | 31 | AnyCPU 32 | true 33 | full 34 | false 35 | bin\Debug\ 36 | DEBUG;TRACE 37 | prompt 38 | 4 39 | 40 | 41 | AnyCPU 42 | pdbonly 43 | true 44 | bin\Release\ 45 | TRACE 46 | prompt 47 | 4 48 | 49 | 50 | Opera_GX.ico 51 | 52 | 53 | true 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | Form 70 | 71 | 72 | Form1.cs 73 | 74 | 75 | 76 | 77 | Form1.cs 78 | 79 | 80 | ResXFileCodeGenerator 81 | Resources.Designer.cs 82 | Designer 83 | 84 | 85 | True 86 | Resources.resx 87 | True 88 | 89 | 90 | SettingsSingleFileGenerator 91 | Settings.Designer.cs 92 | 93 | 94 | True 95 | Settings.settings 96 | True 97 | 98 | 99 | 100 | 101 | False 102 | .NET Framework 3.5 SP1 103 | false 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /Launcher/Opera GX x86 Launcher/Opera GX x86 Launcher.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3} 8 | WinExe 9 | Opera_GX_x86_Launcher 10 | Opera GX x86 Launcher 11 | v4.0 12 | 512 13 | true 14 | publish\ 15 | true 16 | Disk 17 | false 18 | Foreground 19 | 7 20 | Days 21 | false 22 | false 23 | true 24 | 0 25 | 1.0.0.%2a 26 | false 27 | false 28 | true 29 | 30 | 31 | AnyCPU 32 | true 33 | full 34 | false 35 | bin\Debug\ 36 | DEBUG;TRACE 37 | prompt 38 | 4 39 | 40 | 41 | AnyCPU 42 | pdbonly 43 | true 44 | bin\Release\ 45 | TRACE 46 | prompt 47 | 4 48 | 49 | 50 | Opera_GX.ico 51 | 52 | 53 | true 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | Form 70 | 71 | 72 | Form1.cs 73 | 74 | 75 | 76 | 77 | Form1.cs 78 | 79 | 80 | ResXFileCodeGenerator 81 | Resources.Designer.cs 82 | Designer 83 | 84 | 85 | True 86 | Resources.resx 87 | True 88 | 89 | 90 | SettingsSingleFileGenerator 91 | Settings.Designer.cs 92 | 93 | 94 | True 95 | Settings.settings 96 | True 97 | 98 | 99 | 100 | 101 | False 102 | .NET Framework 3.5 SP1 103 | false 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x64 Launcher/Opera Dev x64 Launcher.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3} 8 | WinExe 9 | Opera_Dev_x64_Launcher 10 | Opera Dev x64 Launcher 11 | v4.0 12 | 512 13 | true 14 | publish\ 15 | true 16 | Disk 17 | false 18 | Foreground 19 | 7 20 | Days 21 | false 22 | false 23 | true 24 | 0 25 | 1.0.0.%2a 26 | false 27 | false 28 | true 29 | 30 | 31 | AnyCPU 32 | true 33 | full 34 | false 35 | bin\Debug\ 36 | DEBUG;TRACE 37 | prompt 38 | 4 39 | 40 | 41 | AnyCPU 42 | pdbonly 43 | true 44 | bin\Release\ 45 | TRACE 46 | prompt 47 | 4 48 | 49 | 50 | Opera_Dev.ico 51 | 52 | 53 | true 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | Form 70 | 71 | 72 | Form1.cs 73 | 74 | 75 | 76 | 77 | Form1.cs 78 | 79 | 80 | ResXFileCodeGenerator 81 | Resources.Designer.cs 82 | Designer 83 | 84 | 85 | True 86 | Resources.resx 87 | True 88 | 89 | 90 | SettingsSingleFileGenerator 91 | Settings.Designer.cs 92 | 93 | 94 | True 95 | Settings.settings 96 | True 97 | 98 | 99 | 100 | 101 | False 102 | .NET Framework 3.5 SP1 103 | false 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /Launcher/Opera Dev x86 Launcher/Opera Dev x86 Launcher.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3} 8 | WinExe 9 | Opera_Dev_x86_Launcher 10 | Opera Dev x86 Launcher 11 | v4.0 12 | 512 13 | true 14 | publish\ 15 | true 16 | Disk 17 | false 18 | Foreground 19 | 7 20 | Days 21 | false 22 | false 23 | true 24 | 0 25 | 1.0.0.%2a 26 | false 27 | false 28 | true 29 | 30 | 31 | AnyCPU 32 | true 33 | full 34 | false 35 | bin\Debug\ 36 | DEBUG;TRACE 37 | prompt 38 | 4 39 | 40 | 41 | AnyCPU 42 | pdbonly 43 | true 44 | bin\Release\ 45 | TRACE 46 | prompt 47 | 4 48 | 49 | 50 | Opera_Dev.ico 51 | 52 | 53 | true 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | Form 70 | 71 | 72 | Form1.cs 73 | 74 | 75 | 76 | 77 | Form1.cs 78 | 79 | 80 | ResXFileCodeGenerator 81 | Resources.Designer.cs 82 | Designer 83 | 84 | 85 | True 86 | Resources.resx 87 | True 88 | 89 | 90 | SettingsSingleFileGenerator 91 | Settings.Designer.cs 92 | 93 | 94 | True 95 | Settings.settings 96 | True 97 | 98 | 99 | 100 | 101 | False 102 | .NET Framework 3.5 SP1 103 | false 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /Launcher/Opera Beta x64 Launcher/Opera Beta x64 Launcher.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {989AC71B-8082-4A6B-BA4A-4D7AAFD83FA3} 8 | WinExe 9 | Opera_Beta_x64_Launcher 10 | Opera Beta x64 Launcher 11 | v4.0 12 | 512 13 | true 14 | publish\ 15 | true 16 | Disk 17 | false 18 | Foreground 19 | 7 20 | Days 21 | false 22 | false 23 | true 24 | 0 25 | 1.0.0.%2a 26 | false 27 | false 28 | true 29 | 30 | 31 | AnyCPU 32 | true 33 | full 34 | false 35 | bin\Debug\ 36 | DEBUG;TRACE 37 | prompt 38 | 4 39 | 40 | 41 | AnyCPU 42 | pdbonly 43 | true 44 | bin\Release\ 45 | TRACE 46 | prompt 47 | 4 48 | 49 | 50 | Opera_Beta.ico 51 | 52 | 53 | true 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | Form 70 | 71 | 72 | Form1.cs 73 | 74 | 75 | 76 | 77 | Form1.cs 78 | 79 | 80 | ResXFileCodeGenerator 81 | Resources.Designer.cs 82 | Designer 83 | 84 | 85 | True 86 | Resources.resx 87 | True 88 | 89 | 90 | SettingsSingleFileGenerator 91 | Settings.Designer.cs 92 | 93 | 94 | True 95 | Settings.settings 96 | True 97 | 98 | 99 | 100 | 101 | False 102 | .NET Framework 3.5 SP1 103 | false 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | --------------------------------------------------------------------------------