├── Gw2Launcher.sln ├── Gw2Launcher ├── Api │ ├── Account.cs │ ├── DailyAchievements.cs │ ├── Exceptions.cs │ ├── Json.cs │ ├── Net.cs │ └── TokenInfo.cs ├── App.config ├── Client │ ├── DatManager.cs │ ├── FileManager.cs │ ├── FileManager_FileLocker.cs │ ├── Launcher.cs │ ├── Launcher_Account.cs │ ├── Launcher_Autologin.cs │ ├── Launcher_CoherentWatcher.cs │ ├── Launcher_LinkedProcess.cs │ ├── Launcher_NetworkAuthorization.cs │ ├── Launcher_RunAfter.cs │ ├── Launcher_WindowEvents.cs │ ├── Launcher_WindowLock.cs │ ├── Launcher_WindowWatcher.cs │ ├── ProcessSettings.cs │ ├── ProxyLauncher.cs │ ├── Steam.cs │ ├── SteamProxy.cs │ └── Variables.cs ├── DataPath.cs ├── Gw2Launcher.csproj ├── IO │ └── CrcStream.cs ├── Messaging │ ├── LaunchMessage.cs │ ├── MappedMessage.cs │ ├── Messaging.cs │ └── UpdateMessage.cs ├── Net │ ├── AssetDownloader.cs │ ├── AssetProxy │ │ ├── Cache.cs │ │ ├── Client.cs │ │ ├── HttpStream.cs │ │ ├── IPPool.cs │ │ ├── ProxyServer.cs │ │ └── ServerController.cs │ ├── BpsLimiter.cs │ ├── Dns.cs │ ├── DnsServers.cs │ ├── IP.cs │ └── TcpClientSocket.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Gw1.ico │ ├── Gw2.ico │ ├── Gw2Launcher.ico │ ├── Task.xml │ ├── daily.png │ ├── hot32.png │ ├── icon42684.png │ ├── login.png │ ├── loginreward0.jpg │ ├── loginreward1.jpg │ ├── loginreward2.jpg │ ├── loginreward3.jpg │ ├── loginreward4.jpg │ ├── loginreward5.jpg │ ├── loginreward6.jpg │ ├── loginreward7.jpg │ ├── loginreward8.jpg │ ├── loginreward9.jpg │ ├── mailfull.png │ └── pof32.png ├── Security │ ├── Credentials.cs │ ├── Cryptography │ │ ├── Crypto.cs │ │ └── ProtectedString.cs │ └── Impersonation.cs ├── Settings.cs ├── Tools │ ├── AutoUpdate.cs │ ├── BackgroundPatcher.cs │ ├── Backup │ │ ├── AccountExporter.cs │ │ └── Backup.cs │ ├── CoherentMonitor.cs │ ├── Dat │ │ ├── Compression │ │ │ ├── Archive.cs │ │ │ ├── Crc32.cs │ │ │ ├── IO │ │ │ │ ├── BitStream.cs │ │ │ │ └── FileStream.cs │ │ │ └── Tree │ │ │ │ ├── BinaryTree.cs │ │ │ │ └── TreeBuilder.cs │ │ ├── DatFile.cs │ │ └── Manifest.cs │ ├── DatUpdater.cs │ ├── DataCache.cs │ ├── DataStore.cs │ ├── Gfx │ │ └── Xml.cs │ ├── Gw2Build.cs │ ├── Gw2Cache.cs │ ├── Gw2Logs.cs │ ├── Hotkeys │ │ ├── HotkeyInfo.cs │ │ ├── HotkeyManager.cs │ │ └── Hotkeys.cs │ ├── Icons.cs │ ├── Images.cs │ ├── JumpList.cs │ ├── Markers │ │ ├── Marker.cs │ │ ├── MarkerIcons.cs │ │ └── MarkerMonitor.cs │ ├── Mumble │ │ ├── MumbleData.cs │ │ └── MumbleMonitor.cs │ ├── Notes.cs │ ├── ProcessPriority.cs │ ├── QueuedAccountApi.cs │ ├── Screenshots.cs │ ├── Shared │ │ ├── Icons.cs │ │ ├── Images.cs │ │ └── Values.cs │ ├── Statistics.cs │ ├── Temp.cs │ ├── Totp.cs │ └── WindowManager.cs ├── UI │ ├── Affinity │ │ ├── formAffinitySelectDialog.Designer.cs │ │ ├── formAffinitySelectDialog.cs │ │ └── formAffinitySelectDialog.resx │ ├── Backup │ │ ├── formAccountExport.Designer.cs │ │ ├── formAccountExport.cs │ │ ├── formAccountExport.resx │ │ ├── formAccountImport.Designer.cs │ │ ├── formAccountImport.cs │ │ ├── formAccountImport.resx │ │ ├── formBackupRestore.Designer.cs │ │ ├── formBackupRestore.cs │ │ ├── formBackupRestore.resx │ │ ├── formBackupRestoreImport.Designer.cs │ │ ├── formBackupRestoreImport.cs │ │ └── formBackupRestoreImport.resx │ ├── Base │ │ ├── BaseControl.cs │ │ ├── BaseForm.cs │ │ ├── BaseLabel.cs │ │ ├── FlatBase.cs │ │ ├── PopupFlatBase.cs │ │ ├── PopupUtil.cs │ │ ├── ShowWithoutActivation.cs │ │ └── StackFormBase.cs │ ├── ColorPicker │ │ ├── Controls │ │ │ ├── AlphaPanel.cs │ │ │ ├── BaseColorPanel.cs │ │ │ ├── ColorPreviewPanel.cs │ │ │ ├── HuePanel.cs │ │ │ └── ShadePanel.cs │ │ ├── formColorDialog.Designer.cs │ │ ├── formColorDialog.cs │ │ └── formColorDialog.resx │ ├── Controls │ │ ├── AccountBarButton.cs │ │ ├── AccountGridButton.cs │ │ ├── AccountGridButtonContainer.Designer.cs │ │ ├── AccountGridButtonContainer.cs │ │ ├── AccountGridButtonContainer.resx │ │ ├── AccountGridButtonPanel.cs │ │ ├── AffinityAccountsPanel.cs │ │ ├── AffinityDisplay.cs │ │ ├── ApplyAllCheckBox.cs │ │ ├── ArrowButton.cs │ │ ├── AutoScrollContainerPanel.cs │ │ ├── BoxedLabel.cs │ │ ├── BoxedLabelPasswordBox.cs │ │ ├── BoxedLabelTextBox.cs │ │ ├── CircleTimer.cs │ │ ├── ContextMenuStripStayOpenOnClick.cs │ │ ├── CopyButton.cs │ │ ├── DailyAchievement.cs │ │ ├── DailyCategoryBar.cs │ │ ├── ExtendableTextBox.cs │ │ ├── FlatButton.cs │ │ ├── FlatIntegerTextBox.cs │ │ ├── FlatMarkerIconButton.cs │ │ ├── FlatProgressBar.cs │ │ ├── FlatShapeButton.cs │ │ ├── FlatSlider.cs │ │ ├── FlatTextBox.cs │ │ ├── FlatVScrollBar.cs │ │ ├── FlatVerticalButton.cs │ │ ├── GradientLabel.cs │ │ ├── GradientLine.cs │ │ ├── HotkeyContainerPanel.cs │ │ ├── HotkeyGroupsPanel.cs │ │ ├── HotkeyInput.cs │ │ ├── IntegerTextBox.cs │ │ ├── LabelButton.cs │ │ ├── LinkLabel.cs │ │ ├── ListPanel │ │ │ ├── ControlListPanel.cs │ │ │ ├── LabelListPanel.cs │ │ │ └── MarkerListPanel.cs │ │ ├── NewAccountGridButton.cs │ │ ├── NoteMessage.Designer.cs │ │ ├── NoteMessage.cs │ │ ├── NoteMessage.resx │ │ ├── PasswordBox.cs │ │ ├── PopoutButton.cs │ │ ├── ProgressGraph.Designer.cs │ │ ├── ProgressGraph.cs │ │ ├── ProgressGraph.resx │ │ ├── RoundedLabelButton.cs │ │ ├── ScaledDataGridView.cs │ │ ├── ScrollablePanelContainer.Designer.cs │ │ ├── ScrollablePanelContainer.cs │ │ ├── ScrollablePanelContainer.resx │ │ ├── SelectionDataGridView.cs │ │ ├── SidebarButton.Designer.cs │ │ ├── SidebarButton.cs │ │ ├── SidebarButton.resx │ │ ├── SidebarPanel.cs │ │ ├── SizeDragButton.cs │ │ ├── StackPanel.cs │ │ ├── TableContainerPanel.cs │ │ ├── TimeTextBox.cs │ │ ├── ToolStripMenuItemStayOpenOnClick.cs │ │ ├── TransparentFlatButton.cs │ │ └── WaitingBounce.cs │ ├── Markers │ │ ├── formMarker.Designer.cs │ │ ├── formMarker.cs │ │ ├── formMarker.resx │ │ ├── formMarkerReset.Designer.cs │ │ ├── formMarkerReset.cs │ │ ├── formMarkerReset.resx │ │ ├── formMarkerTrigger.Designer.cs │ │ ├── formMarkerTrigger.cs │ │ └── formMarkerTrigger.resx │ ├── QuickStart │ │ ├── formAccount.Designer.cs │ │ ├── formAccount.cs │ │ ├── formAccount.resx │ │ ├── formQuickStart.Designer.cs │ │ ├── formQuickStart.cs │ │ └── formQuickStart.resx │ ├── Tooltip │ │ └── FloatingTooltip.cs │ ├── UiColors.cs │ ├── UiProperty.cs │ ├── WindowPositioning │ │ ├── TemplateDisplay.cs │ │ ├── formCustomTemplate.Designer.cs │ │ ├── formCustomTemplate.cs │ │ ├── formCustomTemplate.resx │ │ ├── formGridSize.Designer.cs │ │ ├── formGridSize.cs │ │ ├── formGridSize.resx │ │ ├── formTemplates.Designer.cs │ │ ├── formTemplates.cs │ │ ├── formTemplates.resx │ │ ├── formTemplatesCompact.Designer.cs │ │ ├── formTemplatesCompact.cs │ │ ├── formTemplatesCompact.resx │ │ ├── formWindowSize.cs │ │ ├── formWindowSize.designer.cs │ │ └── formWindowSize.resx │ ├── formAccount.Designer.cs │ ├── formAccount.cs │ ├── formAccount.resx │ ├── formAccountBar.cs │ ├── formAccountSelect.Designer.cs │ ├── formAccountSelect.cs │ ├── formAccountSelect.resx │ ├── formAccountTooltip.Designer.cs │ ├── formAccountTooltip.cs │ ├── formAccountTooltip.resx │ ├── formAccountType.Designer.cs │ ├── formAccountType.cs │ ├── formAccountType.resx │ ├── formAssetProxy.Designer.cs │ ├── formAssetProxy.cs │ ├── formAssetProxy.resx │ ├── formAutologinConfig.Designer.cs │ ├── formAutologinConfig.cs │ ├── formAutologinConfig.resx │ ├── formBackgroundPatcher.Designer.cs │ ├── formBackgroundPatcher.cs │ ├── formBackgroundPatcher.resx │ ├── formBrowseGwDat.Designer.cs │ ├── formBrowseGwDat.cs │ ├── formBrowseGwDat.resx │ ├── formBrowseLocalDat.Designer.cs │ ├── formBrowseLocalDat.cs │ ├── formBrowseLocalDat.resx │ ├── formBrowseLocalDatQuick.Designer.cs │ ├── formBrowseLocalDatQuick.cs │ ├── formBrowseLocalDatQuick.resx │ ├── formChangelog.Designer.cs │ ├── formChangelog.cs │ ├── formChangelog.resx │ ├── formCleanup.Designer.cs │ ├── formCleanup.cs │ ├── formCleanup.resx │ ├── formClone.Designer.cs │ ├── formClone.cs │ ├── formClone.resx │ ├── formColors.Designer.cs │ ├── formColors.cs │ ├── formColors.resx │ ├── formCompassOverlay.cs │ ├── formCopyFileDialog.Designer.cs │ ├── formCopyFileDialog.cs │ ├── formCopyFileDialog.resx │ ├── formDailies.Designer.cs │ ├── formDailies.cs │ ├── formDailies.resx │ ├── formDnsDialog.Designer.cs │ ├── formDnsDialog.cs │ ├── formDnsDialog.resx │ ├── formExtendedTextBox.Designer.cs │ ├── formExtendedTextBox.cs │ ├── formExtendedTextBox.resx │ ├── formFileScan.Designer.cs │ ├── formFileScan.cs │ ├── formFileScan.resx │ ├── formGw2Cache.Designer.cs │ ├── formGw2Cache.cs │ ├── formGw2Cache.resx │ ├── formHotkey.Designer.cs │ ├── formHotkey.cs │ ├── formHotkey.resx │ ├── formLog.Designer.cs │ ├── formLog.cs │ ├── formLog.resx │ ├── formMain.Designer.cs │ ├── formMain.cs │ ├── formMain.resx │ ├── formManagedInactiveUsers.Designer.cs │ ├── formManagedInactiveUsers.cs │ ├── formManagedInactiveUsers.resx │ ├── formMaskOverlay.cs │ ├── formMenu.Designer.cs │ ├── formMenu.cs │ ├── formMenu.resx │ ├── formMoveToPage.Designer.cs │ ├── formMoveToPage.cs │ ├── formMoveToPage.resx │ ├── formNetworkChanged.Designer.cs │ ├── formNetworkChanged.cs │ ├── formNetworkChanged.resx │ ├── formNote.Designer.cs │ ├── formNote.cs │ ├── formNote.resx │ ├── formNotes.Designer.cs │ ├── formNotes.cs │ ├── formNotes.resx │ ├── formNotify.Designer.cs │ ├── formNotify.cs │ ├── formNotify.resx │ ├── formPassword.cs │ ├── formPassword.designer.cs │ ├── formPassword.resx │ ├── formProcessSettingsPopup.Designer.cs │ ├── formProcessSettingsPopup.cs │ ├── formProcessSettingsPopup.resx │ ├── formProgressBar.cs │ ├── formProgressOverlay.cs │ ├── formRunAfter.Designer.cs │ ├── formRunAfter.cs │ ├── formRunAfter.resx │ ├── formRunAfterPopup.Designer.cs │ ├── formRunAfterPopup.cs │ ├── formRunAfterPopup.resx │ ├── formScreenPosition.Designer.cs │ ├── formScreenPosition.cs │ ├── formScreenPosition.resx │ ├── formSettings.Designer.cs │ ├── formSettings.cs │ ├── formSettings.resx │ ├── formShortcutType.Designer.cs │ ├── formShortcutType.cs │ ├── formShortcutType.resx │ ├── formSizingBox.cs │ ├── formSupport.Designer.cs │ ├── formSupport.cs │ ├── formSupport.resx │ ├── formText.Designer.cs │ ├── formText.cs │ ├── formText.resx │ ├── formUpdating.Designer.cs │ ├── formUpdating.cs │ ├── formUpdating.resx │ ├── formVariables.Designer.cs │ ├── formVariables.cs │ ├── formVariables.resx │ ├── formVersionUpdate.Designer.cs │ ├── formVersionUpdate.cs │ ├── formVersionUpdate.resx │ ├── formWaiting.Designer.cs │ ├── formWaiting.cs │ ├── formWaiting.resx │ ├── formWindowsAccount.cs │ ├── formWindowsAccount.designer.cs │ └── formWindowsAccount.resx ├── Util │ ├── AccountComparer.cs │ ├── Accounts.cs │ ├── AlphanumericStringComparer.cs │ ├── Args.cs │ ├── Array.cs │ ├── Bitmap.cs │ ├── Bits.cs │ ├── CheckedButton.cs │ ├── Color.cs │ ├── ComboItem.cs │ ├── DatFiles.cs │ ├── Dpi.cs │ ├── EnabledEvent.cs │ ├── Explorer.cs │ ├── FileUtil.cs │ ├── IPEndPoint.cs │ ├── Invoke.cs │ ├── Logging.cs │ ├── Loop.cs │ ├── NumericUpDown.cs │ ├── PerfCounter.cs │ ├── ProcessUtil.cs │ ├── RectangleConstraint.cs │ ├── ReusableControls.cs │ ├── ScheduledEvents.cs │ ├── ScreenUtil.cs │ ├── SortedQueue.cs │ ├── Text.cs │ └── Users.cs ├── Windows │ ├── Clipboard.cs │ ├── Cursors.cs │ ├── DebugEvents.cs │ ├── DragHelper.cs │ ├── FileCopy.cs │ ├── FileDialog.cs │ ├── FindWindow.cs │ ├── Hosts.cs │ ├── Hotkeys.cs │ ├── JumpList.cs │ ├── Keyboard.cs │ ├── LastInput.cs │ ├── Native │ │ ├── Native.cs │ │ └── NativeMethods.cs │ ├── ProcessInfo.cs │ ├── ShellIcons.cs │ ├── Shortcut.cs │ ├── Symlink.cs │ ├── TaskBar.cs │ ├── Volume.cs │ ├── Win32Handles.cs │ ├── WindowLong.cs │ ├── WindowProperties.cs │ ├── WindowShadow.cs │ └── WindowSize.cs ├── app.manifest ├── bin │ └── Release │ │ └── Gw2Launcher.exe ├── bin64 │ ├── Beta │ │ ├── Gw2Launcher.alpha.exe │ │ └── Gw2Launcher.exe │ ├── Release │ │ └── Gw2Launcher.exe │ └── Samples │ │ └── Gw2FrameChanger.exe └── update │ ├── changelog │ ├── core-32.pak │ ├── core-64.pak │ └── version ├── LICENSE.md ├── ProcessUtil ├── App.config ├── ProcessUtil.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── Win32.cs └── README.md /Gw2Launcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher.sln -------------------------------------------------------------------------------- /Gw2Launcher/Api/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Api/Account.cs -------------------------------------------------------------------------------- /Gw2Launcher/Api/DailyAchievements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Api/DailyAchievements.cs -------------------------------------------------------------------------------- /Gw2Launcher/Api/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Api/Exceptions.cs -------------------------------------------------------------------------------- /Gw2Launcher/Api/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Api/Json.cs -------------------------------------------------------------------------------- /Gw2Launcher/Api/Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Api/Net.cs -------------------------------------------------------------------------------- /Gw2Launcher/Api/TokenInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Api/TokenInfo.cs -------------------------------------------------------------------------------- /Gw2Launcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/App.config -------------------------------------------------------------------------------- /Gw2Launcher/Client/DatManager.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gw2Launcher/Client/FileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/FileManager.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/FileManager_FileLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/FileManager_FileLocker.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Launcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Launcher.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Launcher_Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Launcher_Account.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Launcher_Autologin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Launcher_Autologin.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Launcher_CoherentWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Launcher_CoherentWatcher.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Launcher_LinkedProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Launcher_LinkedProcess.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Launcher_NetworkAuthorization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Launcher_NetworkAuthorization.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Launcher_RunAfter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Launcher_RunAfter.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Launcher_WindowEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Launcher_WindowEvents.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Launcher_WindowLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Launcher_WindowLock.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Launcher_WindowWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Launcher_WindowWatcher.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/ProcessSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/ProcessSettings.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/ProxyLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/ProxyLauncher.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Steam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Steam.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/SteamProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/SteamProxy.cs -------------------------------------------------------------------------------- /Gw2Launcher/Client/Variables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Client/Variables.cs -------------------------------------------------------------------------------- /Gw2Launcher/DataPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/DataPath.cs -------------------------------------------------------------------------------- /Gw2Launcher/Gw2Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Gw2Launcher.csproj -------------------------------------------------------------------------------- /Gw2Launcher/IO/CrcStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/IO/CrcStream.cs -------------------------------------------------------------------------------- /Gw2Launcher/Messaging/LaunchMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Messaging/LaunchMessage.cs -------------------------------------------------------------------------------- /Gw2Launcher/Messaging/MappedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Messaging/MappedMessage.cs -------------------------------------------------------------------------------- /Gw2Launcher/Messaging/Messaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Messaging/Messaging.cs -------------------------------------------------------------------------------- /Gw2Launcher/Messaging/UpdateMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Messaging/UpdateMessage.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/AssetDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/AssetDownloader.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/AssetProxy/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/AssetProxy/Cache.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/AssetProxy/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/AssetProxy/Client.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/AssetProxy/HttpStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/AssetProxy/HttpStream.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/AssetProxy/IPPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/AssetProxy/IPPool.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/AssetProxy/ProxyServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/AssetProxy/ProxyServer.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/AssetProxy/ServerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/AssetProxy/ServerController.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/BpsLimiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/BpsLimiter.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/Dns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/Dns.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/DnsServers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/DnsServers.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/IP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/IP.cs -------------------------------------------------------------------------------- /Gw2Launcher/Net/TcpClientSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Net/TcpClientSocket.cs -------------------------------------------------------------------------------- /Gw2Launcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Program.cs -------------------------------------------------------------------------------- /Gw2Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Gw2Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Properties/Resources.resx -------------------------------------------------------------------------------- /Gw2Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Properties/Settings.settings -------------------------------------------------------------------------------- /Gw2Launcher/Resources/Gw1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/Gw1.ico -------------------------------------------------------------------------------- /Gw2Launcher/Resources/Gw2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/Gw2.ico -------------------------------------------------------------------------------- /Gw2Launcher/Resources/Gw2Launcher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/Gw2Launcher.ico -------------------------------------------------------------------------------- /Gw2Launcher/Resources/Task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/Task.xml -------------------------------------------------------------------------------- /Gw2Launcher/Resources/daily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/daily.png -------------------------------------------------------------------------------- /Gw2Launcher/Resources/hot32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/hot32.png -------------------------------------------------------------------------------- /Gw2Launcher/Resources/icon42684.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/icon42684.png -------------------------------------------------------------------------------- /Gw2Launcher/Resources/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/login.png -------------------------------------------------------------------------------- /Gw2Launcher/Resources/loginreward0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/loginreward0.jpg -------------------------------------------------------------------------------- /Gw2Launcher/Resources/loginreward1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/loginreward1.jpg -------------------------------------------------------------------------------- /Gw2Launcher/Resources/loginreward2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/loginreward2.jpg -------------------------------------------------------------------------------- /Gw2Launcher/Resources/loginreward3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/loginreward3.jpg -------------------------------------------------------------------------------- /Gw2Launcher/Resources/loginreward4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/loginreward4.jpg -------------------------------------------------------------------------------- /Gw2Launcher/Resources/loginreward5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/loginreward5.jpg -------------------------------------------------------------------------------- /Gw2Launcher/Resources/loginreward6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/loginreward6.jpg -------------------------------------------------------------------------------- /Gw2Launcher/Resources/loginreward7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/loginreward7.jpg -------------------------------------------------------------------------------- /Gw2Launcher/Resources/loginreward8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/loginreward8.jpg -------------------------------------------------------------------------------- /Gw2Launcher/Resources/loginreward9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/loginreward9.jpg -------------------------------------------------------------------------------- /Gw2Launcher/Resources/mailfull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/mailfull.png -------------------------------------------------------------------------------- /Gw2Launcher/Resources/pof32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Resources/pof32.png -------------------------------------------------------------------------------- /Gw2Launcher/Security/Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Security/Credentials.cs -------------------------------------------------------------------------------- /Gw2Launcher/Security/Cryptography/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Security/Cryptography/Crypto.cs -------------------------------------------------------------------------------- /Gw2Launcher/Security/Cryptography/ProtectedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Security/Cryptography/ProtectedString.cs -------------------------------------------------------------------------------- /Gw2Launcher/Security/Impersonation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Security/Impersonation.cs -------------------------------------------------------------------------------- /Gw2Launcher/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Settings.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/AutoUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/AutoUpdate.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/BackgroundPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/BackgroundPatcher.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Backup/AccountExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Backup/AccountExporter.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Backup/Backup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Backup/Backup.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/CoherentMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/CoherentMonitor.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Dat/Compression/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Dat/Compression/Archive.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Dat/Compression/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Dat/Compression/Crc32.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Dat/Compression/IO/BitStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Dat/Compression/IO/BitStream.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Dat/Compression/IO/FileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Dat/Compression/IO/FileStream.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Dat/Compression/Tree/BinaryTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Dat/Compression/Tree/BinaryTree.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Dat/Compression/Tree/TreeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Dat/Compression/Tree/TreeBuilder.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Dat/DatFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Dat/DatFile.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Dat/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Dat/Manifest.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/DatUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/DatUpdater.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/DataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/DataCache.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/DataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/DataStore.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Gfx/Xml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Gfx/Xml.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Gw2Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Gw2Build.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Gw2Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Gw2Cache.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Gw2Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Gw2Logs.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Hotkeys/HotkeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Hotkeys/HotkeyInfo.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Hotkeys/HotkeyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Hotkeys/HotkeyManager.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Hotkeys/Hotkeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Hotkeys/Hotkeys.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Icons.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Images.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/JumpList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/JumpList.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Markers/Marker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Markers/Marker.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Markers/MarkerIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Markers/MarkerIcons.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Markers/MarkerMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Markers/MarkerMonitor.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Mumble/MumbleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Mumble/MumbleData.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Mumble/MumbleMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Mumble/MumbleMonitor.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Notes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Notes.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/ProcessPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/ProcessPriority.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/QueuedAccountApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/QueuedAccountApi.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Screenshots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Screenshots.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Shared/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Shared/Icons.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Shared/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Shared/Images.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Shared/Values.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Shared/Values.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Statistics.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Temp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Temp.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/Totp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/Totp.cs -------------------------------------------------------------------------------- /Gw2Launcher/Tools/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Tools/WindowManager.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Affinity/formAffinitySelectDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Affinity/formAffinitySelectDialog.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Affinity/formAffinitySelectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Affinity/formAffinitySelectDialog.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Affinity/formAffinitySelectDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Affinity/formAffinitySelectDialog.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formAccountExport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formAccountExport.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formAccountExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formAccountExport.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formAccountExport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formAccountExport.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formAccountImport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formAccountImport.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formAccountImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formAccountImport.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formAccountImport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formAccountImport.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formBackupRestore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formBackupRestore.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formBackupRestore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formBackupRestore.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formBackupRestore.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formBackupRestore.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formBackupRestoreImport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formBackupRestoreImport.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formBackupRestoreImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formBackupRestoreImport.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Backup/formBackupRestoreImport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Backup/formBackupRestoreImport.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Base/BaseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Base/BaseControl.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Base/BaseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Base/BaseForm.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Base/BaseLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Base/BaseLabel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Base/FlatBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Base/FlatBase.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Base/PopupFlatBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Base/PopupFlatBase.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Base/PopupUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Base/PopupUtil.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Base/ShowWithoutActivation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Base/ShowWithoutActivation.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Base/StackFormBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Base/StackFormBase.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/ColorPicker/Controls/AlphaPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/ColorPicker/Controls/AlphaPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/ColorPicker/Controls/BaseColorPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/ColorPicker/Controls/BaseColorPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/ColorPicker/Controls/ColorPreviewPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/ColorPicker/Controls/ColorPreviewPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/ColorPicker/Controls/HuePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/ColorPicker/Controls/HuePanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/ColorPicker/Controls/ShadePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/ColorPicker/Controls/ShadePanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/ColorPicker/formColorDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/ColorPicker/formColorDialog.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/ColorPicker/formColorDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/ColorPicker/formColorDialog.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/ColorPicker/formColorDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/ColorPicker/formColorDialog.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/AccountBarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/AccountBarButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/AccountGridButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/AccountGridButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/AccountGridButtonContainer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/AccountGridButtonContainer.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/AccountGridButtonContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/AccountGridButtonContainer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/AccountGridButtonContainer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/AccountGridButtonContainer.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/AccountGridButtonPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/AccountGridButtonPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/AffinityAccountsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/AffinityAccountsPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/AffinityDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/AffinityDisplay.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ApplyAllCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ApplyAllCheckBox.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ArrowButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ArrowButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/AutoScrollContainerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/AutoScrollContainerPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/BoxedLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/BoxedLabel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/BoxedLabelPasswordBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/BoxedLabelPasswordBox.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/BoxedLabelTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/BoxedLabelTextBox.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/CircleTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/CircleTimer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ContextMenuStripStayOpenOnClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ContextMenuStripStayOpenOnClick.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/CopyButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/CopyButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/DailyAchievement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/DailyAchievement.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/DailyCategoryBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/DailyCategoryBar.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ExtendableTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ExtendableTextBox.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/FlatButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/FlatButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/FlatIntegerTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/FlatIntegerTextBox.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/FlatMarkerIconButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/FlatMarkerIconButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/FlatProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/FlatProgressBar.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/FlatShapeButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/FlatShapeButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/FlatSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/FlatSlider.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/FlatTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/FlatTextBox.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/FlatVScrollBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/FlatVScrollBar.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/FlatVerticalButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/FlatVerticalButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/GradientLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/GradientLabel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/GradientLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/GradientLine.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/HotkeyContainerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/HotkeyContainerPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/HotkeyGroupsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/HotkeyGroupsPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/HotkeyInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/HotkeyInput.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/IntegerTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/IntegerTextBox.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/LabelButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/LabelButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/LinkLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/LinkLabel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ListPanel/ControlListPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ListPanel/ControlListPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ListPanel/LabelListPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ListPanel/LabelListPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ListPanel/MarkerListPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ListPanel/MarkerListPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/NewAccountGridButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/NewAccountGridButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/NoteMessage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/NoteMessage.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/NoteMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/NoteMessage.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/NoteMessage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/NoteMessage.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/PasswordBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/PasswordBox.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/PopoutButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/PopoutButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ProgressGraph.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ProgressGraph.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ProgressGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ProgressGraph.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ProgressGraph.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ProgressGraph.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/RoundedLabelButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/RoundedLabelButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ScaledDataGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ScaledDataGridView.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ScrollablePanelContainer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ScrollablePanelContainer.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ScrollablePanelContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ScrollablePanelContainer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ScrollablePanelContainer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ScrollablePanelContainer.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/SelectionDataGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/SelectionDataGridView.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/SidebarButton.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/SidebarButton.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/SidebarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/SidebarButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/SidebarButton.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/SidebarButton.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/SidebarPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/SidebarPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/SizeDragButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/SizeDragButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/StackPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/StackPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/TableContainerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/TableContainerPanel.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/TimeTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/TimeTextBox.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/ToolStripMenuItemStayOpenOnClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/ToolStripMenuItemStayOpenOnClick.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/TransparentFlatButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/TransparentFlatButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Controls/WaitingBounce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Controls/WaitingBounce.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Markers/formMarker.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Markers/formMarker.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Markers/formMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Markers/formMarker.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Markers/formMarker.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Markers/formMarker.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Markers/formMarkerReset.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Markers/formMarkerReset.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Markers/formMarkerReset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Markers/formMarkerReset.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Markers/formMarkerReset.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Markers/formMarkerReset.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Markers/formMarkerTrigger.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Markers/formMarkerTrigger.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Markers/formMarkerTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Markers/formMarkerTrigger.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/Markers/formMarkerTrigger.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Markers/formMarkerTrigger.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/QuickStart/formAccount.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/QuickStart/formAccount.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/QuickStart/formAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/QuickStart/formAccount.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/QuickStart/formAccount.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/QuickStart/formAccount.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/QuickStart/formQuickStart.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/QuickStart/formQuickStart.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/QuickStart/formQuickStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/QuickStart/formQuickStart.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/QuickStart/formQuickStart.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/QuickStart/formQuickStart.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/Tooltip/FloatingTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/Tooltip/FloatingTooltip.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/UiColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/UiColors.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/UiProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/UiProperty.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/TemplateDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/TemplateDisplay.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formCustomTemplate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formCustomTemplate.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formCustomTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formCustomTemplate.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formCustomTemplate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formCustomTemplate.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formGridSize.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formGridSize.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formGridSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formGridSize.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formGridSize.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formGridSize.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formTemplates.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formTemplates.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formTemplates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formTemplates.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formTemplates.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formTemplates.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formTemplatesCompact.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formTemplatesCompact.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formTemplatesCompact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formTemplatesCompact.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formTemplatesCompact.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formTemplatesCompact.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formWindowSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formWindowSize.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formWindowSize.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formWindowSize.designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/WindowPositioning/formWindowSize.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/WindowPositioning/formWindowSize.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccount.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccount.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccount.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccount.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccount.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccountBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccountBar.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccountSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccountSelect.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccountSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccountSelect.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccountSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccountSelect.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccountTooltip.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccountTooltip.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccountTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccountTooltip.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccountTooltip.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccountTooltip.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccountType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccountType.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccountType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccountType.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAccountType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAccountType.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAssetProxy.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAssetProxy.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAssetProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAssetProxy.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAssetProxy.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAssetProxy.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAutologinConfig.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAutologinConfig.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAutologinConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAutologinConfig.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formAutologinConfig.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formAutologinConfig.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBackgroundPatcher.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBackgroundPatcher.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBackgroundPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBackgroundPatcher.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBackgroundPatcher.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBackgroundPatcher.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBrowseGwDat.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBrowseGwDat.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBrowseGwDat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBrowseGwDat.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBrowseGwDat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBrowseGwDat.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBrowseLocalDat.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBrowseLocalDat.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBrowseLocalDat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBrowseLocalDat.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBrowseLocalDat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBrowseLocalDat.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBrowseLocalDatQuick.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBrowseLocalDatQuick.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBrowseLocalDatQuick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBrowseLocalDatQuick.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formBrowseLocalDatQuick.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formBrowseLocalDatQuick.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formChangelog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formChangelog.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formChangelog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formChangelog.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formChangelog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formChangelog.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formCleanup.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formCleanup.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formCleanup.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formCleanup.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formCleanup.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formClone.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formClone.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formClone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formClone.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formClone.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formClone.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formColors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formColors.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formColors.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formColors.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formColors.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formCompassOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formCompassOverlay.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formCopyFileDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formCopyFileDialog.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formCopyFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formCopyFileDialog.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formCopyFileDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formCopyFileDialog.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formDailies.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formDailies.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formDailies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formDailies.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formDailies.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formDailies.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formDnsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formDnsDialog.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formDnsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formDnsDialog.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formDnsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formDnsDialog.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formExtendedTextBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formExtendedTextBox.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formExtendedTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formExtendedTextBox.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formExtendedTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formExtendedTextBox.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formFileScan.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formFileScan.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formFileScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formFileScan.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formFileScan.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formFileScan.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formGw2Cache.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formGw2Cache.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formGw2Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formGw2Cache.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formGw2Cache.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formGw2Cache.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formHotkey.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formHotkey.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formHotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formHotkey.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formHotkey.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formHotkey.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formLog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formLog.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formLog.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formLog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formLog.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formMain.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formMain.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formMain.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formManagedInactiveUsers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formManagedInactiveUsers.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formManagedInactiveUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formManagedInactiveUsers.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formManagedInactiveUsers.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formManagedInactiveUsers.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formMaskOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formMaskOverlay.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formMenu.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formMenu.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formMenu.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formMenu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formMenu.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formMoveToPage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formMoveToPage.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formMoveToPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formMoveToPage.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formMoveToPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formMoveToPage.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNetworkChanged.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNetworkChanged.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNetworkChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNetworkChanged.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNetworkChanged.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNetworkChanged.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNote.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNote.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNote.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNote.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNote.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNotes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNotes.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNotes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNotes.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNotes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNotes.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNotify.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNotify.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNotify.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formNotify.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formNotify.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formPassword.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formPassword.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formPassword.designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formPassword.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formPassword.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formProcessSettingsPopup.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formProcessSettingsPopup.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formProcessSettingsPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formProcessSettingsPopup.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formProcessSettingsPopup.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formProcessSettingsPopup.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formProgressBar.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formProgressOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formProgressOverlay.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formRunAfter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formRunAfter.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formRunAfter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formRunAfter.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formRunAfter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formRunAfter.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formRunAfterPopup.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formRunAfterPopup.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formRunAfterPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formRunAfterPopup.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formRunAfterPopup.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formRunAfterPopup.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formScreenPosition.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formScreenPosition.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formScreenPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formScreenPosition.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formScreenPosition.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formScreenPosition.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formSettings.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formSettings.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formSettings.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formShortcutType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formShortcutType.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formShortcutType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formShortcutType.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formShortcutType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formShortcutType.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formSizingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formSizingBox.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formSupport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formSupport.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formSupport.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formSupport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formSupport.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formText.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formText.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formText.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formText.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formText.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formUpdating.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formUpdating.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formUpdating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formUpdating.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formUpdating.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formUpdating.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formVariables.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formVariables.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formVariables.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formVariables.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formVariables.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formVersionUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formVersionUpdate.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formVersionUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formVersionUpdate.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formVersionUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formVersionUpdate.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formWaiting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formWaiting.Designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formWaiting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formWaiting.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formWaiting.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formWaiting.resx -------------------------------------------------------------------------------- /Gw2Launcher/UI/formWindowsAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formWindowsAccount.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formWindowsAccount.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formWindowsAccount.designer.cs -------------------------------------------------------------------------------- /Gw2Launcher/UI/formWindowsAccount.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/UI/formWindowsAccount.resx -------------------------------------------------------------------------------- /Gw2Launcher/Util/AccountComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/AccountComparer.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Accounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Accounts.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/AlphanumericStringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/AlphanumericStringComparer.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Args.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Args.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Array.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Bitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Bitmap.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Bits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Bits.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/CheckedButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/CheckedButton.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Color.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/ComboItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/ComboItem.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/DatFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/DatFiles.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Dpi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Dpi.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/EnabledEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/EnabledEvent.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Explorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Explorer.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/FileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/FileUtil.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/IPEndPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/IPEndPoint.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Invoke.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Logging.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Loop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Loop.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/NumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/NumericUpDown.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/PerfCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/PerfCounter.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/ProcessUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/ProcessUtil.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/RectangleConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/RectangleConstraint.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/ReusableControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/ReusableControls.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/ScheduledEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/ScheduledEvents.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/ScreenUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/ScreenUtil.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/SortedQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/SortedQueue.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Text.cs -------------------------------------------------------------------------------- /Gw2Launcher/Util/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Util/Users.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/Clipboard.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/Cursors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/Cursors.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/DebugEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/DebugEvents.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/DragHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/DragHelper.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/FileCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/FileCopy.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/FileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/FileDialog.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/FindWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/FindWindow.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/Hosts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/Hosts.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/Hotkeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/Hotkeys.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/JumpList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/JumpList.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/Keyboard.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/LastInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/LastInput.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/Native/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/Native/Native.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/Native/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/Native/NativeMethods.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/ProcessInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/ProcessInfo.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/ShellIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/ShellIcons.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/Shortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/Shortcut.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/Symlink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/Symlink.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/TaskBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/TaskBar.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/Volume.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/Win32Handles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/Win32Handles.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/WindowLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/WindowLong.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/WindowProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/WindowProperties.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/WindowShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/WindowShadow.cs -------------------------------------------------------------------------------- /Gw2Launcher/Windows/WindowSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/Windows/WindowSize.cs -------------------------------------------------------------------------------- /Gw2Launcher/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/app.manifest -------------------------------------------------------------------------------- /Gw2Launcher/bin/Release/Gw2Launcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/bin/Release/Gw2Launcher.exe -------------------------------------------------------------------------------- /Gw2Launcher/bin64/Beta/Gw2Launcher.alpha.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/bin64/Beta/Gw2Launcher.alpha.exe -------------------------------------------------------------------------------- /Gw2Launcher/bin64/Beta/Gw2Launcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/bin64/Beta/Gw2Launcher.exe -------------------------------------------------------------------------------- /Gw2Launcher/bin64/Release/Gw2Launcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/bin64/Release/Gw2Launcher.exe -------------------------------------------------------------------------------- /Gw2Launcher/bin64/Samples/Gw2FrameChanger.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/bin64/Samples/Gw2FrameChanger.exe -------------------------------------------------------------------------------- /Gw2Launcher/update/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/update/changelog -------------------------------------------------------------------------------- /Gw2Launcher/update/core-32.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/update/core-32.pak -------------------------------------------------------------------------------- /Gw2Launcher/update/core-64.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/Gw2Launcher/update/core-64.pak -------------------------------------------------------------------------------- /Gw2Launcher/update/version: -------------------------------------------------------------------------------- 1 | 21 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /ProcessUtil/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/ProcessUtil/App.config -------------------------------------------------------------------------------- /ProcessUtil/ProcessUtil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/ProcessUtil/ProcessUtil.csproj -------------------------------------------------------------------------------- /ProcessUtil/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/ProcessUtil/Program.cs -------------------------------------------------------------------------------- /ProcessUtil/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/ProcessUtil/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProcessUtil/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/ProcessUtil/Win32.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Healix/Gw2Launcher/HEAD/README.md --------------------------------------------------------------------------------