Commit 883ee18e78cb8d7f92f22f4918d41c2b1e8e8096
0 parents
Exists in
master
initial commit
Showing
3 changed files
with
373 additions
and
0 deletions
Show diff stats
1 | +++ a/.gitignore | ||
@@ -0,0 +1,327 @@ | @@ -0,0 +1,327 @@ | ||
1 | + | ||
2 | +# Created by https://www.gitignore.io/api/jetbrains,eclipse,node,composer,java,windows,osx,linux,bower,grunt,netbeans,android,laravel | ||
3 | + | ||
4 | +### OSX ### | ||
5 | +*.DS_Store | ||
6 | +.AppleDouble | ||
7 | +.LSOverride | ||
8 | + | ||
9 | +# Icon must end with two \r | ||
10 | +Icon | ||
11 | + | ||
12 | + | ||
13 | +# Thumbnails | ||
14 | +._* | ||
15 | + | ||
16 | +# Files that might appear in the root of a volume | ||
17 | +.DocumentRevisions-V100 | ||
18 | +.fseventsd | ||
19 | +.Spotlight-V100 | ||
20 | +.TemporaryItems | ||
21 | +.Trashes | ||
22 | +.VolumeIcon.icns | ||
23 | +.com.apple.timemachine.donotpresent | ||
24 | + | ||
25 | +# Directories potentially created on remote AFP share | ||
26 | +.AppleDB | ||
27 | +.AppleDesktop | ||
28 | +Network Trash Folder | ||
29 | +Temporary Items | ||
30 | +.apdisk | ||
31 | + | ||
32 | + | ||
33 | +### JetBrains ### | ||
34 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm | ||
35 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | ||
36 | + | ||
37 | +# All idea folder | ||
38 | +.idea/* | ||
39 | + | ||
40 | +# User-specific stuff: | ||
41 | +.idea/workspace.xml | ||
42 | +.idea/tasks.xml | ||
43 | +.idea/dictionaries | ||
44 | +.idea/vcs.xml | ||
45 | +.idea/jsLibraryMappings.xml | ||
46 | + | ||
47 | +# Sensitive or high-churn files: | ||
48 | +.idea/dataSources.ids | ||
49 | +.idea/dataSources.xml | ||
50 | +.idea/dataSources.local.xml | ||
51 | +.idea/sqlDataSources.xml | ||
52 | +.idea/dynamic.xml | ||
53 | +.idea/uiDesigner.xml | ||
54 | + | ||
55 | +# Gradle: | ||
56 | +.idea/gradle.xml | ||
57 | +.idea/libraries | ||
58 | + | ||
59 | +# Mongo Explorer plugin: | ||
60 | +.idea/mongoSettings.xml | ||
61 | + | ||
62 | +## File-based project format: | ||
63 | +*.iws | ||
64 | + | ||
65 | +## Plugin-specific files: | ||
66 | + | ||
67 | +# IntelliJ | ||
68 | +/out/ | ||
69 | + | ||
70 | +# mpeltonen/sbt-idea plugin | ||
71 | +.idea_modules/ | ||
72 | + | ||
73 | +# JIRA plugin | ||
74 | +atlassian-ide-plugin.xml | ||
75 | + | ||
76 | +# Crashlytics plugin (for Android Studio and IntelliJ) | ||
77 | +com_crashlytics_export_strings.xml | ||
78 | +crashlytics.properties | ||
79 | +crashlytics-build.properties | ||
80 | +fabric.properties | ||
81 | + | ||
82 | +### JetBrains Patch ### | ||
83 | +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 | ||
84 | + | ||
85 | +# *.iml | ||
86 | +# modules.xml | ||
87 | + | ||
88 | + | ||
89 | +### Node ### | ||
90 | +# Logs | ||
91 | +logs | ||
92 | +*.log | ||
93 | +npm-debug.log* | ||
94 | + | ||
95 | +# Runtime data | ||
96 | +pids | ||
97 | +*.pid | ||
98 | +*.seed | ||
99 | + | ||
100 | +# Directory for instrumented libs generated by jscoverage/JSCover | ||
101 | +lib-cov | ||
102 | + | ||
103 | +# Coverage directory used by tools like istanbul | ||
104 | +coverage | ||
105 | + | ||
106 | +# nyc test coverage | ||
107 | +.nyc_output | ||
108 | + | ||
109 | +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
110 | +.grunt | ||
111 | + | ||
112 | +# node-waf configuration | ||
113 | +.lock-wscript | ||
114 | + | ||
115 | +# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
116 | +build/Release | ||
117 | + | ||
118 | +# Dependency directories | ||
119 | +node_modules | ||
120 | +jspm_packages | ||
121 | + | ||
122 | +# Optional npm cache directory | ||
123 | +.npm | ||
124 | + | ||
125 | +# Optional REPL history | ||
126 | +.node_repl_history | ||
127 | + | ||
128 | + | ||
129 | +### Composer ### | ||
130 | +composer.phar | ||
131 | +/vendor/ | ||
132 | + | ||
133 | +# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file | ||
134 | +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file | ||
135 | +# composer.lock | ||
136 | + | ||
137 | + | ||
138 | +### Android ### | ||
139 | +# Built application files | ||
140 | +*.apk | ||
141 | +*.ap_ | ||
142 | + | ||
143 | +# Files for the ART/Dalvik VM | ||
144 | +*.dex | ||
145 | + | ||
146 | +# Java class files | ||
147 | +*.class | ||
148 | + | ||
149 | +# Generated files | ||
150 | +bin/ | ||
151 | +gen/ | ||
152 | +out/ | ||
153 | + | ||
154 | +# Gradle files | ||
155 | +.gradle/ | ||
156 | +build/ | ||
157 | + | ||
158 | +# Local configuration file (sdk path, etc) | ||
159 | +local.properties | ||
160 | + | ||
161 | +# Proguard folder generated by Eclipse | ||
162 | +proguard/ | ||
163 | + | ||
164 | +# Log Files | ||
165 | +*.log | ||
166 | + | ||
167 | +# Android Studio Navigation editor temp files | ||
168 | +.navigation/ | ||
169 | + | ||
170 | +# Android Studio captures folder | ||
171 | +captures/ | ||
172 | + | ||
173 | +# Intellij | ||
174 | +*.iml | ||
175 | +.idea/workspace.xml | ||
176 | + | ||
177 | +# Keystore files | ||
178 | +*.jks | ||
179 | + | ||
180 | +### Android Patch ### | ||
181 | +gen-external-apklibs | ||
182 | + | ||
183 | + | ||
184 | +### Windows ### | ||
185 | +# Windows image file caches | ||
186 | +Thumbs.db | ||
187 | +ehthumbs.db | ||
188 | + | ||
189 | +# Folder config file | ||
190 | +Desktop.ini | ||
191 | + | ||
192 | +# Recycle Bin used on file shares | ||
193 | +$RECYCLE.BIN/ | ||
194 | + | ||
195 | +# Windows Installer files | ||
196 | +*.cab | ||
197 | +*.msi | ||
198 | +*.msm | ||
199 | +*.msp | ||
200 | + | ||
201 | +# Windows shortcuts | ||
202 | +*.lnk | ||
203 | + | ||
204 | + | ||
205 | +### Eclipse ### | ||
206 | + | ||
207 | +.metadata | ||
208 | +bin/ | ||
209 | +tmp/ | ||
210 | +*.tmp | ||
211 | +*.bak | ||
212 | +*.swp | ||
213 | +*~.nib | ||
214 | +local.properties | ||
215 | +.settings/ | ||
216 | +.loadpath | ||
217 | +.recommenders | ||
218 | + | ||
219 | +# Eclipse Core | ||
220 | +# .project | ||
221 | + | ||
222 | +# External tool builders | ||
223 | +.externalToolBuilders/ | ||
224 | + | ||
225 | +# Locally stored "Eclipse launch configurations" | ||
226 | +*.launch | ||
227 | + | ||
228 | +# PyDev specific (Python IDE for Eclipse) | ||
229 | +*.pydevproject | ||
230 | + | ||
231 | +# CDT-specific (C/C++ Development Tooling) | ||
232 | +.cproject | ||
233 | + | ||
234 | +# JDT-specific (Eclipse Java Development Tools) | ||
235 | +.classpath | ||
236 | + | ||
237 | +# Java annotation processor (APT) | ||
238 | +.factorypath | ||
239 | + | ||
240 | +# PDT-specific (PHP Development Tools) | ||
241 | +.buildpath | ||
242 | + | ||
243 | +# sbteclipse plugin | ||
244 | +.target | ||
245 | + | ||
246 | +# Tern plugin | ||
247 | +.tern-project | ||
248 | + | ||
249 | +# TeXlipse plugin | ||
250 | +.texlipse | ||
251 | + | ||
252 | +# STS (Spring Tool Suite) | ||
253 | +.springBeans | ||
254 | + | ||
255 | +# Code Recommenders | ||
256 | +.recommenders/ | ||
257 | + | ||
258 | + | ||
259 | +### Linux ### | ||
260 | +*~ | ||
261 | + | ||
262 | +# temporary files which can be created if a process still has a handle open of a deleted file | ||
263 | +.fuse_hidden* | ||
264 | + | ||
265 | +# KDE directory preferences | ||
266 | +.directory | ||
267 | + | ||
268 | +# Linux trash folder which might appear on any partition or disk | ||
269 | +.Trash-* | ||
270 | + | ||
271 | + | ||
272 | +### Bower ### | ||
273 | +bower_components | ||
274 | +.bower-cache | ||
275 | +.bower-registry | ||
276 | +.bower-tmp | ||
277 | + | ||
278 | + | ||
279 | +### grunt ### | ||
280 | +# Grunt usually compiles files inside this directory | ||
281 | +dist/ | ||
282 | + | ||
283 | +# Grunt usually preprocesses files such as coffeescript, compass... inside the .tmp directory | ||
284 | +.tmp/ | ||
285 | + | ||
286 | + | ||
287 | +### NetBeans ### | ||
288 | +nbproject/private/ | ||
289 | +build/ | ||
290 | +nbbuild/ | ||
291 | +dist/ | ||
292 | +nbdist/ | ||
293 | +nbactions.xml | ||
294 | +.nb-gradle/ | ||
295 | + | ||
296 | + | ||
297 | +### Laravel ### | ||
298 | +vendor/ | ||
299 | +node_modules/ | ||
300 | + | ||
301 | +# Laravel 4 specific | ||
302 | +bootstrap/compiled.php | ||
303 | +app/storage/ | ||
304 | + | ||
305 | +# Laravel 5 & Lumen specific | ||
306 | +bootstrap/cache/ | ||
307 | +.env.*.php | ||
308 | +.env.php | ||
309 | +.env | ||
310 | + | ||
311 | +# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer | ||
312 | +.rocketeer/ | ||
313 | + | ||
314 | + | ||
315 | +### Java ### | ||
316 | +*.class | ||
317 | + | ||
318 | +# Mobile Tools for Java (J2ME) | ||
319 | +.mtj.tmp/ | ||
320 | + | ||
321 | +# Package Files # | ||
322 | +# *.jar | ||
323 | +# *.war | ||
324 | +# *.ear | ||
325 | + | ||
326 | +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
327 | +hs_err_pid* |
1 | +++ a/CHANGELOG.txt | ||
@@ -0,0 +1,38 @@ | @@ -0,0 +1,38 @@ | ||
1 | +# Change Log | ||
2 | +All notable changes to this project will be documented in this file. | ||
3 | +This project adheres to [Semantic Versioning](http://semver.org/). | ||
4 | + | ||
5 | +## [Unreleased] | ||
6 | +### Added | ||
7 | +- zh-CN and zh-TW translations from @tianshuo. | ||
8 | +- de translation from @mpbzh. | ||
9 | + | ||
10 | +## [1.1.0] - 2015-12-03 | ||
11 | +### Added | ||
12 | +- RU translation from @aishek. | ||
13 | +- pt-BR translation from @tallesl. | ||
14 | +- es-ES translation from @ZeliosAriex. | ||
15 | + | ||
16 | +## [1.0.2] - 2015-10-06 | ||
17 | +### Changed | ||
18 | +- Remove exclusionary mentions of "open source" since this project can benefit | ||
19 | +both "open" and "closed" source projects equally. | ||
20 | +uld you ever rewrite a change log?". | ||
21 | + | ||
22 | +### Changed | ||
23 | +- Improve argument against commit logs. | ||
24 | +- Start following [SemVer](http://semver.org) properly. | ||
25 | + | ||
26 | +## [1.0.1] - 2015-02-17 | ||
27 | +### Changed | ||
28 | +- Update year to match in every README example. | ||
29 | +- Reluctantly stop making fun of Brits only, since most of the world | ||
30 | + writes dates in a strange way. | ||
31 | + | ||
32 | +## [1.0.0] - 2014-05-31 | ||
33 | +### Added | ||
34 | +- This CHANGELOG file to hopefully serve as an evolving example of a standardized open source project CHANGELOG. | ||
35 | +- CNAME file to enable GitHub Pages custom domain | ||
36 | +- README now contains answers to common questions about CHANGELOGs | ||
37 | +- Good examples and basic guidelines, including proper date formatting. | ||
38 | +- Counter-examples: "What makes unicorns cry?" |