-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
gssdg
4990 lines (3309 loc) · 144 KB
/
gssdg
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[33mcommit 9f55a3c45ce72610cc6632e2d80efc7aca089e3c[m
Author: omkar langhe <omkar>
Date: Sat May 27 12:24:23 2017 +0530
alternative name changed at line 150 of grimacing to mental and emotional
[33mcommit c59bf0aad0a7238050c1a3896ecad650af227d59[m
Merge: 024acb0 4f10297
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Sat Jul 2 21:10:48 2016 +0200
Merge pull request #387 from zzemla/master
Add Kanban Tool to the list of sites supporting Emoji.
[33mcommit 4f102972c9f92a22cf31bf96e47d686d4481f450[m
Author: Zbyszek Zemla <zbyszek@shorelabs.com>
Date: Sat Jul 2 10:10:04 2016 +0200
Add http://kanbantool.com to the list of sites supporting Emoji.
[33mcommit 024acb0b2897a16be8be9af0619ab0bc949ee2f0[m
Merge: 9cad9f8 c104a29
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Jun 15 10:33:51 2016 +0200
Merge pull request #386 from onmyway133/patch-1
Update Swift library
[33mcommit c104a2981f66e33e068b9b27f5cc607d452906d1[m
Author: Khoa Pham <onmyway133@gmail.com>
Date: Tue Jun 14 23:27:32 2016 +0200
Update README.md
[33mcommit 9cad9f8948cc9ce81d6a5aa94184fa6704103cb4[m
Merge: e182a3d 966d9a7
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Tue Jun 14 11:10:30 2016 +0200
Merge pull request #385 from marcobiedermann/feature/images
Feature: Optimize Images
[33mcommit 966d9a7b551d4f573929001a38e5b71ff5ec4686[m
Author: Marco Biedermann <marco.biedermann@gmx.de>
Date: Tue Jun 14 11:04:55 2016 +0200
optimize images
[33mcommit e182a3d474b5d1d275d0e484e593fa8337bb3664[m
Merge: ee4ac8f 944bcf8
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Mon Jun 13 08:53:56 2016 +0200
Merge pull request #383 from stephenpcook/alt-symbols
Add alternative names for symbols
[33mcommit ee4ac8f925a37b5e7e67f1c97be2e4701b44816c[m
Merge: 838a680 784953f
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Sun Jun 12 20:50:45 2016 +0200
Merge pull request #382 from JuanitoFatas/add-twemoji
Add https://github.com/jollygoodcode/twemoji
[33mcommit 944bcf82fdfd11600a3b293398095f7f9b2427f6[m
Author: Stephen P Cook <mc.steven@gmail.com>
Date: Tue May 31 14:25:04 2016 +0100
Add alternative names for symbols
Descriptions from http://www.iemoji.com
[33mcommit 784953f1a825e8b877c085ed049490e00d33cbae[m
Author: JuanitoFatas <katehuang0320@gmail.com>
Date: Tue Jun 7 15:26:47 2016 +0800
Add https://github.com/jollygoodcode/twemoji
[33mcommit 838a680516f3771c88af3e5427369aaa5b718601[m
Merge: b91902b 751fa3d
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Sun Jun 12 09:15:13 2016 +0200
Merge pull request #377 from onmyway133/patch-1
Add Emoji in Omnia
[33mcommit b91902b157646789aed30190bdb539ee0784fa05[m
Merge: 7caa715 620ab55
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Sun Jun 12 09:14:46 2016 +0200
Merge pull request #373 from meeks16/master
Added synonyms in Index
[33mcommit 7caa715008fa9621977353bd2215387843d8a293[m
Merge: e75f519 d0b4dbb
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Sun Jun 12 09:14:13 2016 +0200
Merge pull request #372 from donderme/patch-1
Update index.html
[33mcommit e75f519e471a3446813809c49bc22d0636ea2672[m
Merge: e76c7c0 38115ac
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Sun Jun 12 09:13:04 2016 +0200
Merge pull request #375 from Nikitaw99/feature/add-habitica-to-pages
Add habitica to pages list
[33mcommit e76c7c068283d6132016e3a0c7f24964aa2883ac[m
Merge: 508d166 a1aecc3
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Sun Jun 12 09:11:40 2016 +0200
Merge pull request #374 from ID25/patch-1
Add rails emoji picker gem for ruby on rails
[33mcommit 508d1668e57527f9d8394c31418823bce69c0e6e[m
Merge: 8dc1b66 b57fa3a
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Sun Jun 12 09:11:03 2016 +0200
Merge pull request #381 from fybwid/fybwid-data-alternative-name
Add data alternative name
[33mcommit 8dc1b66df244f321efc3dcaa757c12856f298463[m
Merge: 75049bf 6dfc11f
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Sun Jun 12 09:09:22 2016 +0200
Merge pull request #361 from mattmarillac/master
added simple_smile emoticon
[33mcommit 75049bf77040f8842839ef6edb1ca1a3dc38e43a[m
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Sun Jun 12 07:52:00 2016 +0200
Temp fix to get ZeroClipboard working
It looks like it can't be loaded from cdnjs in later Chrome versions.
https://github.com/zeroclipboard/zeroclipboard/issues/632
The long term fix is to use something else to get copy to work. SWF
doesn't really feel like the future ;)
Ref #371
[33mcommit b57fa3a5dda27de08a74e637ef1272cfaa814e27[m
Author: FYBWid <fybwid@gmail.com>
Date: Tue Jun 7 11:41:11 2016 +0800
Add data alternative name
[33mcommit 751fa3d4177ba4ec1249a96e8ca0a9b922e65b08[m
Author: Khoa Pham <onmyway133@gmail.com>
Date: Wed May 11 15:44:23 2016 +0200
Add Emoji in Omnia
It works like this
```swift
Emoji.flag("NO") // 🇳🇴
Emoji.standardName("😁") // GRINNING FACE WITH SMILING EYES
Emoji.search(["GRINNING"]) // ["😁", "😸"]
Emoji.list()
```
[33mcommit 38115acb4757ee13d133d4a1b7e4965977986fb5[m
Author: Nikita Manahov <manahovman@gmail.com>
Date: Thu Apr 21 21:34:17 2016 +0400
Added habitica to pages list.
[33mcommit a1aecc3713d0d9d5a244f13355759bd2222b1bd7[m
Author: Eugene Domosedov <xid25x@gmail.com>
Date: Mon Apr 11 11:09:04 2016 +0300
Add rails emoji picker gem for ruby on rails
[33mcommit 620ab550cff605effbbb1b5ed2789eec8274ed8a[m
Merge: ff7c523 5b94561
Author: michael TanLiao <michael.tanliao@gmail.com>
Date: Wed Apr 6 18:24:12 2016 -0500
merging current version
[33mcommit ff7c523f998af555cd867384a28400ffc6d82739[m
Author: michael TanLiao <michael.tanliao@gmail.com>
Date: Wed Apr 6 17:20:13 2016 -0500
Added Synonyms
[33mcommit d0b4dbb2fbab8edf5e80e9b1b18ccbf3f92a49f8[m
Author: donderme <donderme@mcmaster.ca>
Date: Sun Apr 3 02:53:18 2016 -0400
Update index.html
updated description based on pop-culture
[33mcommit 5b9456142d92fe143b49a93b9794d42ee3e68101[m
Merge: 7e3a9aa 7b34247
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Tue Mar 29 08:51:49 2016 +0200
Merge pull request #369 from lazy-sunshine/patch-1
Update index.html
[33mcommit 7b34247653489d9e713cd1870d06c94b22237605[m
Author: Kirti Chaturvedi <kirti7756@gmail.com>
Date: Fri Mar 25 09:57:19 2016 +0530
Update index.html
[33mcommit 7e3a9aae08c384485eaf8661b6279777a26685b3[m
Merge: 7281c35 23729bc
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Mar 16 08:07:50 2016 +0100
Merge pull request #366 from markseu/master
Added Yellow CMS
[33mcommit 23729bc51412e9210000187c81fedff7fd04a3ca[m
Author: markseu <mark2011@mayberg.se>
Date: Tue Mar 15 21:26:51 2016 +0100
Updated README
[33mcommit 4c7cab33872d6d5d82aebe73a4aef45c85635a5c[m
Merge: d532d86 7281c35
Author: markseu <mark2011@mayberg.se>
Date: Tue Mar 15 21:21:48 2016 +0100
Merge branch 'arvida/master'
# Conflicts:
# README.md
# public/index.html
[33mcommit 7281c35cad3700cc58da23fb15461a3e20af40ca[m
Merge: 3f94eb7 93c499d
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Tue Mar 15 20:42:56 2016 +0100
Merge pull request #365 from oscarb-se/synonyms
Added synonyms for monkey
[33mcommit 3f94eb7cf4b9e59eb54142e580309f7028f3075a[m
Merge: 9cd5835 105983d
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Tue Mar 15 20:34:30 2016 +0100
Merge pull request #356 from jhogoforbroke/master
updating for kadan link
[33mcommit 9cd5835b5811d04086831d597e7b1807adb5df16[m
Merge: 41c5fef db86ab0
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Tue Mar 15 20:34:05 2016 +0100
Merge pull request #355 from harianus/patch-1
Female gays are also named lesbians
[33mcommit 41c5fef2da2e92edbf56870c80c6381713e97536[m
Merge: 50382ff de4d027
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Tue Mar 15 20:33:33 2016 +0100
Merge pull request #350 from vrenjith/patch-1
Update README.md
[33mcommit d532d860277c81222a23cdc50f4c7509e0570e19[m
Author: markseu <mark2011@mayberg.se>
Date: Tue Mar 8 16:36:26 2016 +0100
Updated links
[33mcommit ababad26885bcb87ff1065e25a5dae74af526bc1[m
Author: markseu <mark2011@mayberg.se>
Date: Tue Mar 8 11:23:04 2016 +0100
Updated README
[33mcommit a103e099f6232fa01547fd64a2e3e0762d1e761e[m
Author: markseu <mark2011@mayberg.se>
Date: Tue Mar 8 11:20:41 2016 +0100
Added Yellow CMS
[33mcommit 93c499d5ecb3915eaec185177369b4249fb064f8[m
Author: oscarb-se <github@oscarb.se>
Date: Mon Mar 7 02:03:59 2016 +0100
Added synonyms for monkey
[33mcommit 6dfc11fa11b2e4ebe11938bbce009585faa1d3dd[m
Author: mattd360 <mattmarillac@hotmail.com>
Date: Sat Feb 27 21:55:27 2016 +1000
added simple_smile emoticon
[33mcommit 105983d697b2a6408d203f691204d24df43ba1b8[m
Merge: 50382ff caddfe7
Author: Jonatas Marinho <jmarinho87@live.com>
Date: Wed Jan 20 15:53:37 2016 -0200
Merge pull request #1 from jhogoforbroke/updates-kandan-link
updates kandan link
[33mcommit caddfe701b8c5b209ea4bf3f12b2ee8c9f658857[m
Author: Jonatas Marinho <jmarinho87@live.com>
Date: Wed Jan 20 15:51:09 2016 -0200
updates kandan link
[33mcommit db86ab02b3f199fad4b02370ee445006e3a1ce7b[m
Author: Adriaan <harianus@users.noreply.github.com>
Date: Sun Jan 17 15:33:03 2016 +0100
Female gays are also named lesbians
[33mcommit de4d027a942a50132f46a226a9c0429746895bdf[m
Merge: 2b9e25b e58db82
Author: vrenjith <v.renjith@gmail.com>
Date: Fri Jan 15 23:49:16 2016 +0530
Merge pull request #1 from vrenjith/master
Update index.html
[33mcommit e58db82254689063026a308dccf41147468986dd[m
Author: vrenjith <v.renjith@gmail.com>
Date: Fri Jan 15 23:45:50 2016 +0530
Update index.html
Added http://www.mattermost.org/
[33mcommit 50382ff8a885715186da4869433e9812d2ee00f3[m
Merge: 89d8f20 f33c612
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Jan 15 10:47:27 2016 +0100
Merge pull request #348 from ChipWolf/master
plug.dj shut down
[33mcommit 2b9e25b887ac5a662cb1669c9e841993e55fccfc[m
Author: vrenjith <v.renjith@gmail.com>
Date: Mon Jan 4 11:17:39 2016 +0530
Update README.md
Added link to Mattermost
[33mcommit f33c612b37be57c6d8be4e2e8be0659b7aaad66a[m
Author: Chip ♥ <hi@itschip.com>
Date: Fri Dec 18 14:24:05 2015 +0000
plug.dj shut down
[33mcommit d130419d79e7e1758a5da14933307629e3c910b2[m
Author: Chip ♥ <hi@itschip.com>
Date: Fri Dec 18 14:22:54 2015 +0000
plug.dj shut down
[33mcommit 89d8f20318a74396234d6374c95874ca06c94df2[m
Merge: 2419c9f 5c96464
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Dec 3 17:31:21 2015 +0100
Merge pull request #339 from Awilum/patch-1
Morfy also uses emoji as plugin
[33mcommit 2419c9fae2f7a07cd3f7eaeb705eede247efa8e5[m
Merge: d53da49 2d9f413
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Dec 3 10:57:28 2015 +0100
Merge pull request #342 from Awilum/master
Added Morfy to public/index.html
[33mcommit 2d9f413e27cbdfa5b18cbe13ca56cfe4b77f93a1[m
Author: Sergey Romanenko <awilum@msn.com>
Date: Thu Dec 3 09:13:07 2015 +0300
Update index.html
[33mcommit d53da49f840499f7862a4141da81eca74a315b68[m
Merge: cba60b0 4fd9f61
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Dec 2 20:06:12 2015 +0100
Merge pull request #341 from kodie/master
Added a ton of alternative names/keywords from the emojilib repo
[33mcommit 4fd9f61bc00ccf53b1625d8e2c5c5161544769e2[m
Merge: 682e4fc cba60b0
Author: Kodie Grantham <kodie.grantham@gmail.com>
Date: Wed Dec 2 12:53:57 2015 -0600
Changes with updates from upstream
[33mcommit cba60b0e754c619f05b5ef477202ec9835ab955f[m
Merge: 987ed69 cbe5ae3
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Dec 2 19:41:10 2015 +0100
Merge pull request #340 from chadoh/patch-1
Remove duplicate 8ball declaration
[33mcommit 987ed69534662550c9d973194bd0d7be09094463[m
Merge: d636aff d81ccef
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Dec 2 19:39:24 2015 +0100
Merge pull request #335 from LEOXDmtar/master
added YouTube
[33mcommit 682e4fc81199fc1903a969678b4962b3b432431a[m
Author: Kodie Grantham <kodie.grantham@gmail.com>
Date: Wed Dec 2 11:32:24 2015 -0600
Added a ton of alternative names/keywords from the emojilib repo
[33mcommit cbe5ae3b59d1f29975a66b82beee4958a1578021[m
Author: Chad Ostrowski <hi@chadoh.com>
Date: Fri Nov 27 08:50:11 2015 -0500
Remove duplicate 8ball declaration
The 8ball is listed twice!
Maybe there's supposed to be some other sport ball that goes here, I'm not sure.
[33mcommit 5c96464c5f806894b4f009fd3bc1c6507d4573c9[m
Author: Sergey Romanenko <awilum@msn.com>
Date: Fri Nov 27 13:02:02 2015 +0300
Morfy also uses emoji as plugin
[33mcommit d636aff027d3363c4bee2f0391d8dc281be07dd4[m
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 19 07:54:42 2015 +0100
Flash is a name
[33mcommit 683de95028db31ece0678ba775a068c8c8ddaeb6[m
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Nov 18 20:42:44 2015 +0100
More subtle notice
[33mcommit 290c51f4767c26129297527b7c2f228aab92a2de[m
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Nov 18 20:31:50 2015 +0100
Copy copy & cache invalidator
[33mcommit 95ea0927429bc5cb2198f16e2ad0d9415c59619b[m
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Nov 18 17:30:25 2015 +0100
Load ZeroClipboard from CDNJS
[33mcommit c3c9c541186a749a13b034549cb746594e7dc5a8[m
Author: Christoph Kisfeld <spam@b-web.org>
Date: Sun Oct 25 10:00:08 2015 +0100
Remove console.log
[33mcommit 851172eab129a21de55be4a0d97b45531742a711[m
Author: Christoph Kisfeld <spam@b-web.org>
Date: Fri Oct 23 16:31:51 2015 +0200
Code cleanup
[33mcommit baf75616ca542d5e284e58bef7994780b5e369a2[m
Author: Christoph Kisfeld <spam@b-web.org>
Date: Fri Oct 23 03:41:24 2015 +0200
Javascript copy function :sparkles: #247
[33mcommit 30050acc72379aa057a9d550618587f92c2408b0[m
Author: Christoph Kisfeld <spam@b-web.org>
Date: Fri Oct 23 03:40:59 2015 +0200
Update links and jquery
[33mcommit d1f94906f49d7ff5a1f53ab18ca3ca47aacf4e13[m
Author: Christoph Kisfeld <spam@b-web.org>
Date: Fri Oct 23 02:24:04 2015 +0200
Update ZeroClipboard to most recent version
[33mcommit f607ab8f909bd461b8c4a4787a344331be59fe96[m
Author: Christoph Kisfeld <spam@b-web.org>
Date: Fri Oct 23 01:46:48 2015 +0200
Remove jnotify in favour of CSS animations
[33mcommit d8ff647ac0c9242f927d2ece015d76d04b3ae49b[m
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Nov 18 17:18:49 2015 +0100
Delete index.html~
[33mcommit 76164eaa4dbcfe0d0dd5f00fb1bb75375ca5d4ba[m
Merge: 5a6432b 98047c3
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Nov 18 16:54:58 2015 +0100
Merge branch 'codirt-master'
[33mcommit 98047c38d597ce88fc37782e8055340db1c088d4[m
Merge: 5a6432b fbe5eb8
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Nov 18 16:54:46 2015 +0100
Merge branch 'master' of https://github.com/codirt/emoji-cheat-sheet.com into codirt-master
[33mcommit 5a6432b1151947525a6611095a12457ac9be04ea[m
Merge: 674dc98 510f4eb
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Nov 18 16:50:46 2015 +0100
Merge branch 'raychung02-raychung02-patch-2'
[33mcommit 510f4eb4903d5d3a4f4d7cf84f00261c7e80f64c[m
Merge: 674dc98 c9a3b68
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Nov 18 16:50:37 2015 +0100
Merge branch 'raychung02-patch-2' of https://github.com/raychung02/emoji-cheat-sheet.com into raychung02-raychung02-patch-2
[33mcommit 674dc98bcac3c03350979a690d2264c433cead12[m
Merge: a6f5eec fda723b
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Wed Nov 18 16:32:55 2015 +0100
Merge pull request #321 from sanspace/suggest-eyes-synonym
Add synonym for eyes: eye-rolling
[33mcommit d81ccefd68f0e76288e239f585c7aa1b3ec6100c[m
Author: LEOXDmtar <leoxd@googlegroups.com>
Date: Sat Nov 14 21:19:26 2015 +0100
added YouTube
[33mcommit a6f5eecbd1ca652ae0b527fda16f20e4c6e4bb92[m
Merge: 8e884f2 5852849
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Mon Nov 9 09:35:05 2015 +0100
Merge pull request #333 from ohbarye/remove-out-of-place-string
Remove out of place string
[33mcommit 5852849cd2f90ba1bc4a37af7b26de2f301047bd[m
Author: ohbarye <over.rye@gmail.com>
Date: Sat Nov 7 20:10:19 2015 +0900
Remove out of place string
[33mcommit 8e884f285150577262cc4e2922c86f581aedb760[m
Merge: ec0126e 3653f22
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 21:37:38 2015 +0100
Merge pull request #278 from alexchantastic/patch-1
Added synonyms for :neckbeard:
[33mcommit 3653f22b13f42ba2e826ec7e35c60303a989db38[m
Author: Alex Chan <alexchantastic@users.noreply.github.com>
Date: Wed Oct 28 11:00:39 2015 -0700
Added synonyms for :neckbeard:
[33mcommit ec0126ec31eee19872b282caaecd0c6ddf5d0dd1[m
Merge: 99e017d 77882d1
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:35:02 2015 +0100
Merge pull request #329 from Sinzio/patch-5
Update index.html
[33mcommit 99e017d951bb2182699276e887d8a6d6c06c2301[m
Merge: 40d0d80 6f62fe5
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:34:46 2015 +0100
Merge pull request #327 from Sinzio/patch-3
Update index.html
[33mcommit 40d0d80dd65f77763a5d8969c35be6ed8b465e34[m
Merge: 5521e75 c33d919
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:34:28 2015 +0100
Merge pull request #326 from Sinzio/patch-2
Update index.html
[33mcommit 5521e7552627f51f7461de9afd911f077a4908bd[m
Merge: 41eb9d9 246600c
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:34:12 2015 +0100
Merge pull request #325 from Sinzio/patch-1
Update index.html
[33mcommit 41eb9d9587cb888e6f97467b191ec1c581101b51[m
Merge: 356ee7f 063cff9
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:33:58 2015 +0100
Merge pull request #324 from sjs7007/master
added description for skull emoji
[33mcommit 356ee7f41d5d9c8ae11fdcd1bb4784bbe74095ba[m
Merge: b64d3a6 858062e
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:32:47 2015 +0100
Merge pull request #318 from lurkingh/master
Old man/woman
[33mcommit b64d3a6d6b8a64a257b42c443cb5c85062d4b417[m
Merge: 2249508 6ea93c8
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:20:57 2015 +0100
Merge pull request #314 from Wishful2/master
Added alternative name
[33mcommit 2249508b8044e4194573eeef565785481083cb66[m
Merge: 48c8535 6a50574
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:15:38 2015 +0100
Merge pull request #312 from snoopyq/master
Additional pinyin entries
[33mcommit 48c8535fd1b71c392fe93805045993b7d865a047[m
Merge: 049c434 0041b79
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:14:18 2015 +0100
Merge pull request #311 from laurskies/my-new-feature
Add more synonyms
[33mcommit 049c43482a6f9cd4d16b4ba7a237cfad6a12850d[m
Merge: cafc0ab 48a8277
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:13:32 2015 +0100
Merge pull request #307 from skitau/patch-2
Update index.html
[33mcommit cafc0abf3ea1d3cd5aabf02ecc4df4af11f018fe[m
Merge: 723edfa 321284f
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:13:05 2015 +0100
Merge pull request #306 from skitau/patch-1
Update index.html
[33mcommit 723edfa140204ad1d256c580ee7bffc3e77c1697[m
Merge: 84b4e9c 7d5af45
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:11:41 2015 +0100
Merge pull request #303 from Maylort/patch-1
Update index.html
[33mcommit 84b4e9c6c9ad810a8f4193b9630331b788834af2[m
Merge: 008c463 9a7100d
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:11:11 2015 +0100
Merge pull request #301 from NextLevelWeirdo/patch-3
Update index.html
[33mcommit 008c46384d4ebcd4f5a45e9773b182bfcdb02145[m
Merge: fc5143b 2d1a22b
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Thu Nov 5 20:02:22 2015 +0100
Merge pull request #283 from MishaLarionov/patch-2
Made the license easier to read and understand
[33mcommit 77882d129d9ea13318b0965e74b0fb1de4569950[m
Author: Sinzio <sinakokab@gmail.com>
Date: Sat Oct 31 16:33:10 2015 +0000
Update index.html
[33mcommit 6f62fe55c732600092bb3356072e789d4e219c56[m
Author: Sinzio <sinakokab@gmail.com>
Date: Sat Oct 31 16:30:42 2015 +0000
Update index.html
[33mcommit c33d919401d5a99406b0f5abe4d0e8dae5ecd900[m
Author: Sinzio <sinakokab@gmail.com>
Date: Sat Oct 31 16:29:54 2015 +0000
Update index.html
[33mcommit 246600cd3a85d13ae1fe89e5231db38bf2325965[m
Author: Sinzio <sinakokab@gmail.com>
Date: Sat Oct 31 16:27:21 2015 +0000
Update index.html
[33mcommit 063cff9fd9cc5cfe2bb9d1991f03385de2ceda27[m
Author: Saravanan SJ <sjs7007@gmail.com>
Date: Sat Oct 31 11:56:15 2015 -0400
added description for skull emoji
[33mcommit fda723bfe8722854625212ddc68adc0c8c5d81c6[m
Author: Santhosh Kumar Srinivasan <san@sanspace.in>
Date: Sat Oct 31 13:52:45 2015 +0530
Add synonym for eyes: eye-rolling
[33mcommit 858062e658e79cfa7f9a75520bf8b740c416f416[m
Author: lurkingh <lurkingh@gmail.com>
Date: Fri Oct 30 21:46:32 2015 +0100
Old man/woman
Added grandpa/grandma
[33mcommit 6ea93c8ef3727415031580f6541c2a721f66bb55[m
Author: Wishful2 <legendzgm@yahoo.com>
Date: Fri Oct 30 19:05:03 2015 +0800
Added alternative name
Added alternative name
[33mcommit 6a50574a33564ad5750561fea333453af293a654[m
Author: snoopyq <srnolez@gmail.com>
Date: Fri Oct 30 20:14:49 2015 +1030
Update index.html
[33mcommit 0041b79c141137bd93981d6e84a74e2ba2d4fe84[m
Author: laur <laur.ye.email@gmail.com>
Date: Fri Oct 30 20:40:50 2015 +1100
Add more synonyms
[33mcommit fc5143b8411bbc75ce5d099c161fc6fb264599e3[m
Merge: e1245e1 a275f50
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:19:00 2015 +0100
Merge pull request #300 from NextLevelWeirdo/patch-2
Update index.html
[33mcommit e1245e1324814b16db71b249639d2854431f4ca0[m
Merge: 52374fc 8668ca8
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:18:25 2015 +0100
Merge pull request #298 from codename13/patch-1
Added miscellaneous food-related tags
[33mcommit 52374fc211df207ead2e10f6d49d667bfd1fa503[m
Merge: 231e39b 062451c
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:17:24 2015 +0100
Merge pull request #297 from cyturralde/patch-7
Update index.html
[33mcommit 231e39b61f85bfa39664dc22c090e53358302a25[m
Merge: 6f96bb4 8d69a7b
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:16:49 2015 +0100
Merge pull request #299 from NextLevelWeirdo/patch-1
Update index.html
[33mcommit 6f96bb48a51c1dce0de1cc18de3fc9d15a346296[m
Merge: b0688b6 78ad6de
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:16:34 2015 +0100
Merge pull request #296 from cyturralde/patch-6
Update index.html
[33mcommit b0688b631604e8cd45f7356d088b3e72207a3182[m
Merge: fb627c2 6e02379
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:16:17 2015 +0100
Merge pull request #295 from cyturralde/patch-5
Update index.html
[33mcommit fb627c236bb6b094bfb012bc5eeff373546104da[m
Merge: 9989fd7 84aa852
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:15:54 2015 +0100
Merge pull request #294 from cyturralde/patch-4
Update index.html
[33mcommit 9989fd70e4883863d1d9b4a117f0fa6edfe2d138[m
Merge: ffc8005 d945340
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:15:23 2015 +0100
Merge pull request #293 from cyturralde/patch-3
Update index.html
[33mcommit ffc800558ebd6ae5f97870d0862f3e8a85fa38cc[m
Merge: 6fc2b30 3862ccd
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:15:03 2015 +0100
Merge pull request #292 from cyturralde/patch-2
Update index.html
[33mcommit 6fc2b30798cf9f954f9e8c9d8cc0832f494426af[m
Merge: e42bcba 9e60918
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:14:35 2015 +0100
Merge pull request #291 from johnpaul91/johnpaul91-moresynonyms
moresynonyms
[33mcommit e42bcba89bcdd0bee79d2acc6e7755a0e8518f00[m
Merge: cb53083 73a7086
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:14:08 2015 +0100
Merge pull request #290 from johnpaul91/master
Added synonyms for sound
[33mcommit cb5308379651875d2fb2248f98643442a9fee4ab[m
Merge: 158883b 67fc426
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:13:46 2015 +0100
Merge pull request #289 from SimoneNigro/master
added alternative description for smiley and smile
[33mcommit 158883b1d71f2da023bd2721c0d4fe142ab4d784[m
Merge: 45c4b3a 8380a0c
Author: Arvid Andersson <arvid.andersson@oktavilla.se>
Date: Fri Oct 30 10:13:11 2015 +0100
Merge pull request #288 from snoopyq/master
Ying & Wari
[33mcommit 48a82777b2f7fa59d5e9133337dec21c3f679879[m
Author: skitau <robert@blackstock.id.au>
Date: Fri Oct 30 10:08:40 2015 +0800
Update index.html
Added controller to video_game.png
Added jewelry to gem.png and ring.png
[33mcommit 321284f7016548bc560f86917eff3a72ab23413c[m
Author: skitau <robert@blackstock.id.au>
Date: Fri Oct 30 09:54:32 2015 +0800
Update index.html
Added asleep to sleeping.png
Added scared, terrified to scream.png
[33mcommit c9a3b68820c81ed49579a096471fb19f62beb857[m
Author: Ray Chung <raychung02@gmail.com>
Date: Thu Oct 29 17:54:22 2015 -0700
More synonyms added
[33mcommit 7d5af45b3238f47178cce1c1532a5c6cca7486a0[m
Author: Maylort <matthewtaylor711@gmail.com>
Date: Thu Oct 29 19:56:35 2015 -0400
Update index.html
[33mcommit 9a7100dd649e1f86636537bf8581f4941e73c0de[m
Author: NextLevelWeirdo <seanlundin@gmail.com>
Date: Thu Oct 29 18:32:15 2015 -0500
Update index.html
[33mcommit a275f5057a167f7e82188653ea97eeee853d8e6a[m
Author: NextLevelWeirdo <seanlundin@gmail.com>
Date: Thu Oct 29 18:31:34 2015 -0500
Update index.html
[33mcommit 8d69a7b6020575f4e3988e3ce3071a6986bb3ff1[m
Author: NextLevelWeirdo <seanlundin@gmail.com>
Date: Thu Oct 29 18:29:55 2015 -0500
Update index.html
[33mcommit 8668ca8deed917d5c2c09cd0e6bd05a13969c0b7[m
Author: codename13 <codename13@users.noreply.github.com>
Date: Thu Oct 29 18:26:25 2015 -0400
Added miscellaneous food-related tags
[33mcommit 062451c0aca32e12af4dcec4d50de710b221f368[m
Author: Chris Yturralde <imjustkit@gmail.com>
Date: Thu Oct 29 13:34:13 2015 -0400
Update index.html
Added another name for traffic light
[33mcommit 78ad6defb18600099d4c3904c95a35b4e556bfc8[m
Author: Chris Yturralde <imjustkit@gmail.com>
Date: Thu Oct 29 13:33:27 2015 -0400
Update index.html
Added another name for purse
[33mcommit 6e02379a656411b9f5ca1f2a41142d5b38a24f3a[m
Author: Chris Yturralde <imjustkit@gmail.com>
Date: Thu Oct 29 13:32:29 2015 -0400
Update index.html
Added an alternative name for halloween
[33mcommit 84aa852ca234515b70fcc29cf6c3f1eec065ede5[m
Author: Chris Yturralde <imjustkit@gmail.com>
Date: Thu Oct 29 13:31:29 2015 -0400
Update index.html
Added another name for grinning