Skip to content

Commit b94d923

Browse files
Keijiro TakahashiKeijiro Takahashi
Keijiro Takahashi
authored and
Keijiro Takahashi
committed
File attribute cleanup
- BOM removal - Linefeed format (unix) - chmod a-x
1 parent 176173e commit b94d923

19 files changed

+582
-517
lines changed

.gitattributes

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
7+
# Standard to msysgit
8+
*.doc diff=astextplain
9+
*.DOC diff=astextplain
10+
*.docx diff=astextplain
11+
*.DOCX diff=astextplain
12+
*.dot diff=astextplain
13+
*.DOT diff=astextplain
14+
*.pdf diff=astextplain
15+
*.PDF diff=astextplain
16+
*.rtf diff=astextplain
17+
*.RTF diff=astextplain

.gitignore

+70-22
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,74 @@
1-
# Unity
2-
Library
3-
Temp
4-
*.pidb
1+
/[Ll]ibrary/
2+
/[Tt]emp/
3+
/[Oo]bj/
4+
/[Bb]uild/
5+
*.swp
6+
/Extras/backup
7+
8+
# Autogenerated VS/MD solution and project files
9+
*.csproj
10+
*.unityproj
11+
*.sln
12+
*.suo
13+
*.tmp
14+
*.user
515
*.userprefs
16+
*.pidb
17+
*.booproj
18+
19+
# Unity3D generated meta files
20+
*.pidb.meta
21+
22+
# Unity3D Generated File On Crash Reports
23+
sysinfo.txt
24+
25+
# =========================
26+
# Operating System Files
27+
# =========================
28+
29+
# OSX
30+
# =========================
631

7-
# Xcode
8-
xcuserdata
9-
xcshareddata
10-
*.pbxuser
11-
12-
# Visual Studio
13-
Debug/
14-
Release/
15-
x64/
16-
x86/
17-
build/
18-
ipch/
19-
*.sdf
20-
.vs
21-
22-
# Misc
23-
*.swp
24-
*.lnk
2532
.DS_Store
33+
.AppleDouble
34+
.LSOverride
35+
36+
# Thumbnails
37+
._*
38+
39+
# Files that might appear in the root of a volume
40+
.DocumentRevisions-V100
41+
.fseventsd
42+
.Spotlight-V100
43+
.TemporaryItems
44+
.Trashes
45+
.VolumeIcon.icns
46+
47+
# Directories potentially created on remote AFP share
48+
.AppleDB
49+
.AppleDesktop
50+
Network Trash Folder
51+
Temporary Items
52+
.apdisk
53+
54+
# Windows
55+
# =========================
56+
57+
# Windows image file caches
2658
Thumbs.db
59+
ehthumbs.db
60+
61+
# Folder config file
62+
Desktop.ini
63+
64+
# Recycle Bin used on file shares
65+
$RECYCLE.BIN/
66+
67+
# Windows Installer files
68+
*.cab
69+
*.msi
70+
*.msm
71+
*.msp
72+
73+
# Windows shortcuts
74+
*.lnk

Assets/Editor/PackageTool.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using UnityEngine;
1+
using UnityEngine;
22
using UnityEditor;
33

44
public class PackageTool

Assets/Kino/Glitch/AnalogGlitch.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//
1+
//
22
// KinoGlitch - Video glitch effect
33
//
44
// Copyright (C) 2015 Keijiro Takahashi

Assets/Kino/Glitch/DigitalGlitch.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//
1+
//
22
// KinoGlitch - Video glitch effect
33
//
44
// Copyright (C) 2015 Keijiro Takahashi

Assets/Kino/Glitch/Shader/AnalogGlitch.shader

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//
1+
//
22
// KinoGlitch - Video glitch effect
33
//
44
// Copyright (C) 2015 Keijiro Takahashi

Assets/Kino/Glitch/Shader/DigitalGlitch.shader

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//
1+
//
22
// KinoGlitch - Video glitch effect
33
//
44
// Copyright (C) 2015 Keijiro Takahashi

Assets/Reaktion.meta

100755100644
+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Reaktion/Editor.meta

100755100644
+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Reaktion/Editor/Utility.meta

100755100644
+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)