├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── App.config ├── Assets ├── command_block_logo.ico └── icons8 │ ├── attribution.txt │ ├── icon_back.png │ ├── icon_forward.png │ ├── reload.png │ └── search.png ├── Browser └── ControlExtensions.cs ├── Config ├── AboutInfo.json └── VersionInfo.json ├── Constants └── TemplateTexts.cs ├── Data ├── AboutInfo.cs ├── AppPreferences.cs ├── DatapackElement.cs ├── DatapackInfo.cs ├── DatapackVersion.cs ├── JSONContainers │ ├── PackInfo.cs │ └── TagFunction.cs ├── SettingsProvider.cs └── VersionManifest.cs ├── Dialogs ├── AboutDialog.Designer.cs ├── AboutDialog.cs ├── AboutDialog.resx ├── AddElementDialog.Designer.cs ├── AddElementDialog.cs ├── AddElementDialog.resx ├── NewProjectDialog.Designer.cs ├── NewProjectDialog.cs ├── NewProjectDialog.resx ├── OpenProjectDialog.Designer.cs ├── OpenProjectDialog.cs ├── OpenProjectDialog.resx ├── SettingsDialog.Designer.cs ├── SettingsDialog.cs ├── SettingsDialog.resx ├── WebBrowserDialog.Designer.cs ├── WebBrowserDialog.cs └── WebBrowserDialog.resx ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Global.cs ├── LICENSE ├── Lexers └── MCFunctionLexer.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MinecraftDatapackStudio.csproj ├── MinecraftDatapackStudio.sln ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resources ├── Clock.ico ├── Clock.png ├── DeleteHS.png ├── GoToNextMessage.png ├── GoToPreviousMessage.png └── LineColorHS.png ├── Theme ├── ColorScheme.cs ├── DarkColorScheme.cs └── LightColorScheme.cs ├── Utilities.cs ├── app.manifest ├── command_block_logo.ico └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/App.config -------------------------------------------------------------------------------- /Assets/command_block_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Assets/command_block_logo.ico -------------------------------------------------------------------------------- /Assets/icons8/attribution.txt: -------------------------------------------------------------------------------- 1 | Icons by https://icons8.com -------------------------------------------------------------------------------- /Assets/icons8/icon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Assets/icons8/icon_back.png -------------------------------------------------------------------------------- /Assets/icons8/icon_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Assets/icons8/icon_forward.png -------------------------------------------------------------------------------- /Assets/icons8/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Assets/icons8/reload.png -------------------------------------------------------------------------------- /Assets/icons8/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Assets/icons8/search.png -------------------------------------------------------------------------------- /Browser/ControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Browser/ControlExtensions.cs -------------------------------------------------------------------------------- /Config/AboutInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Config/AboutInfo.json -------------------------------------------------------------------------------- /Config/VersionInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Config/VersionInfo.json -------------------------------------------------------------------------------- /Constants/TemplateTexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Constants/TemplateTexts.cs -------------------------------------------------------------------------------- /Data/AboutInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Data/AboutInfo.cs -------------------------------------------------------------------------------- /Data/AppPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Data/AppPreferences.cs -------------------------------------------------------------------------------- /Data/DatapackElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Data/DatapackElement.cs -------------------------------------------------------------------------------- /Data/DatapackInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Data/DatapackInfo.cs -------------------------------------------------------------------------------- /Data/DatapackVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Data/DatapackVersion.cs -------------------------------------------------------------------------------- /Data/JSONContainers/PackInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Data/JSONContainers/PackInfo.cs -------------------------------------------------------------------------------- /Data/JSONContainers/TagFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Data/JSONContainers/TagFunction.cs -------------------------------------------------------------------------------- /Data/SettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Data/SettingsProvider.cs -------------------------------------------------------------------------------- /Data/VersionManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Data/VersionManifest.cs -------------------------------------------------------------------------------- /Dialogs/AboutDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/AboutDialog.Designer.cs -------------------------------------------------------------------------------- /Dialogs/AboutDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/AboutDialog.cs -------------------------------------------------------------------------------- /Dialogs/AboutDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/AboutDialog.resx -------------------------------------------------------------------------------- /Dialogs/AddElementDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/AddElementDialog.Designer.cs -------------------------------------------------------------------------------- /Dialogs/AddElementDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/AddElementDialog.cs -------------------------------------------------------------------------------- /Dialogs/AddElementDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/AddElementDialog.resx -------------------------------------------------------------------------------- /Dialogs/NewProjectDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/NewProjectDialog.Designer.cs -------------------------------------------------------------------------------- /Dialogs/NewProjectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/NewProjectDialog.cs -------------------------------------------------------------------------------- /Dialogs/NewProjectDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/NewProjectDialog.resx -------------------------------------------------------------------------------- /Dialogs/OpenProjectDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/OpenProjectDialog.Designer.cs -------------------------------------------------------------------------------- /Dialogs/OpenProjectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/OpenProjectDialog.cs -------------------------------------------------------------------------------- /Dialogs/OpenProjectDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/OpenProjectDialog.resx -------------------------------------------------------------------------------- /Dialogs/SettingsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/SettingsDialog.Designer.cs -------------------------------------------------------------------------------- /Dialogs/SettingsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/SettingsDialog.cs -------------------------------------------------------------------------------- /Dialogs/SettingsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/SettingsDialog.resx -------------------------------------------------------------------------------- /Dialogs/WebBrowserDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/WebBrowserDialog.Designer.cs -------------------------------------------------------------------------------- /Dialogs/WebBrowserDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/WebBrowserDialog.cs -------------------------------------------------------------------------------- /Dialogs/WebBrowserDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Dialogs/WebBrowserDialog.resx -------------------------------------------------------------------------------- /FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/FodyWeavers.xml -------------------------------------------------------------------------------- /FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/FodyWeavers.xsd -------------------------------------------------------------------------------- /Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Global.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/LICENSE -------------------------------------------------------------------------------- /Lexers/MCFunctionLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Lexers/MCFunctionLexer.cs -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/MainForm.resx -------------------------------------------------------------------------------- /MinecraftDatapackStudio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/MinecraftDatapackStudio.csproj -------------------------------------------------------------------------------- /MinecraftDatapackStudio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/MinecraftDatapackStudio.sln -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Clock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Resources/Clock.ico -------------------------------------------------------------------------------- /Resources/Clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Resources/Clock.png -------------------------------------------------------------------------------- /Resources/DeleteHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Resources/DeleteHS.png -------------------------------------------------------------------------------- /Resources/GoToNextMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Resources/GoToNextMessage.png -------------------------------------------------------------------------------- /Resources/GoToPreviousMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Resources/GoToPreviousMessage.png -------------------------------------------------------------------------------- /Resources/LineColorHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Resources/LineColorHS.png -------------------------------------------------------------------------------- /Theme/ColorScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Theme/ColorScheme.cs -------------------------------------------------------------------------------- /Theme/DarkColorScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Theme/DarkColorScheme.cs -------------------------------------------------------------------------------- /Theme/LightColorScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Theme/LightColorScheme.cs -------------------------------------------------------------------------------- /Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/Utilities.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/app.manifest -------------------------------------------------------------------------------- /command_block_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/command_block_logo.ico -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeppiidev/MinecraftDatapackStudio/HEAD/packages.config --------------------------------------------------------------------------------