Skip to content

Commit 5bd9270

Browse files
committed
Initial commit
0 parents  commit 5bd9270

File tree

3 files changed

+321
-0
lines changed

3 files changed

+321
-0
lines changed

.gitignore

Lines changed: 309 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,309 @@
1+
# ---> VisualStudioCode
2+
.vscode/*
3+
!.vscode/settings.json
4+
!.vscode/tasks.json
5+
!.vscode/launch.json
6+
!.vscode/extensions.json
7+
!.vscode/*.code-snippets
8+
9+
# Local History for Visual Studio Code
10+
.history/
11+
12+
# Built Visual Studio Code Extensions
13+
*.vsix
14+
15+
# ---> Windows
16+
# Windows thumbnail cache files
17+
Thumbs.db
18+
Thumbs.db:encryptable
19+
ehthumbs.db
20+
ehthumbs_vista.db
21+
22+
# Dump file
23+
*.stackdump
24+
25+
# Folder config file
26+
[Dd]esktop.ini
27+
28+
# Recycle Bin used on file shares
29+
$RECYCLE.BIN/
30+
31+
# Windows Installer files
32+
*.cab
33+
*.msi
34+
*.msix
35+
*.msm
36+
*.msp
37+
38+
# Windows shortcuts
39+
*.lnk
40+
41+
# ---> macOS
42+
# General
43+
.DS_Store
44+
.AppleDouble
45+
.LSOverride
46+
47+
# Icon must end with two \r
48+
Icon
49+
50+
# Thumbnails
51+
._*
52+
53+
# Files that might appear in the root of a volume
54+
.DocumentRevisions-V100
55+
.fseventsd
56+
.Spotlight-V100
57+
.TemporaryItems
58+
.Trashes
59+
.VolumeIcon.icns
60+
.com.apple.timemachine.donotpresent
61+
62+
# Directories potentially created on remote AFP share
63+
.AppleDB
64+
.AppleDesktop
65+
Network Trash Folder
66+
Temporary Items
67+
.apdisk
68+
69+
# ---> JetBrains
70+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
71+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
72+
73+
# User-specific stuff
74+
.idea/**/workspace.xml
75+
.idea/**/tasks.xml
76+
.idea/**/usage.statistics.xml
77+
.idea/**/dictionaries
78+
.idea/**/shelf
79+
80+
# AWS User-specific
81+
.idea/**/aws.xml
82+
83+
# Generated files
84+
.idea/**/contentModel.xml
85+
86+
# Sensitive or high-churn files
87+
.idea/**/dataSources/
88+
.idea/**/dataSources.ids
89+
.idea/**/dataSources.local.xml
90+
.idea/**/sqlDataSources.xml
91+
.idea/**/dynamic.xml
92+
.idea/**/uiDesigner.xml
93+
.idea/**/dbnavigator.xml
94+
95+
# Gradle
96+
.idea/**/gradle.xml
97+
.idea/**/libraries
98+
99+
# Gradle and Maven with auto-import
100+
# When using Gradle or Maven with auto-import, you should exclude module files,
101+
# since they will be recreated, and may cause churn. Uncomment if using
102+
# auto-import.
103+
# .idea/artifacts
104+
# .idea/compiler.xml
105+
# .idea/jarRepositories.xml
106+
# .idea/modules.xml
107+
# .idea/*.iml
108+
# .idea/modules
109+
# *.iml
110+
# *.ipr
111+
112+
# CMake
113+
cmake-build-*/
114+
115+
# Mongo Explorer plugin
116+
.idea/**/mongoSettings.xml
117+
118+
# File-based project format
119+
*.iws
120+
121+
# IntelliJ
122+
out/
123+
124+
# mpeltonen/sbt-idea plugin
125+
.idea_modules/
126+
127+
# JIRA plugin
128+
atlassian-ide-plugin.xml
129+
130+
# Cursive Clojure plugin
131+
.idea/replstate.xml
132+
133+
# SonarLint plugin
134+
.idea/sonarlint/
135+
136+
# Crashlytics plugin (for Android Studio and IntelliJ)
137+
com_crashlytics_export_strings.xml
138+
crashlytics.properties
139+
crashlytics-build.properties
140+
fabric.properties
141+
142+
# Editor-based Rest Client
143+
.idea/httpRequests
144+
145+
# Android studio 3.1+ serialized cache file
146+
.idea/caches/build_file_checksums.ser
147+
148+
# ---> Python
149+
# Byte-compiled / optimized / DLL files
150+
__pycache__/
151+
*.py[cod]
152+
*$py.class
153+
154+
# C extensions
155+
*.so
156+
157+
# Distribution / packaging
158+
.Python
159+
build/
160+
develop-eggs/
161+
dist/
162+
downloads/
163+
eggs/
164+
.eggs/
165+
lib/
166+
lib64/
167+
parts/
168+
sdist/
169+
var/
170+
wheels/
171+
share/python-wheels/
172+
*.egg-info/
173+
.installed.cfg
174+
*.egg
175+
MANIFEST
176+
177+
# PyInstaller
178+
# Usually these files are written by a python script from a template
179+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
180+
*.manifest
181+
*.spec
182+
183+
# Installer logs
184+
pip-log.txt
185+
pip-delete-this-directory.txt
186+
187+
# Unit test / coverage reports
188+
htmlcov/
189+
.tox/
190+
.nox/
191+
.coverage
192+
.coverage.*
193+
.cache
194+
nosetests.xml
195+
coverage.xml
196+
*.cover
197+
*.py,cover
198+
.hypothesis/
199+
.pytest_cache/
200+
cover/
201+
202+
# Translations
203+
*.mo
204+
*.pot
205+
206+
# Django stuff:
207+
*.log
208+
local_settings.py
209+
db.sqlite3
210+
db.sqlite3-journal
211+
212+
# Flask stuff:
213+
instance/
214+
.webassets-cache
215+
216+
# Scrapy stuff:
217+
.scrapy
218+
219+
# Sphinx documentation
220+
docs/_build/
221+
222+
# PyBuilder
223+
.pybuilder/
224+
target/
225+
226+
# Jupyter Notebook
227+
.ipynb_checkpoints
228+
229+
# IPython
230+
profile_default/
231+
ipython_config.py
232+
233+
# pyenv
234+
# For a library or package, you might want to ignore these files since the code is
235+
# intended to run in multiple environments; otherwise, check them in:
236+
# .python-version
237+
238+
# pipenv
239+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
240+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
241+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
242+
# install all needed dependencies.
243+
#Pipfile.lock
244+
245+
# poetry
246+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
247+
# This is especially recommended for binary packages to ensure reproducibility, and is more
248+
# commonly ignored for libraries.
249+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
250+
#poetry.lock
251+
252+
# pdm
253+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
254+
#pdm.lock
255+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
256+
# in version control.
257+
# https://pdm.fming.dev/#use-with-ide
258+
.pdm.toml
259+
260+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
261+
__pypackages__/
262+
263+
# Celery stuff
264+
celerybeat-schedule
265+
celerybeat.pid
266+
267+
# SageMath parsed files
268+
*.sage.py
269+
270+
# Environments
271+
.env
272+
.venv
273+
env/
274+
venv/
275+
ENV/
276+
env.bak/
277+
venv.bak/
278+
279+
# Spyder project settings
280+
.spyderproject
281+
.spyproject
282+
283+
# Rope project settings
284+
.ropeproject
285+
286+
# mkdocs documentation
287+
/site
288+
289+
# mypy
290+
.mypy_cache/
291+
.dmypy.json
292+
dmypy.json
293+
294+
# Pyre type checker
295+
.pyre/
296+
297+
# pytype static type analyzer
298+
.pytype/
299+
300+
# Cython debug symbols
301+
cython_debug/
302+
303+
# PyCharm
304+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
305+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
306+
# and can be added to the global gitignore or merged into this file. For a more nuclear
307+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
308+
#.idea/
309+

LICENSE

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Ghink
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# omcl-core
2+
3+
OH! Minecraft Launcher Core

0 commit comments

Comments
 (0)