Skip to content

Commit cf477c9

Browse files
committed
Update .gitignore to latest sources
1 parent ff660c7 commit cf477c9

File tree

3 files changed

+70
-18
lines changed

3 files changed

+70
-18
lines changed

.gitignore

Lines changed: 66 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1-
#### General system gitignore contents:
2-
#### Source: https://raw.githubusercontent.com/github/gitignore/master/Global/Linux.gitignore
1+
##################
2+
## Our own ignores
3+
##################
4+
output/
5+
6+
7+
#########################################################################
8+
## General system gitignore contents:
9+
## Source: github.com/github/gitignore/blob/master/Global/Linux.gitignore
10+
#########################################################################
311
*~
412

513
# KDE directory preferences
@@ -8,8 +16,12 @@
816
# Linux trash folder which might appear on any partition or disk
917
.Trash-*
1018

11-
#### General system gitignore contents:
12-
#### Source: https://raw.githubusercontent.com/github/gitignore/master/Global/Windows.gitignore
19+
20+
21+
###########################################################################
22+
## General system gitignore contents:
23+
## Source: github.com/github/gitignore/blob/master/Global/Windows.gitignore
24+
###########################################################################
1325
# Windows image file caches
1426
Thumbs.db
1527
ehthumbs.db
@@ -29,8 +41,12 @@ $RECYCLE.BIN/
2941
# Windows shortcuts
3042
*.lnk
3143

32-
#### General system gitignore contents:
33-
#### Source: https://raw.githubusercontent.com/github/gitignore/master/Global/OSX.gitignore
44+
45+
46+
#######################################################################
47+
## General system gitignore contents:
48+
## Source: github.com/github/gitignore/blob/master/Global/OSX.gitignore
49+
#######################################################################
3450
.DS_Store
3551
.AppleDouble
3652
.LSOverride
@@ -57,8 +73,12 @@ Network Trash Folder
5773
Temporary Items
5874
.apdisk
5975

60-
#### Visual Studio gitignore contents:
61-
#### Source: https://raw.githubusercontent.com/github/gitignore/master/VisualStudio.gitignore
76+
77+
78+
#########################################################################
79+
## Visual Studio gitignore contents:
80+
## Source: github.com/github/gitignore/blob/master/VisualStudio.gitignore
81+
#########################################################################
6282
## Ignore Visual Studio temporary files, build results, and
6383
## files generated by popular Visual Studio add-ons.
6484

@@ -83,8 +103,10 @@ bld/
83103
[Bb]in/
84104
[Oo]bj/
85105

86-
# Visual Studo 2015 cache/options directory
106+
# Visual Studio 2015 cache/options directory
87107
.vs/
108+
# Uncomment if you have tasks that create the project's static files in wwwroot
109+
#wwwroot/
88110

89111
# MSTest test Results
90112
[Tt]est[Rr]esult*/
@@ -99,6 +121,10 @@ TestResult.xml
99121
[Rr]eleasePS/
100122
dlldata.c
101123

124+
# DNX
125+
project.lock.json
126+
artifacts/
127+
102128
*_i.c
103129
*_p.c
104130
*_i.h
@@ -131,6 +157,7 @@ _Chutzpah*
131157
ipch/
132158
*.aps
133159
*.ncb
160+
*.opendb
134161
*.opensdf
135162
*.sdf
136163
*.cachefile
@@ -139,6 +166,7 @@ ipch/
139166
*.psess
140167
*.vsp
141168
*.vspx
169+
*.sap
142170

143171
# TFS 2012 Local Workspace
144172
$tf/
@@ -151,7 +179,7 @@ _ReSharper*/
151179
*.[Rr]e[Ss]harper
152180
*.DotSettings.user
153181

154-
# JustCode is a .NET coding addin-in
182+
# JustCode is a .NET coding add-in
155183
.JustCode
156184

157185
# TeamCity is a build add-in
@@ -163,6 +191,7 @@ _TeamCity*
163191
# NCrunch
164192
_NCrunch_*
165193
.*crunch*.local.xml
194+
nCrunchTemp_*
166195

167196
# MightyMoose
168197
*.mm.*
@@ -208,11 +237,20 @@ publish/
208237
csx/
209238
*.build.csdef
210239

240+
# Windows Azure Emulator
241+
ecf/
242+
rcf/
243+
211244
# Windows Store app package directory
212245
AppPackages/
213246

214-
# Others
247+
# Visual Studio cache files
248+
# files ending in .cache can be ignored
215249
*.[Cc]ache
250+
# but keep track of directories ending in .cache
251+
!*.[Cc]ache/
252+
253+
# Others
216254
ClientBin/
217255
[Ss]tyle[Cc]op.*
218256
~$*
@@ -222,7 +260,7 @@ ClientBin/
222260
*.pfx
223261
*.publishsettings
224262
node_modules/
225-
bower_components/
263+
orleans.codegen.cs
226264

227265
# RIA/Silverlight projects
228266
Generated_Code/
@@ -247,6 +285,9 @@ UpgradeLog*.htm
247285
# Microsoft Fakes
248286
FakesAssemblies/
249287

288+
# GhostDoc plugin setting file
289+
*.GhostDoc.xml
290+
250291
# Node.js Tools for Visual Studio
251292
.ntvs_analysis.dat
252293

@@ -256,5 +297,16 @@ FakesAssemblies/
256297
# Visual Studio 6 workspace options file
257298
*.opt
258299

259-
# Our own ignores
260-
output/
300+
# Visual Studio LightSwitch build output
301+
**/*.HTMLClient/GeneratedArtifacts
302+
**/*.DesktopClient/GeneratedArtifacts
303+
**/*.DesktopClient/ModelManifest.xml
304+
**/*.Server/GeneratedArtifacts
305+
**/*.Server/ModelManifest.xml
306+
_Pvt_Extensions
307+
308+
# Paket dependency manager
309+
.paket/paket.exe
310+
311+
# FAKE - F# Make
312+
.fake/

MTA10/mods/shared_logic/luadefs/CLuaSearchLightDefs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* PROJECT: Multi Theft Auto v1.0
44
* LICENSE: See LICENSE in the top level directory
5-
* FILE: mods/shared_logic/CLuaSearchLightDefs.cpp
5+
* FILE: mods/shared_logic/luadefs/CLuaSearchLightDefs.cpp
66
* PURPOSE: Lua searchlight class functions
77
*
88
* Multi Theft Auto is available from http://www.multitheftauto.com/

MTA10/mods/shared_logic/luadefs/CLuaSearchLightDefs.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
*
33
* PROJECT: Multi Theft Auto v1.0
44
* LICENSE: See LICENSE in the top level directory
5-
* FILE: mods/shared_logic/CLuaSearchLightDefs.h
5+
* FILE: mods/shared_logic/luadefs/CLuaSearchLightDefs.h
66
* PURPOSE: Lua searchlight class functions
77
*
88
* Multi Theft Auto is available from http://www.multitheftauto.com/
99
*
1010
*****************************************************************************/
1111

1212
#pragma once
13-
//#include "CLuaDefs.h"
13+
#include "CLuaDefs.h"
1414

1515
class CLuaSearchLightDefs : public CLuaDefs
1616
{
@@ -19,4 +19,4 @@ class CLuaSearchLightDefs : public CLuaDefs
1919
static void AddClass ( lua_State* luaVM );
2020

2121
LUA_DECLARE ( CreateSearchLight );
22-
};
22+
};

0 commit comments

Comments
 (0)