Initial commit
This commit is contained in:
54
.gitignore
vendored
54
.gitignore
vendored
@ -1,26 +1,28 @@
|
||||
# ---> D
|
||||
# Compiled Object files
|
||||
*.o
|
||||
*.obj
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
|
||||
# Compiled Static libraries
|
||||
*.a
|
||||
*.lib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
|
||||
# DUB
|
||||
.dub
|
||||
docs.json
|
||||
__dummy.html
|
||||
docs/
|
||||
|
||||
# Code coverage
|
||||
*.lst
|
||||
|
||||
# ---> D
|
||||
# Compiled Object files
|
||||
*.o
|
||||
*.obj
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
|
||||
# Compiled Static libraries
|
||||
*.a
|
||||
*.lib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
|
||||
# DUB
|
||||
.dub
|
||||
docs.json
|
||||
__dummy.html
|
||||
docs/
|
||||
|
||||
# Code coverage
|
||||
*.lst
|
||||
|
||||
# Program Database
|
||||
*.pdb
|
||||
|
||||
36
LICENSE
36
LICENSE
@ -1,18 +1,18 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2026 thirdworld
|
||||
|
||||
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:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial
|
||||
portions of the Software.
|
||||
|
||||
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.
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2026 thirdworld
|
||||
|
||||
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:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial
|
||||
portions of the Software.
|
||||
|
||||
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.
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
# thirdworld-login
|
||||
|
||||
# thirdworld-login
|
||||
|
||||
Implementation of Two Worlds II login.
|
||||
3
dscanner.ini
Normal file
3
dscanner.ini
Normal file
@ -0,0 +1,3 @@
|
||||
[analysis.config.StaticAnalysisConfig]
|
||||
number_style_check="disabled"
|
||||
long_line_check="disabled"
|
||||
6
dub.sdl
Normal file
6
dub.sdl
Normal 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
13
dub.selections.json
Normal 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
5
source/main.d
Normal file
@ -0,0 +1,5 @@
|
||||
import thirdworld.common.log;
|
||||
|
||||
void main() {
|
||||
logInfo("Test");
|
||||
}
|
||||
Reference in New Issue
Block a user