Skip to content

Commit 377a6d4

Browse files
committed
Merge pull request #72 from google/0_4_1
0.4.1+5.13.4
2 parents dcf4185 + 749c6c9 commit 377a6d4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+3072
-900
lines changed

.analysis_options

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ analyzer:
22
exclude:
33
- 'doc/api/**'
44
- 'lib/mode/**'
5-
strong-mode: true
5+
# strong-mode: true

README_.google

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
URL: http://codemirror.net/
2-
Version: 5.8.0
2+
Version: 5.13.4
33
License: MIT
44
License File: third_party/codemirror/LICENSE
55

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "codemirror.dart",
33
"private": true,
44
"dependencies": {
5-
"codemirror": "~5.8.0"
5+
"codemirror": "5.13.4"
66
}
77
}

changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

3-
## unreleased
3+
## 0.4.1
4+
- updated to CodeMirror 5.13.4
45
- expose `Doc.eachLine`
56
- expose `Doc.addSelection`
67
- expose `Doc.extendSelection`

lib/codemirror.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ class CodeMirror extends ProxyHolder {
152152
}
153153

154154
static JsObject _createFromTextArea(TextAreaElement textArea, Map options) {
155-
List args = [textArea];
155+
List args = <dynamic>[textArea];
156156
if (options != null) args.add(jsify(options));
157157
return _cm.callMethod('fromTextArea', args);
158158
}
@@ -1211,7 +1211,7 @@ class ModeInfo extends ProxyHolder {
12111211
String get mime => jsProxy['mime'];
12121212

12131213
List<String> get mimes =>
1214-
jsProxy.hasProperty('mimes') ? jsProxy['mimes']: [mime];
1214+
jsProxy.hasProperty('mimes') ? jsProxy['mimes']: <String>[mime];
12151215

12161216
/// The mode's id.
12171217
String get mode => jsProxy['mode'];
@@ -1221,7 +1221,7 @@ class ModeInfo extends ProxyHolder {
12211221

12221222
/// The mode's other file extensions.
12231223
List<String> get alias =>
1224-
jsProxy.hasProperty('alias') ? jsProxy['alias']: [];
1224+
jsProxy.hasProperty('alias') ? jsProxy['alias']: <String>[];
12251225
}
12261226

12271227
/**

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# license that can be found in the LICENSE file.
44

55
name: codemirror
6-
version: 0.4.0+5.8.0
6+
version: 0.4.1+5.13.4
77
description: A Dart wrapper around the CodeMirror text editor.
88
author: Devon Carew <[email protected]>
99
homepage: https://github.com/google/codemirror.dart

third_party/codemirror/.bower.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
"mode/*/*.html"
1919
],
2020
"homepage": "https://github.com/marijnh/CodeMirror",
21-
"version": "5.8.0",
22-
"_release": "5.8.0",
21+
"version": "5.13.4",
22+
"_release": "5.13.4",
2323
"_resolution": {
2424
"type": "version",
25-
"tag": "5.8.0",
26-
"commit": "300e65942c0f93f37f80cab26f6b79bc0ad7001b"
25+
"tag": "5.13.4",
26+
"commit": "85c1d5f5cb296ea296a02e89051787e17439af0d"
2727
},
28-
"_source": "git://github.com/marijnh/CodeMirror.git",
29-
"_target": "~5.8.0",
28+
"_source": "https://github.com/marijnh/CodeMirror.git",
29+
"_target": "5.13.4",
3030
"_originalSource": "codemirror"
3131
}

