-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
.gitignore
149 lines (124 loc) · 4.15 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# Files created during tests.
/test_files/ca_vp8_v0_encode.ca_vp8
/test_files/ca_vp8_v0_to_ivf_and_back.ca_vp8
/test_files/ca_vp8_v1_encode.ca_vp8
/test_files/ca_vp8_v1_short_encode.ca_vp8
/test_files/ca_vp8_v1_to_ivf_and_back.ca_vp8
/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
/test_files/test_encode.animpack
/test_files/test_encode_anim_*
/test_files/test_encode_atlas_*
/test_files/test_encode.bmd
/test_files/test_encode_font_*
/test_files/test_encode_iso_8859_1.html
/test_files/test_encode_utf8.html
/test_files/test_encode_utf8_with_bom.html
/test_files/test_encode_utf16_le.html
/test_files/test_encode_v1.unit_variant
/test_files/test_encode_v2.unit_variant
/test_files/test_encode_no_sqlite.loc
/test_files/test_encode_sqlite.loc
/test_files/test_encode_db_no_sqlite
/test_files/test_encode_db_sqlite
/test_files/test_encode_matched_combat.bin
/test_files/test_encode_anim_fragment_wh2.frg
/test_files/test_encode_anim_fragment_wh3.bin
/test_files/test_encode_anim_fragment_3k.bin
/test_files/test_encode_anims_table.bin
/test_files/test_encode_rfile.pack
/test_files/test_encode_anim_wh3.bin
/test_files/test_encode_matched_combat_wh3.bin
/test_files/test_encode_soundbank.bnk
/test_files/test_encode_portrait_settings_v4.bin
/test_files/test_encode_matched_combat_wh3.bin
/test_files/test_encode_matched_combat_3k_matched.bin
/test_files/test_encode_matched_combat_3k_trigger.bin
/test_files/test_encode_esf_caab.esf
/test_files/test_encode_uic_138.xml
/test_files/test_encode_wall.cs2.parsed
/test_files/test_encode_wall_corner.cs2.parsed
/test_files/fastbin/encode_*
/test_files/fastbin/v23_encode_*
/test_files/fastbin/v24_encode_*
/test_files/fastbin/v27_encode_*
/test_files/fastbin/test_prefab.layer
/test_files/fastbin/prefabs
/test_files/test_compression_compressed.bmd
/test_files/test_compression_decompressed.bmd
/test_files/test_compression_recompressed.bmd
/test_files/fastbin/test_encode.hlsl_compiled
/test_files/test_encode.dat
/test_files/test_encode_group_formations_3k.bin
/test_files/test_encode_group_formations_rom2.bin
/test_files/test_encode_group_formations_sho2.bin
/test_files/test_encode_sound_events_emp
/test_files/test_encode_sound_events_nap
/test_files/test_encode_sound_events_sho2
/test_files/test_encode_sound_bank_database_emp
/test_files/test_encode_sound_bank_database_nap
/test_files/test_encode_sound_bank_database_sho2
# This one is another separate thing, not tracked.
/autosaves/
# Ignore grcov folder, if exists.
/coverage/
# Folder where the PAK2 Files go. We don't want them added to the repo, as each user should generate their own ones.
/dependencies/
# Crashlog folder.
/error/
# Compilation folder for Rust & Company.
/target/
# Ignore autogen folder on debug builds.
/tw_autogen/
# Ignore the table patches.
/table_patches/
# Ignore the table profiles.
/table_profiles/
# Ignore the translations folder.
/translations_local/
/translations_remote/
# Intellij Config folder and files.
/.idea/
# Model Renderer log file.
log.txt
# KDE directory config file.
.directory
# Sublime Config files.
*.sublime-project
*.sublime-workspace
# This one is the file generated by the "Missing Table Definitions" feature.
missing_table_definitions.txt
# Secret tokens.
gh-token
# New RPFM Config files. This one shouldn't be added either.
settings.ron
shortcuts.ron
# Custom files.
dark-theme-custom.qss
# This specific lib is generated on UI build. No need to add it to the repo.
/3rdparty/builds/libqt_rpfm_extensions.a
# This one is the qt lib. AFAIK, Phazer didn't get me permissions to publish it, so to the gitignore it goes.
/3rdparty/builds/QtRMV2Widget.lib
# Part of the new rendering widget.
/3rdparty/builds/ImportExport.lib
/3rdparty/builds/Rldx.lib
/3rdparty/builds/QtRenderingWidget.lib
# Subclasses lib compilation files.
*.pro.user
**/Makefile
**/Makefile.*
**/.qmake.stash
**/.qtc_clangd/
**/*.rs.bk
# These are usually files locked by applications.
*.*~
# Files copied from the rendering lib.
/assets/
# Renderer lib log.
RenderViewLog.txt
# Nuget's exe to fix the renderer repo on build.
Nuget.exe