Skip to content

Commit 5c3ad9b

Browse files
Add project files.
0 parents  commit 5c3ad9b

262 files changed

Lines changed: 34196 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
name: Bug report
2+
description: Report a reproducible CMAPI runtime, API, launcher, or Mod Menu issue.
3+
title: "[Bug]: "
4+
labels:
5+
- bug
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Remove outdated mods before reporting a game issue. Do not upload private saves, Steam invitation codes, or credentials without reviewing them first.
11+
- type: input
12+
id: cmapi-version
13+
attributes:
14+
label: CMAPI version
15+
placeholder: 0.9.0
16+
validations:
17+
required: true
18+
- type: input
19+
id: menu-version
20+
attributes:
21+
label: Mod Menu version
22+
description: Enter "not injected" if the optional menu was not used.
23+
placeholder: 0.2.2 or not injected
24+
validations:
25+
required: true
26+
- type: input
27+
id: game-version
28+
attributes:
29+
label: Planet Crafter version and Assembly-CSharp MVID
30+
description: Copy both values from the `gameinfo` command.
31+
validations:
32+
required: true
33+
- type: dropdown
34+
id: session
35+
attributes:
36+
label: Session type
37+
options:
38+
- Single-player / host
39+
- Joining multiplayer client
40+
- Title screen
41+
- Launcher only
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: problem
46+
attributes:
47+
label: What happened?
48+
description: State what you expected and what happened instead.
49+
validations:
50+
required: true
51+
- type: textarea
52+
id: reproduce
53+
attributes:
54+
label: Reproduction steps
55+
placeholder: |
56+
1. Start CMAPI through Steam
57+
2. Load a disposable world
58+
3. ...
59+
validations:
60+
required: true
61+
- type: textarea
62+
id: diagnostics
63+
attributes:
64+
label: Diagnostics and logs
65+
description: Paste `health_check` and the relevant CMAPI/BepInEx error lines, or attach the full logs after reviewing them.
66+
render: text
67+
validations:
68+
required: true
69+
- type: checkboxes
70+
id: confirmation
71+
attributes:
72+
label: Safety checks
73+
options:
74+
- label: I reproduced this with unrelated/outdated mods removed.
75+
required: true
76+
- label: I backed up the affected save and reviewed attached files for private data.
77+
required: true

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Visual Studio and IDE state
2+
.vs/
3+
.vscode/
4+
.idea/
5+
*.suo
6+
*.user
7+
*.userosscache
8+
*.sln.docstates
9+
*.DotSettings.user
10+
_ReSharper*/
11+
*.ReSharper
12+
13+
# .NET build output
14+
[Bb]in/
15+
[Oo]bj/
16+
[Dd]ebug/
17+
[Rr]elease/
18+
x64/
19+
x86/
20+
[Aa]rtifacts/
21+
TestResults/
22+
BenchmarkDotNet.Artifacts/
23+
24+
# Published packages and symbols
25+
*.nupkg
26+
*.snupkg
27+
*.pdb
28+
*.mdb
29+
*.cache
30+
*.tmp
31+
*.temp
32+
33+
# NuGet working files
34+
packages/
35+
*.nuget.props
36+
*.nuget.targets
37+
38+
# Local Planet Crafter, Unity, and Netcode references
39+
/CMAPI/Libs/*
40+
!/CMAPI/Libs/README.md
41+
42+
# Pinned native Doorstop release input is supplied by the release builder
43+
/vendor/UnityDoorstop/*
44+
!/vendor/UnityDoorstop/README.md
45+
!/vendor/UnityDoorstop/PIN.json
46+
47+
# Runtime output and local diagnostics
48+
*.log
49+
logs/
50+
crash-reports/
51+
52+
# Release staging
53+
/artifacts/
54+
/publish/
55+
/staging/
56+
57+
# Operating-system files
58+
.DS_Store
59+
Thumbs.db
60+
Desktop.ini
61+
$RECYCLE.BIN/
62+
63+
# Temporary files created during local testing
64+
*.bak
65+
*.old
66+
*.orig

0 commit comments

Comments
 (0)