Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
**/bin/
**/obj/
.vs/
.vscode/
.idea/
userconfig.txt
Thumbs.db
ehthumbs.db
.DS_Store
ScaffoldingReadMe.txt
*.suo
*.user
*.userosscache
*.sln.docstates
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

25 changes: 0 additions & 25 deletions MultiBloxy.sln

This file was deleted.

78 changes: 0 additions & 78 deletions MultiBloxy/Config.cs

This file was deleted.

170 changes: 0 additions & 170 deletions MultiBloxy/HandleCloser.cs

This file was deleted.

16 changes: 2 additions & 14 deletions MultiBloxy/Localization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,7 @@ private void LoadTranslations()
{ "ContextMenu.SettingsMenuItem.ResetRememberedMenuItem.ResetRemembered", "Reset Remembered Options" },
{ "ContextMenu.ExitMenuItem.Exit", "Exit" },
{ "Error.Mutex.Caption", "Failed to Create Mutex" },
{ "Error.Mutex.Message", "An error occurred while creating the Mutex. This likely happened because when {0} was launched, Roblox was already running and had registered its handle. You can do the following:" },
{ "Error.Mutex.Action.Fix", "Close the handle for all instances of Roblox" },
{ "Error.Mutex.Action.Abort", "Stop all Roblox instances" },
{ "Error.Mutex.Action.Retry", "Try again" },
{ "Error.Mutex.Action.Ignore", "Ignore the error and continue" },
{ "Error.Mutex.Action.Remember", "Remember this choice" },
{ "Error.Mutex.Action.Confirm", "Confirm" },
{ "Error.Mutex.Message", "An error occurred while creating the Mutex. This likely happened because when {0} was launched, Roblox was already running and had registered its handle. Try closing Roblox and try again." },
{ "Error.Singleton.Caption", "Singleton Error" },
{ "Error.Singleton.Message", "{0} is already running. Try looking in the system tray." }
};
Expand All @@ -60,13 +54,7 @@ private void LoadTranslations()
{ "ContextMenu.SettingsMenuItem.ResetRememberedMenuItem.ResetRemembered", "Сбросить запомненные параметры" },
{ "ContextMenu.ExitMenuItem.Exit", "Выход" },
{ "Error.Mutex.Caption", "Не удалось создать Mutex" },
{ "Error.Mutex.Message", "Произошла ошибка при создании Mutex. Скорее всего, это связано с тем, что при запуске {0} Roblox уже был запущен и успел зарегистрировать свой дескриптор. Вы можете сделать следующее:" },
{ "Error.Mutex.Action.Fix", "Закрыть дескриптор для всех экземпляров Roblox" },
{ "Error.Mutex.Action.Abort", "Закрыть все экземпляры Roblox" },
{ "Error.Mutex.Action.Retry", "Попробовать снова" },
{ "Error.Mutex.Action.Ignore", "Игнорировать ошибку и продолжить" },
{ "Error.Mutex.Action.Remember", "Запомнить этот выбор" },
{ "Error.Mutex.Action.Confirm", "Подтвердить" },
{ "Error.Mutex.Message", "Произошла ошибка при создании Mutex. Скорее всего, это связано с тем, что при запуске {0} Roblox уже был запущен и успел зарегистрировать свой дескриптор. Попробуйте закрыть Roblox и повторить попытку." },
{ "Error.Singleton.Caption", "Ошибка одиночного экземпляра" },
{ "Error.Singleton.Message", "{0} уже запущен. Попробуйте поискать в области уведомлений." }
};
Expand Down
9 changes: 7 additions & 2 deletions MultiBloxy/MultiBloxy.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
Expand All @@ -14,6 +15,7 @@
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<ProjectGuid>{9CBD2E5E-735B-4FE4-A56B-33032253C305}</ProjectGuid>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
Expand All @@ -24,6 +26,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
Expand All @@ -33,20 +36,22 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>

<ItemGroup>
<Compile Include="Config.cs" />
<Compile Include="HandleCloser.cs" />
<Compile Include="HandleCloser.cs" />
<Compile Include="Localization.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>

<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Loading