forked from Frodo45127/rpfm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
79 lines (57 loc) · 1.7 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Compilation folder for Rust & Company.
/target/
# Folder for getting in the DDS plugin working on windows.
/imageformats/
# This specific lib is generated on UI build. No need to add it to the repo.
/libs/libqt_subclasses.a
# Intellij Config folder and files.
/.idea/
rpfm-code.iml
# KDE directory config file.
.directory
# MakeFiles, because the build process already generates them automagically.
**/Makefile
# This one is generated by QMake when building.
**/.qmake.stash
# Config file for Qt Creator.
*.pro.user
# Backup files.
**/*.rs.bk
# These are usually files locked by applications.
*.*~
# Sublime Config files.
*.sublime-project
*.sublime-workspace
# Folder where the PAK Files go. We don't want them added to the repo, as each user should generate their own ones.
/pak_files/
# This one is the file generated by the "Missing Table Definitions" feature.
missing_table_definitions.txt
# Old crash logs.
rpfm.log
# New UI logs.
rpfm_ui.log
# Old RPFM Config files. These should not be added.
settings.json
shortcuts.json
table_state.json
# New RPFM Config files. This one shouldn't be added either.
settings.ron
shortcuts.ron
# This one is a separate repo.
/templates/
# This one is a separate thing, not tracked.
/templates_custom/
# This one is another separate thing, not tracked.
/schemas/
# This one is another separate thing, not tracked.
/autosaves/
# Subclasses lib compilation files.
/rpfm_ui/qt_subclasses/Makefile.*
/rpfm_ui/qt_subclasses/qt_subclasses.pro.*
# Files created during tests.
/test_files/PFH0_test_encode.pack
/test_files/PFH2_test_encode.pack
/test_files/PFH3_test_encode.pack
/test_files/PFH4_test_encode.pack
/test_files/PFH5_test_encode.pack
/test_files/PFH6_test_encode.pack