Initial commit

This commit is contained in:
Maxwell Ruben
2026-03-18 23:15:24 -05:00
parent 26a3593c64
commit 5230248fd4
7 changed files with 75 additions and 46 deletions

54
.gitignore vendored
View File

@ -1,26 +1,28 @@
# ---> D # ---> D
# Compiled Object files # Compiled Object files
*.o *.o
*.obj *.obj
# Compiled Dynamic libraries # Compiled Dynamic libraries
*.so *.so
*.dylib *.dylib
*.dll *.dll
# Compiled Static libraries # Compiled Static libraries
*.a *.a
*.lib *.lib
# Executables # Executables
*.exe *.exe
# DUB # DUB
.dub .dub
docs.json docs.json
__dummy.html __dummy.html
docs/ docs/
# Code coverage # Code coverage
*.lst *.lst
# Program Database
*.pdb

36
LICENSE
View File

@ -1,18 +1,18 @@
MIT License MIT License
Copyright (c) 2026 thirdworld Copyright (c) 2026 thirdworld
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 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 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 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 copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
following conditions: following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software. portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 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 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 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 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. USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -1,3 +1,3 @@
# thirdworld-login # thirdworld-login
Implementation of Two Worlds II login. Implementation of Two Worlds II login.

3
dscanner.ini Normal file
View File

@ -0,0 +1,3 @@
[analysis.config.StaticAnalysisConfig]
number_style_check="disabled"
long_line_check="disabled"

6
dub.sdl Normal file
View File

@ -0,0 +1,6 @@
name "thirdworld-login"
description "Implementation of Two Worlds II login."
authors "Maxwell Ruben"
copyright "Copyright © 2026, Maxwell Ruben"
license "MIT"
dependency "thirdworld-common" repository="git+https://git.mxruben.com/thirdworld/thirdworld-common" version="7400f13c68befa4bfd2b78bcdc4ae67a417cafd7"

13
dub.selections.json Normal file
View File

@ -0,0 +1,13 @@
{
"fileVersion": 1,
"versions": {
"during": "0.3.0",
"eventcore": "0.9.39",
"silly": "1.1.1",
"stdx-allocator": "2.77.5",
"taggedalgebraic": "1.0.1",
"thirdworld-common": {"version":"7400f13c68befa4bfd2b78bcdc4ae67a417cafd7","repository":"git+https://git.mxruben.com/thirdworld/thirdworld-common"},
"vibe-container": "1.7.1",
"vibe-core": "2.14.0"
}
}

5
source/main.d Normal file
View File

@ -0,0 +1,5 @@
import thirdworld.common.log;
void main() {
logInfo("Test");
}