-
Notifications
You must be signed in to change notification settings - Fork 5
/
example.ref.msg
2521 lines (2521 loc) · 97.8 KB
/
example.ref.msg
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
Fix snapshot version
update chagelog
edit coverage colors icon
LRQA - 14419 Add new property to turn on running tests with poshi runner
Added joscar JAR .
Fix TsExtractor tests
bump engine . io - client
moving tools . jar inside the jre
Remove observer only if it has been registered
Call close ( ) instead of deactivate ( ) in CursorToBulkCursorAdaptor . close ( )
Fix typo in README . md
prepare release checkstyle - 7 . 1 . 1
Updated the version string to the version of T4J
update h2o - flow version to 0 . 5 . 0 with . . . ( # 684 )
missed shift
Updated webchat logo - added oracle logo as a separate image
Ignore files generated by the sharpen process
Removed non - needed imports
Add missing link to the 2 . 0 migration guide .
setting version to 1 . 0 . 133 - SNAPSHOT
Revert " Added Circle CI configuration "
remove classpath from manifest
Put that coffee down .
LRQA - 17074 Modify java . jdk . type property from x64 to x32
update fonts
Create Protocol - Overview .
Make NOPASS .
Fix test data so that it can be compiled
Ignore time - zone data
Add notifications package index .
Update the changelog file
Remove fonts from sysui package .
prepare release v1 . 4
bump engins . io - client
fix error in docking station on chunk unload , fixes # 2898
Prepare 3 . 0 . 0 release
update travis conf
Remove reference to Melomel
updated wiki doco
Integrating new ADB USB debugging asset
Fix indentation
Updated jar
Set Gradle project name for CI
Enabled Whole Module Optimization
Set min width for add dialog .
Added STORM - 816 to Changelog
update support annotations to 23 . 0 . 1
Bumped version to 1 . 3 . 3
Remove ignoreSnapshots , we no longer use snapshot of Commons JCI
added indexes
Clarify prev / next Meaning
update travis config
Fix bug 558 , PImage . save ( ) method not working with get ( )
Fixing debian init script to work on ubuntu LTS
Added Recognizer . removeErrorListener ( ) to Recognizer . py
run Findbugs on main only ( # 4131 )
added missing OSGI - INF to build . properties
setting version to 3 . 0 . 1 - SNAPSHOT
removed unused line
Create CHANGELOG . md
Added Screens
Changed the behaviour of sendKey so that any key event kan be sent
Add mention of 4321 / 4411 to NEWS
Ninja - add debug log statement to mv builder scheduled at startup
bump up druid version to 0 . 4 . 0
updated examples
added conditions section
excluded netbeans path and building paths
JAL - 39 Add image for propietary license
update linux - x86 natives
Removed tag flyway - 1 . 6
Change default fbo cache size to 0
Added STORM - 166 to Changlog
Cancel all pending root scan requests on dispose .
Prevent insanely long passwords from crashing SystemUI
change _username_ field input type in NUX sign in
LPS - 48807 Remove EOL
Changed version back to ' Dev Build '
Fixing the packaging for the SQLiteException
prepare for next development iteration
add STORM - 2081 to CHANGELOG
Fixed indentation in .
Fixes a crash of the QTKit video CaptureDevice on Snow Leopard reported by Yana Stamcheva .
updated core to support new glob patterns
Skip tests pending resolution of JBAS - 8339
Require Maven 3 . 1 . 1 or better
Fixed bug in Svn class with wrong release branch name .
Updated CHANGELOG . txt .
remove logall since it doesn ' t trigger anymore
Delete model - comprehension .
adds TODO for instantiateCroutonView
updated todo . txt
Fixed text highlight alignment when text has nonzero padding .
Fix typo in the android section of concept / buckconfig
Add travis
Update SpongeCommon for DestructEntityEvent cause fix .
Add Review Board support .
Add a simple travis configuration
adding missing library
annotate stacktrace only in " analyze stacktrace " and thread dump console .
Update build tools
Fixed problem with getHighestFnScope method
Bump parent pom reference .
add profvis package to install dependencies
Bumped gradle plugin
Rename README to README . md
Missing test data file
add STORM - 1872 to CHANGELOG
include missing dep for now
Added jar file
Bump the version
Fixed method signature
Delete tablet . png
add todo on replacing pstreams with native implementation
update libwebp 0 . 5
LPS - 43715 Apply the java configuration to all the submodules of the Liferay Registry
MinecraftForge / FML @ c2b919d339e5f63271cfb67a77235c21c5c3b80e Don ' t validate signatures in dev env .
Travis should also use the Gradle wrapper
set component configurations correctly for trident spouts
LPS - 50604 add @ Override
Fix changelog ( 2 . 1 . 15 is frozen )
Revert " Remove stale import "
now removed connect - js submodule
Prepared version 0 . 2 - SNAPSHOT .
change EditDistanceJoiner . jar to multicore version
set device_title type t VARCHAR ( 255 )
Setting default name for multi - project
starting 0 . 5 . 5 - SNAPSHOT
Changing Error to Warning
Updated the version #
Smack 4 . 2 . 0 - alpha1
Fixed bug in getType
fixed create - test - suite command
HoverTank blender model now references the correct textures ( PNG - > JPG )
LPS - 11911 - Add application search input does not get focus in IE ; Updating Alloy to rev . 59820
Set javadoc encoding in utf - 8
Prepared version code / name for release
Update CHANGES , Added 1 . 1 . 1 version notes .
Try different sources setting to attach and deploy sources artifacts
modify travis configuration to run embeded tests
Removing jdk6 from the Travis file again .
Add some .
Added vote , and corrected mvn . properties . default ( added back AL2 license to property file )
Fix typo in pom . xml
removing failing / missing module
Remove allowBackup property from manifest
Remove duplicated bolts library
LPS - 66886 Adds missing file
Add CONTRIBUTING . md to manifest
PUBDEV - 2843 - added full regularization path extraction to python
add " \ n " to processed response
Remove forgotten CLI module reference in parent pom
Add missing SideOnly in BaseMod
Corrected test data
replace demo image
add missing test data
setting version to 1 . 0 . 62
Removed the 3 . 5 . x branch .
added mac binary
fixed data info merge issue .
Add internet permission
Add gitignore
removed aapt since BuildHive didn ' t work
Remove stray import of java . util . List
Fix ringback return value .
Removed tag roboguice - 1 . 1 . 1
added STORM - 548 to changelog .
add STORM - 567 to changelog
Added STORM - 414 to Changelog
Commit missing lib .
Suppress another flaky test .
GRAILS - 5883 - fixed bug in domain class mock constructor that caused an instance of the super class to be returned instead of the target class .
improve gitignore
allow panes to raise themselves again
updated gradle wrapper to 1 . 6
missing import
Generate wrapper with 2 . 7 - rc - 1
remove evil tabs
unused include file
removed jaxen
Modify gitignore file .
update crate - python and crash . zip . py to 0 . 4 . 0
Added tag 0 . 3 for changeset 76f63d1e55a2
prepare release deeplearning4j - parent - 0 . 0 . 3 . 2 - SNAPSHOT
run spark - submit command with bash - c
Built the latest snapshot
Fixed version number
Added relative path to the parent POM so that the user won ' t need to
Add a direction icon for elevators .
Added missing method to check if a BaseObject3D . java is visible .
Updated project . props to Lollipop
LPS - 53579 moves icon
Prepare next release v0 . 91 . 1 - SNAPSHOT
adding words suggested by users
Fixed LONG_DESC
set origin type with normal type
Add xhdpi notification icon .
Don ' t draw the current state if we are forcing another invalidation .
Added encrypted bintray api key to the travis file .
Fix # 47 - Update docs
Prepare version 25 - beta1 .
using glassfish - integration instead of glassfish
fix merge conflict resolution
Add @ Override to overriden method .
Fix typo which cause stack overflow if children ( ) was called
Remove old unused jar
Added instructions on how to build the files from ndk
Add placeholders into required ( by Android tools ) folders .
Add own support lib for SeriesGuide .
Remove plugins / from gitignore
LPS - 8222 Fixed invalid markup causing the template not being loaded .
Reset loaded document on script execution .
align chevron vertically with text to right
Fixes
Fix FrameworksServicesTests . apk to include libnativehelper . so
Updates smack lib with replacing all console prints with java . logging one .
Fixed missing PR comment .
Fix compilation with - Pyarn
Upgrade ui spice list sample
removed the NOPASS flag from glm weights test .
adding logback - test file ( disable logging in tests )
Added another logo version
destroy folding model in three - side viewer
added commons - io as new commons - fileupload depends on it
Added a link to how JavaFX bindings work .
Remove unnecessary dependency on Clang headers .
IDEA - 103375 Fix understanding Git submodule roots
Fix Gradle paths
JAL - 35 Add image notes to non - proprietary licenses
Marking the Settings ContentProvider as singleUser
added info for forked - path workaround
ignore blogs - demo 1 . 0 . 0 prep next
Adding basic metric support
Added gitignore .
Replaces FMJ with a newer version that properly logs packets discarded in the RTP packet queue
Add more locations to gitignore
removed echo
adding las vegas wav file
Commit actually correct VizModel fix .
Move framework tests into correct package
removing binary jars
updated favicon
Use an opaque background for the search bar in legacy SearchDialog .
Temporarily disable JavaLineIndentProvider not to break tests
Prevent spring - boot - actuator - docs from pulling in H2
Fix Proguard flags causing crash in system bar .
Remove unneeded version property .
convert GitVersionTest to junit
Added test - output to .
Upgrade version .
Updated help jar
Added STORM - 1191 to Changelog
run manage . py as __main__
Add RIL_REQUEST_SET_INITIAL_ATTACH_APN .
fixed IDEA - 119347 .
prepare for next development iteration
Tweak class loader
Fix doc for eclipse profile generation
tweaked sign on dialog
Making default upload and download arrows more visible
undoing a test change to droidgap
Updating Alloy to rev . 73528
Push version to 16 - beta2 , 15011 .
update maven dependency plugin
Adjust Iron Fluid Pipe Texture to match Item Pipe
Update build tools to 21 . 0 . 2
removed comment
Added eclipse specific files / folders to .
Resolve conflict with filesystem package
missing AndroidManifest . xml
Adding STORM - 1393 to CHANGELOG .
Reverts a mistakenly committed file in r10614 .
Put back abstract version number
Added STORM - 1206 to Changelog
LPS - 36002 Localized input fields have broken tooltips and hide on hover
Change file name to match class name
Fix test failure on some platforms
Updated license date
Fix attribute reference in README
Added the LCURLY for switch statements
remove unused import
Reconfigured cobertura plugin to produce XML and work with coveralls plugin .
Removed groupId ( duplicates parent ) .
added Chronic to dependencies
added duke choice 960x90 logo
add download source of demo
LRQA - 14590 Add new property to available properties
Dropped dead code files .
add required pathway_type column to test GTFS
Removing targetSdkVersion from library .
Turn off unit tests in fbthrift / wangle
fade scroll bars for status fragment
gh - 50 Switch unordered key generation from FNV32 to FNV64 ( sears )
set openpgp api to v2 . 4
rebuild runnerw so that it has more reasonable size
Added min SDK version to AndroidManifest . xml
add STORM - 1344 to CHANGELOG
Set appropriate java opts for fuse
changed default ask timeout to 10 minutes
LRQA - 27145 Add shield test property
Try parallelising on appveyor .
remove keystore
Adding building web placeholder
remove useless .
Remove 111
LPS - 64588 Git ignore theme LARs
Fix readme about usage .
added the new icon to this repo as a place to host it
adding ignore file again
Add a note that states that you have to use @ Qualifier instead of @ BindingAnnotation in order for the generated code to work correctly .
Add field for java pc rendering
Add isScreenOn ( ) to LocalPowerManager interface so we can call it from PhoneWindowManager
remove custom project site css .
Add warning when getContext is null .
Make advanced view persistent .
pushed again , this time doesn ' t contain unused libraries .
LPS - 54927 Remove settings
Remove reindex from plugins list
add google repos
Add 1464 to CHANGELOG
add blank iphone5 preview
Fix setReleaseLabel ( ) .
Updated the editorconfig based on Sam ' s feedback .
canvas . rotate ( ) expects degrees
disable animation
Deprecate SQLDialect . POSTGRESPLUS
Change the command executed by travis .
LPS - 56746 Missing alter table
prepare release storm - hdfs - 0 . 1 . 1
Fix filename
Move msn contact server from by3 . omega . contacts . msn . com to omega . contacts . msn . com .
Fix NPE in getForegroundTintList
Added lib folder to ignore
Upgrade parent pom version .
Implement placeholder About dialog
Added jna platform jar .
Upgrade Nebula netflixoss plugin to 3 . 2 . 3
Ignore Gradle - related files and directories
travis only build master
Removed openjdk8 from build tests
Removed " target " entry from gitignore , allowing to commit changes to the " org . springframework . aop . target " package
Ignore Android Studio build output
Remove unused pic
Cleanup ( misplaced test data )
fixing warning message layout size
remove version from readme
Added a " docs " convenience task
Added Icon
passed 6 times on small machines and my local machine
Added icons .
Add a quick icon for the toolbar ( Just modified the executeCode . png file )
test coverage ignore private constractor
fix a bug with NullPointerException thrown
Add billing activity to manifest
Skip cobertura for releases
Close the HTTP connection in the callable
inadvertently removed method
Add Test Plan to Repo
update PDF
Remove extra spacing
CLJ - 1854 make line number available on synthetic method
update sidebar to remove ' Contents ' which looked like it applied to one section only , whereas it ' s all contents
Testing Travis - CI workaround
LPS - 52627 moves icon
Simplify range check for audio_mode_t ( continued )
LPS - 59960 exclude classes directory for intelliJ modules
chmod 644 all drawables
Create README . md
Added parsing of Cython enums
LPS - 7723 Portlet title text show text cursor for editable component
Changing default value for controlDir .
Fixed problem with getHighestFnScope method
Added deprecated note
fix a typo that prevented glTexImage2D codepath to work
gh - 46 Fixed typo in RedisClient
Fix phrases
revert log4j change , again
Add help to messenger
update testng sources to 6 . 8 . 8
OSGi support - I forgot the ant task driver .
scrollbar image caused an exception and now is repared .
adding IntellJ logo
Caching dependencies to speed up PR builds
Fixed test data
add diffutils to notice file
Keep javax . inject . Inject annotation in compiler after shrink
fixing gitignore
Updating Alloy to 2b40824 ; LPS - 27523
don ' t need null check
Remove accidental import
Ignore Mac OS X filesystem metadata .
add padding between rating icons
Added files via upload
Ignore WriteTimoutTestCase
Added adjustViewBounds = true to the mshot so the lock icon appears larger for private blogs
LPS - 52290 update version
enable CAP_BLOCK_SUSPEND capability for system server
Fix flag value collision
Don ' t use old animations on any v11 + device .
LPS - 51658 Should also clean test - results
Use correct tomcat plugin version .
Keeping intellij files in git for now
LPS - 51636 moves icon
update applet loader zip
Updated material design icons ' .
added jaxen jar needed by dom4j for xpath
Actually reference the fixed Proguard flags .
Add note about constant join criteria
Fix proguard
improved screenshot
Added STORM - 1253 to Changelog
add notes about JDI
Add xxhdpi info window asset .
Delete gradle . properties . example
Bumping module .
Elasticsearch bootstrap help shouldn ' t mention plugins
Updated ZeroClipboard . swf file
LPS - 65749 prep next , use latest
made javadoc classifier maven standard
remove " final " modifier for EventBus
Reverted change to logging file ( was not the right logging file ) .
Ignore executionTimeMillis when comparing explain results , as it varies per execution and therefore causes occasional build failures
Add MEDIA_PROJECTION_SERVICE to the ServiceName list .
update travis for jdk8
close the OutputStream when audit has finished
Added STORM - 611 to Changelog
Added one line of space before main screen footer .
remove unused import - try to kick start github sync
Initial support for I18n ruby find usages support + fixed tests on yaml backend
updating to Gremlin 0 . 8
Bump packager version to match GitHub
fixed border on table with btns
Allow external file picker
Fix uninitialized variable in SurfaceTexture
LPS - 18566 replace xuggler jar with jdk5 version
added icon - robots . txt to skip icon classes generation for resource modules instead of using hard - coded blacklist
LPS - 35633 Add missing language key
NumberPicker truncates the edited value .
Make gestures visible again .
add the the previously deleted build - tools .
Fix SortedSet cqlsh formatting ( follow - up to CASSANDRA - 10513 )
prepared for next development iteration
android - library is deprecated use com . android . library instead
Built the latest snapshot
Fix resource filtering for graylog2 - radio
Change action item min width to be 45dp which will make the smallest size a square .
hibernate validator jar in GRAILS_HOME so hibernate plugin doesn ' t get resolve errors on load
changed project target to a - 18
Ignore bin directory
Updated Version to 0 . 4 . 0
prevent detecting some incorrect words as correct
create configBase , since it is no longer created elsewhere .
Add SuperFinalize checkstyle rule
Updated APK
bump pegasus version
Fix parentheses balancing in README
Added fork .
SONAR - 5329 - Added activity table to DatabaseVersion for cleaning .
Remove dead variable _hdfsActive .
Fix indent
git ignore netbeans project configuration files
updated CHANGES
and fix a typo in the one line change
Rename observations doc file
Set TWLayoutManager to have vertical orientation by default
DO NOT MERGE Fix finalization
commented out the package tag used by javadoc plugin , because javadoc was confused
add line back into pom
install rsconnect rather than shinyapps on windows
Fix audio preprocessing library wrapper
Fix NPE in volley stream fetcher
Fix package name
Make dump - po - files .
Compiled libvudroid for arm64 - v8a for devices such as the HTC Nexus 9 .
add gradle resolveDeps into intructions
Upgraded gradle plugin .
Incrementing version to 1 . 9 . 0rc1
Added missing newline at end of file
Improve message when database must be upgraded
removing Gradle output that should not be in git
tolerate no existing rmarkdown package archive
Adding webkitVisibilityState to webkit document externs .
nexus 4 is using rmnet_usb0 as 3g interface
Add github ' s action bar icon
Remove tez_smb_1 from tests .
default native proto to correct port in Config
hide AudioAttributes . usageToString ( ) method
fix bug in non - choreographer looper
bumped version
IDEA - 95867 please map an " XML Catalog " topic
Remove unnecessary getter
Updated the Google search scenario as the original text is no longer shown
GRAILS - 7541 - Added missing dependency on i18n plugin by domain - class plugin .
Covariant Equals Check compilable UT inputs
sharing icons
Added STORM - 757 to changelog
remove - - debug option
Replaced test - setup .
Fix typo
Remove automatic left factoring declaration from Java . g4 since the processing is currently very slow
Adding caching to Travis
Push version to 12 - beta6 , 221 .
updated snapshot version to 0 . 3
add # 1968 to CHANGES
update xsoup version to 0 . 2 . 2
woops java type checks !
update travis
added redirect template
update library reference
Make app module field private .
Disable other test .
Update deprecated link
Remove bogus symlink .
prepare for next development iteration
updating gitignore
Moved utility class to the correct package .
Fix IDEA - 119515 for the other IDE ' s
Bump OpenSSL submodule to 1 . 0 . 1g
updated version
upping the version to 2 . 0 - BETA
added support for file encoding
add NOTICE file
Added defensive logic to Message to be able to set null body / subject .
Fix the merge for forge
add Yan to team
Shutdown the actor system after we are done with it .
fixing C macro
Fixed bug in new entity sound hook .
fixed source / target Java version in IKVM conversion script tempalte
Bump android build tool version .
Add slash to path .
Update doc commit pointer
Increases the amount of supported waving blocks to 16 .
HHH - 9201 - Evict cache instead of remove after transaction completion
update linux - i386 jar to 3 . 0 . 4 ( native )
LPS - 22834 Default it to false
Upgraded target versions
Fix crash when using alert ( ) polyfill due to null callback
Fixed typo in mucMember table definition .
Prepare version 29 - beta2 .
Removed bin from .
Fix gif url
Add JmeVersion to .
make trunk 1 . 9 - dev
Updated Deep Learning and R booklets on github
prepared for next development iteration
Disable watch service based file watching for now
help ids
Added STORM - 468 to Changelog
remove runit_NOPASS_nfoldextractor .
Added newline .
Set jdk version to 8 .
Add Mongolastic into Misc
adding libtool
add missing translation
Fix hashCode
LPS - 57968 Add action to auth . public . paths
include separator below title
Added STORM - 762 to Changelog
Don ' t run dSYM on bundles
Fix Rhodi KL file axes
Remove recycle of B2CConverter when used for URI conversion .
Added toString ( ) method in NeoApp . NeoAppRelationshipType . . . otherwise
support single backslash tex math
Reverted changelog
set default profile dev
Make map zoomable on double - tap
Remove coming in 2 . 0 . 0
Disabling JaCoCo by default
LRQA - 22677 Add new property for separating flaky tests
Squelching the noisy travis per discussion in irc
fix failing test
Updated MINA .
skip install step when building on travis
Fix test
add version + 1
renaming UAParser . php to uaparser . php
Updating Alloy to rev . 79471
updating new binaries for Exxamples and Library
Fix a bug for users with space in home path .
Don ' t return an unmod collection .
also remove old ' PROFILE ' define
wait more and push more elements in to flume
Fix AccountManagerServiceTest
Add temporary class object icon for structure and project views
Fixing broken image
arrange the sub - task order of clean task in order to execute cleanLocalMavenRepos task at the end .
Move hwui tests to libc + + .
add session scope id constant
Actually set the autobind flag with the specified value ( # 1038 ) .
Added STORM - 298 to changelog
adding batch and update flags to maven build invocation
Use same line - height for paragraphs
Propagate constant name / version to magic property name / version .
Updating Alloy to d4efc94 ; LPS - 21675
Updated project zip .
Use darker not watched check mark .
Do not refresh field statistics by default
Remove incorrect postag JJ for ' earlier ' and ' earliest '
Create README . md
Remove redundant commands in travis config .
Revert " Next development version "
Add correct mvn version to travis . yml
Fixed eurosport cert
Updating Freeboxos API to v3 . 0 and proposal of localization for MapTransformationService
Remove unnecessary argument to start script .
Add build number to archive name
Prepare next development version .
Created tech - debt entries for all components and laboratory components .
Updating Alloy to 26c38ba
removed normalize from lfw
new svnkit build 5153 ; fix for quick update
re 3 . 0 - rc - 1 version bump
added a copy of the exe file to cvs so that ppl don ' t need all of gcc to
Fix memory leaks in Throwable
add maven repository needed by wpandroid
Include a little reminder that you can put init scripts here .
update vertical_stepview .
Add travis .
Make the remote control desktop sharing check box non - opaque on Windows and Linux .
Upgrading parent version .
Remove invalid generics from warningsOverload group .
Add Travis config .
fix a little annoyance , ignore emacs interlock files
add maven - surefire - plugin encoding
Replace hardcoded PI with Math . PI
Support stencil - based clipping for functors
Added Gaspar Modelo Howard to credits
fixed multiple db calls
Upgraded the version in the parent pom references in our example components to 3 .
Bump version in instructions
Bump common ref for isAreaLoaded fix .
Added note for translators .
Bumped nebuladotNetflixoss from 2 . 2 . 3 to 2 . 2 . 5
update CHANGES
Restrict S3 deployment to actual tarball
LPS - 67643 reactivate test
Create symbolic link to LICENSE file
Add options . setTrustedStrings ( true ) to ant jscomp
@ Deprecated does not have effect in Groovy
delete obsolete TODO
moving back to servlet 3 . 0 . 1 as 3 . 1 . 0 requires jdk7
Remove unused field from AssetManager .
Updates SRTP transform engine when setting new SDES keys .
build trove4j to be compatible with 1 . 5
Removed unnecessary tag
Bump commons - pool2 to latest version
add custom elasticsearch repo on google code
Add missing tag
Fix a broken test utility causing many Apple tests to be skipped
Ignore list created
Added STORM - 1416 to Changelog
Add stubs needed to enable javac to compile lambdas
Force a difference in the timestamps by sleeping for 1 millisecond .
adding acls
Fix build break
bug when replacing user created masks
Removed legacy JavaMail jar .
Add aphyr ( Kyle Kingsbury ) to contributors list
Built new snapshot
Consider default zoom scale for mobile viewport .
Fix config
Prepare next development version .
Do not need regex anymore .
Use correct ' beta ' icon .
Add icon files for neo4j - desktop
updating banner images
Fixes java 1 . 5 compatibility .
Adding STORM - 1395 to CHANGELOG .
Fixed path issue
added screenshots
Groovy Test module has a runtime dependency onto the " Ant " module for tests
add words suggested by users
remove background color from welcome fragment
jabber connecting icon
Create README . md
Remove deprecated nodeprobe link
set default srcdir as delivered by the OSOLopengrok package
prepare release acra - 4 . 6 . 0
add configuration file to configure Tachyon Version
remove superfluous ` after " mvn clean validate - P checkstyle "
Remove unnecessary method
Updated release number
Add " Seashore " graphic file for " Feature Graphic " image .
Added tag 0 . 0 . 6 for changeset 9361e645790f
Add new buildout dirs to gitignore
removed obsolete Gradle files
changed path to libraries
upgraded netty to 4 . 0 . 23
LPS - 69838 Add empty property
LPS - 57379 Fix potential future bug
Corrected the groovyBundleVersion in build . properties for the new 1 . 8 . 0 - beta - 1 branch .
add module settings action to dependencies trees
Fix WebView automaticallyAdjustContentInsets error
removed unneeded file
remove example module from parent pom . xml
Upgrade release plugin
Makes it possible to specify an AES implementation provider .
Upped dependency version for bukkit .
Added an RSA cert , updated the DSA cert ( JM - 306 ) .
Removing idea . properties from the repository
Make PhoneAccount . CAPABILITY_VIDEO_CALLING public
Create README . md
Remove executable flag from source files
Keep tmp / cache .
ignore calevent - importer 1 . 0 . 4 prep next
ignore all hidden file in linux .
Revert " Revert " Add PLAY and PAUSE keycodes and remove PLAY_PAUSE keycode . "
update win32 natives
Fixed Android Support library for Cropper .
Multi - Window support added for android N
move test file into temp folder
shorten guid prefix
update sunos natives
Fix incorrect header depth in the documentation
setting version to 1 . 0 . 105
added JUnit
patched version of itext 1 . 3 to include fix for osx
Fix missing Date import in Restore . java
revise the project dir navigation icon to be more subtle
Fix Android codegen tests
Add missing comma
allow fat jar creation
update CHANGES
LRQA - 25802 Add portal - staging - ee component
Use this ( ) in constructor
Activated execution flag on synch . sh ( # 2025 )
add Gpu - Image library
Fix revision for native git instead of git svn
Broken plugin script , closes # 1474 .
updated oscar - aim . jar and joscar with binaries runnable by 1 . 4
Adding some memory settings that any forked surefire tests can utilize
removed roles from neo4j recipe , since they can not be part of a recipe
Updating Alloy to rev . 76833
Upgraded parent version .
fix a wrong private key length parameter for DH 2048 mode
Fixing a failing unit test .
Added STORM - 1590 to changelog
Smack 4 . 0 . 5 - SNAPSHOT
Updating Alloy to rev . 83648
Removing unused override .
Removed log4j from comment in pom
Enable all Travis notifications in branch - 5 . 6
add tools . jar optional dependency
add STORM - 1835 to CHANGELOG . md
Fix an infinite exception storm triggered by DefaultChannelHandlerContext . invokeInboundBufferUpdated ( )
Javac ( at least for 1 . 7 . 0_51 on Mac ) wants fully qualified class name
use explicit conversion of shared_ptr to boolean
add credentials on the command line
Removed a TODO mark which is not going to be fixed ( it just works and is not reusable at this moment . )
Fixing broken image
Changed default resolution to 320x240
Added files via upload
Released OrientDB 2 . 1 . 0 GA
added missing BenchmarkRunner config for JSON - lib JSON databind
better faster smaller roaring bitmaps
Incorporate Mike \ ' s feedback
Catch badly formed URLs in WebView accessibility injector .
prepare for next development iteration
fix the syntax error in doc tutorial
Add GC thread to RSGL .
Fix travis
Replacing correct XML tag on editing external annotations .
Up ' ed version number
Remove < application > tag from manifest
Rename drawHelper . java to DrawHelper . java
Update SpongeCommon for player slot restore fix .
added test to index . list
Bumping git reference
Fix naming issue in comment
Correct the example maven dependency to include < type > apklib < / type >
Bump pegasus to 1 . 8 . 2 to get ' comma in batch_get ids ' fix out
Fix indentation
Make final
Added Esperanto translation for Tagalog ( tl = . . . )
Create README . md
added missing def
Fixed Travis for JDK 7
fixed spacing
fixed the artifactID
missing file
Fixing devbuild breakage
Remove another scheduled - for - deletion class from the preload list .
added Android Arsenal link on Readme file
Make PyUnbound Local Variable inspection enabled by default
enable security manager in tests
Fix bug 5248444 - ViewPager reported scroll state out of sync for some
Remove versionNameSuffix
Add an armv6hf library for Serial
Should explicitly specify source = 1 . 5 .
Used device art generator for screenshot
New build of the LLVM JNI dynamic lib for OS X with the changes added recently
reset when release
Add README .
Updated upgrading section
Add image of profiled result
rewrite readonly status dialog ( IDEADEV - 2453 , IDEADEV - 8703 , IDEADEV - 12772 )
changed version to 2 . 0 . 1 - final
Begin version 0 . 9 . 11 .
Removed forkMode = never on Persistit tests
Remove dependency on deprecated mms - common module
Fix ignore list for prevent committing keystore file
wait a bit
Fix typo in docs / index .
Releasing v6 . 0 . 14
Shortened name of target artifact with all dependencies
Modify install_fbthrift .
Fix typo - duplication of SHA - 384
delete generated files
index function throws ValueError not KeyError
Clarify that frame . strsplit ( ) function takes a regular expression as a parameter
Latest build tools version
LPS - 43575 Copy new jar from shared
gh - 66 modified mapkeeper readme
IDEA - 119515 ( Tip of the day contains null character and unclear screen shot )
remove another unneeded dependsOn
update rest - client ref
remove stray character in POM
Make the README point to the robolectric home page instead of jasmine
adding necessary build libs
update native libs to 3 . 2 . 2
LPS - 66545 update SDK
switch back to old encog , the new version breaks a test for yet unknown reasons
Remove debugger wrapper from argv for ' Show command line option ' ( PY - 14767 ) .
prepare for next development iteration
Make this 13 - beta2 , 242 .
Correct compile error .
Do not show article tab for non - articles
update the conversations view ( and the lock icon ) after receiving device list
Remove System . out from msn lib .
fixed compilation error
Fix leaked broadcast receiver
Fixed action mode bug with select show on map in my tracks
Create README . md
Add api 20 to list used by reference docs .
disable export of artifact
Switch favicon . ico value
Adding STORM - 1478 to Changelog
Add Travis secrets for snapshot deployment .
Fixed grayscale on p . color . toHSB , which was ignoring range .
PY - 1065 Reformat and auto - import do not respect space - after - comma preference in multiline imports
help ID ( IDEA - 57112 )
Adjust CHANGLOG for new version .
spell your name right yo
Updated version properties
Updated test for GROOVY - 3401 with a correct example showing that we can put a blankline before the colon
LPS - 53404 moves icon
add apk file
Added STORM - 412 to changlog
changed return type to be more generic
Added STORM - 1481 to Changelog
improved shiny icon from paul
SONAR - 5209 Fix small issue with display scm and duplications
revised wildfire header logo ( colors weren ' t accurate to original logo files )
Fix incorrect lowercase response headers set for XHR responses
Fixed the animation end event .
Updated flightmode stat_sys icon
Fixed checkstyle error
Fix indent
Use a full - screen - width version of the in - app search dropdown with
removed testing release from ' all ' task
delete unused performance tracker
initialize lowLevelConsoleIO member of ProcessOptions during construction
Added the Stabilizer chapter / sections to index .
LPS - 21613 - Updating Alloy to d20b28b ; LPS - 21613
ignore portal - profile 1 . 0 . 0 prep next
added wrapper task
enabled proguard
Added one field more to cycle table .
upgraded proguard to 5 . 1
change travis campfire settings
Fix executable permissions left out of commit for HIVE - 1487 .
Now deploy the JAR as well ; bump version to 0 . 6 . 1 .
iOS InAppPurchaseManager plugin should accept all possible transactionStates .
LPS - 48154 Expose it or else Eclipse complains
setting version to 1 . 0 . 89 - SNAPSHOT
updated test dependencies
Switch animator to fixed - rate scheduling
Added rsCpuExecutable . cpp to compatlib build
Fix NPE in BrowseFragment header transition before API 19
Removing alloy 1 . 0a zip
add jniLibs . srcDirs
added putc ( ' ! ' )
Create License . md
Removed tag roboguice - 2 . 0 - ignoreme6 , roboguice - 2 . 0 - ignoreme4
added support for AssertStatement
updated plexus component metadata plugin
LPS - 42177 Use the default size for the text
DomModelTreeView disposing fixed
I hate double quotes
Changed dependencies to milestone versions in preparation of tagging
Add mapreduce - client - core lib .
Forgot to add this
Include strings . h for the strcasecmp prototype .
add method GraphTableCell . getRefsToThisCommit ( )
use the new graphview subproject
Tweaked example
hibernate ehcache jar required for backward compatibility
MinecraftForge / FML @ ce791cb1f2cf983ef77b1e5c4028ddefab394062 Rework EventSubscriptionTransformer to bake @ Cancelable and @ HasResult values , should increase EventBus performance even more by removing logic from Event constructors .
updated README for v0 . 1 . 2
fixed javadoc
Shutdown of OSoftThread now also interrupts the associated thread
LPS - 53947 add @ Override
Fixed a bug in skipElementValue ( ) when skipping array values .
update bullet native binaries
Set Android target platform to 21 for NDK
Allow Travis to use JDK8 in the build matrix
moved file to top of repo
Updated database with structs from AngryBots 4 . 3
Push version to 11247 .
quell ant runtime warnings while executing target build - test
Fix CHANGES . txt for 3 . 1
Drop unused resource .
ignore iml files
updating version number to reflect changed apis
Upgraded Gradle from 2 . 2 . 1 to 2 . 7
Remove annoucement on BottomSheetDialog Background
added circle - ci config
Added comment to eagerly initialized singleton implementation .
GRAILS - 9431 - include liquibase in the dist
Allow categorical encoding .
prepare for next development iteration
Bump ref
remove mention of GROOVY - 6226 ( Configure Eclipse Plugin ) now that the issue is closed
Add a fake css font declaration to stop a warning from appearing
Renamed screenshot file .
Add an ensureOpen check to Publication . positionLimit ( ) .
remove macosx bunk from the reference export
Missing first line of license in header .
Fix warnings
Fix pom . xml dependency on support - v4
LPS - 46191 Auto add c . tld if they put osgi . auto . update . xml .
Remove redundant test
Should not be closing system dialogs when Recents is hidden .
Resizing a demo images
setting version to 1 . 0 . 115 - SNAPSHOT
Includes the NOTICE file in the release
Revert " still need a res dir to prevent eclipse from freaking out "
Rename all non - abstract schemas to end in V2
prepare for next development iteration
removed unneeded jsp21 configuration
add default properties for Analytics plugin
Added eclipse / bin / folder
Fix missing imports .
Updated ref to oc - android - library after increasing its build target to API level 23
Changed the plugin version in plugin . yml to be a string .
run list
capitalize sample app name to avoid issues with JSX
Rename txtfiereader . md to txtfilereader . md
Changing Changelog for projection / fields changes .
hide structure by default
New build tools
Add h2o src jar .
Bump up the version number .
shutting off external stop messages once again
invalidate WebView after Title change
Add IntelliJ project files and Gradle build directory to gitignore .
Prepare 0 . 2 . 0 release
Prepare next release v0 . 87 . 4 - SNAPSHOT
Adding maven set version backups to gitignore
Use build tools version 18 . 1 for SeriesGuide modules .
Fix jar building
Fix incorrect Activity declaration .
added sources to junit jar
cherry pick " Fix build " a227db53f0cd30214c393b400436d1e0863396ef into master
Git ignore local . properties
Add Javadoc
create attributes and nested elements on demand
Updated splash screen
LPS - 65477 prep next , use latest
remove me note
fix a grammatical error in README
prepare for next development iteration
prepare release 0 . 8 . 9
LPS - 26650 rollback icon , will add it using ant
added ISchemableSpout interface
Sample data
setting sources version 0 . 9 . 11 - SNAPSHOT
added missing version
Add headers in english version
Add g + + and zlib1g - dev to the set of required packages to install Bazel on Ubuntu .
Fixing broken dropdown asset in Honeycomb as well
use an update - binary with support for ARMv5 ; fixes # 50
LPS - 46191 Remove old SDK code that is broken .
fix another bug that prevented the gl debugger to work
Bump up heap size for IBM JDK
Working a bit on the test to see what ' s going on with Jenkins .
hide secondary toolbar on startup
Adding newline to ensure tests pass on Windows
Add example dataSourceFactory properties to reference . yml
bump version no .
Added getter to the user object associated with a base adapter helper
do not dramatize queue overflow events
update location module
Removed test which needs to be debugged
install debian packages essential for package building
changed minSdkVersion to 8
Add files via upload
Add jcenter to global repositories .
Corrected a tiny comment typo .