third_party/codemirror/AUTHORS

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Alex Piggott
2727
Aliaksei Chapyzhenka
2828
Allen Sarkisyan
2929
Amin Shali
30+
Amin Ullah Khan
3031
3132
Amsul
3233
amuntean
@@ -60,6 +61,7 @@ Anthony Grimes
6061
Anton Kovalyov
6162
AQNOUCH Mohammed
6263
areos
64+
Arnab Bose
6365
as3boyan
6466
AtomicPages LLC
6567
Atul Bhouraskar
@@ -73,6 +75,7 @@ benbro
7375
Beni Cherniavsky-Paskin
7476
Benjamin DeCoste
7577
Ben Keen
78+
Ben Mosher
7679
Bernhard Sirlinger
7780
Bert Chang
7881
Billy Moon
@@ -91,10 +94,12 @@ Brian Sletten
9194
Bruce Mitchener
9295
Caitlin Potter
9396
Calin Barbat
97+
Chad Jolly
9498
Chandra Sekhar Pydi
9599
Charles Skelton
96100
Cheah Chu Yeow
97101
Chris Coyier
102+
Chris Ford
98103
Chris Granger
99104
Chris Houseknecht
100105
Chris Lohfink
@@ -104,9 +109,11 @@ Christian Petrov
104109
Christopher Brown
105110
Christopher Mitchell
106111
Christopher Pfohl
112+
Chunliang Lyu
107113
ciaranj
108114
CodeAnimal
109115
coderaiser
116+
Cole R Lawrence
110117
ComFreek
111118
Curtis Gagliardi
112119
dagsta
@@ -118,6 +125,7 @@ Daniel, Dao Quang Minh
118125
Daniele Di Sarli
119126
Daniel Faust
120127
Daniel Huigens
128+
Daniel Kesler
121129
Daniel KJ
122130
Daniel Neel
123131
Daniel Parnell
@@ -130,8 +138,10 @@ David Barnett
130138
David Mignot
131139
David Pathakjee
132140
David Vázquez
141+
David Whittington
133142
deebugger
134143
Deep Thought
144+
Devin Abbott
135145
Devon Carew
136146
dignifiedquire
137147
Dimage Sapelkin
@@ -143,6 +153,7 @@ Doug Wikle
143153
Drew Bratcher
144154
Drew Hintz
145155
Drew Khoury
156+
Drini Cami
146157
Dror BG
147158
duralog
148159
eborden
@@ -151,6 +162,7 @@ ekhaled
151162
Elisée
152163
Enam Mijbah Noor
153164
Eric Allam
165+
Erik Welander
154166
eustas
155167
Fabien O'Carroll
156168
Fabio Zendhi Nagao
@@ -172,19 +184,24 @@ Gabriel Horner
172184
Gabriel Nahmias
173185
galambalazs
174186
Gautam Mehta
187+
Gavin Douglas
175188
gekkoe
189+
geowarin
176190
Gerard Braad
177191
Gergely Hegykozi
178192
Giovanni Calò
193+
Glebov Boris
179194
Glenn Jorde
180195
Glenn Ruehle
181196
Golevka
197+
Google Inc.
182198
Gordon Smith
183199
Grant Skinner
184200
greengiant
185201
Gregory Koberger
186202
Guillaume Massé
187203
Guillaume Massé
204+
guraga
188205
Gustavo Rodrigues
189206
Hakan Tunc
190207
Hans Engel
@@ -195,6 +212,7 @@ Herculano Campos
195212
Hiroyuki Makino
196213
hitsthings
197214
Hocdoc
215+
Hugues Malphettes
198216
Ian Beck
199217
Ian Dickinson
200218
Ian Wehrman
@@ -218,6 +236,7 @@ Jan Jongboom
218236
jankeromnes
219237
Jan Keromnes
220238
Jan Odvarko
239+
Jan Schär
221240
Jan T. Sott
222241
Jared Forsyth
223242
Jason
@@ -233,20 +252,25 @@ jeffkenton
233252
Jeff Pickhardt
234253
jem (graphite)
235254
Jeremy Parmenter
255+
Jim
256+
JobJob
257+
jochenberger
236258
Jochen Berger
237259
Johan Ask
238260
John Connor
239261
John Engler
240262
John Lees-Miller
241263
John Snelson
242264
John Van Der Loo
265+
Jon Ander Peñalba
243266
Jonas Döbertin
244267
Jonathan Malmaud
245268
jongalloway
246269
Jon Malmaud
247270
Jon Sangster
248271
Joost-Wim Boekesteijn
249272
Joseph Pecoraro
273+
Josh Cohen
250274
Joshua Newman
251275
Josh Watzman
252276
jots
@@ -255,11 +279,15 @@ ju1ius
255279
Juan Benavides Romero
256280
Jucovschi Constantin
257281
Juho Vuori
282+
Julien Rebetez
283+
Justin Andresen
258284
Justin Hileman
259285
260286
kaniga
261287
karevn
288+
Kayur Patel
262289
Ken Newman
290+
ken restivo
263291
Ken Rockot
264292
Kevin Earls
265293
Kevin Sawicki
@@ -333,6 +361,7 @@ Max Kirsch
333361
Max Schaefer
334362
Max Xiantu
335363
mbarkhau
364+
McBrainy
336365
melpon
337366
Metatheos
338367
Micah Dubinko
@@ -372,6 +401,7 @@ Nicholas Bollweg
372401
Nicholas Bollweg (Nick)
373402
Nick Kreeger
374403
Nick Small
404+
Nicolò Ribaudo
375405
Niels van Groningen
376406
nightwing
377407
Nikita Beloglazov
@@ -384,6 +414,7 @@ noragrossman
384414
Norman Rzepka
385415
Oreoluwa Onatemowo
386416
pablo
417+
pabloferz
387418
Page
388419
Panupong Pasupat
389420
paris
@@ -393,6 +424,7 @@ Patrick Stoica
393424
Patrick Strawderman
394425
Paul Garvin
395426
Paul Ivanov
427+
Pavel
396428
Pavel Feldman
397429
Pavel Strashkin
398430
Paweł Bartkiewicz
@@ -401,11 +433,16 @@ peter
401433
Peter Flynn
402434
peterkroon
403435
Peter Kroon
436+
Philipp A
404437
Philip Stadermann
438+
Pierre Gerold
439+
Piët Delport
405440
prasanthj
406441
Prasanth J
442+
Prayag Verma
407443
Radek Piórkowski
408444
Rahul
445+
Rahul Anand
409446
ramwin1
410447
Randall Mason
411448
Randy Burden
@@ -437,6 +474,7 @@ SCLINIC\jdecker
437474
Scott Aikin
438475
Scott Goodhew
439476
Sebastian Zaha
477+
Sergey Goder
440478
Se-Won Kim
441479
shaund
442480
shaun gilchrist
@@ -447,6 +485,7 @@ Shiv Deepak
447485
Shmuel Englard
448486
Shubham Jain
449487
silverwind
488+
sinkuu
450489
snasa
451490
soliton4
452491
sonson
@@ -456,15 +495,19 @@ Stanislav Oaserele
456495
Stas Kobzar
457496
Stefan Borsje
458497
Steffen Beyer
498+
Steffen Bruchmann
459499
Stephen Lavelle
500+
Steve Champagne
460501
Steve O'Hara
461502
stoskov
503+
Stu Kennedy
462504
Sungho Kim
463505
sverweij
464506
Taha Jahangir
465507
Tako Schotanus
466508
Takuji Shimokawa
467509
Tarmil
510+
TDaglis
468511
tel
469512
tfjgeorge
470513
Thaddee Tyl
@@ -485,6 +528,8 @@ Tom MacWright
485528
Tony Jian
486529
Travis Heppe
487530
Triangle717
531+
Tristan Tarrant
532+
TSUYUSATO Kitsune
488533
twifkak
489534
Vestimir Markov
490535
vf
@@ -495,15 +540,18 @@ wenli
495540
Wes Cossick
496541
Wesley Wiser
497542
Will Binns-Smith
543+
Will Dean
498544
William Jamieson
499545
William Stein
500546
Willy
501547
Wojtek Ptak
548+
Wu Cheng-Han
502549
Xavier Mendez
503550
Yassin N. Hassan
504551
YNH Webdev
505552
Yunchi Luo
506553
Yuvi Panda
554+
Zac Anger
507555
Zachary Dremann
508556
Zhang Hao
509557
zziuni

0 commit comments

Comments
 (0)