-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathChangeLog
1156 lines (628 loc) · 37.6 KB
/
ChangeLog
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
[2015-06-25]
* Fixed: accidental deletion of object map files
[2015-06-23]
* Release: v3.3.9
[2015-06-22]
* 1. Fixed: Using a modified snakeyaml to handle String properties with binary data properly. 2. Fixed: NPE in object map 3. Update: SampleApp added a tooltip with binary data to check the SnakeYaml fix.
* 1. Added informational messages for MarathonITE options in Marathon.
* Fixed: remove the container file if there are no entries to save
[2015-06-20]
* 1. Fixed: disabled combo box items when displaying launchers.
* 1. Added MarathonITE launcher models into the launcher list.
* Added: a cancel option to blurb
[2015-06-19]
* Fixed: Blurb able to work in EDT or outside of it
* 1. Added: WelcomeMessage. Using a Utility class Blurb. 2. Added stubs for the marathonite methods, with an option to turn them off. 3. Added jalian logo to the welcome message.
[2015-06-18]
* Fixed: Using getter/setter to access dirty flag Fixed: Renamed OMapComponent#used to entryNeeded Fixed: Added OMapComponent#used to use with object map cleanup Fixed: moved OMapContainer#omapDirectory to Constants. Fixed: MarathonMode#OTHER renamed to PLAYING. Fixed: Added isOMapSaveNeeded to MarathonMode. Fixed: ignoring additional properties in the YAML files while constructing POJOs
[2015-02-16]
* Updated ChangeLog
[2015-02-08]
* Added an exception gaurd for the JTable#getCellEditor call
[2015-01-09]
* 1. Updated Change Log 2. Changed Version
* 1. Added optionpane message for error in parsing.
[2014-12-22]
* Console Log added.
[2014-10-17]
* Added new feature console.log
[2014-06-06]
* 1. Fixed: Table cell editing of checkboxes causing issue.
* 1. Removed a println.
[2014-06-04]
* 1. Sending proper key sequence for '&' 2. Fixed NPE in Context Menu.
[2014-04-15]
* Fixed: added yydebug.jar to marathon.bat
[2014-04-09]
* 1. JRuby updated to 1.7.11
* 1. Fixed: openApplication stopped working due to reuseFixture handling.
[2013-12-10]
* Updated: Version to 3.3.8.3
* Fixed: context menu resizing due to new lines in the text
[2013-12-09]
* Fixed: NPE while getting content from Combo box
[2013-11-25]
* Updated: ChangeLog for v3.3.8.2
* 1. Added: Support for abort, fail, fail-close, ignore-close to WindowHandler
[2013-11-19]
* Updated: version
* Fixed: invalid conversion of rows/cols for table and tablecell
[2013-11-18]
* 1. Added: WindowHandler to handle exception windows (usually thrown in the EDT). Options are to ignore, fail the test.
[2013-11-08]
* Updated: batch files to use new support libraries
* Updated: Version to 3.3.8 Fixed: Stability issues.
[2013-10-28]
* Fixed: Removed warnings
* 1. Removed println(). 2. Added MenuSelectionManager.clearPath() to make tests successful. 3. Classpath updated so that it is not dependent on JUnit3 plugin.
[2013-10-25]
* Fixed: NPE with JDK1.7.0_25 upwards
[2013-10-22]
* Added fix for JDK1.7u25 onwards - appContext not set.
[2013-10-16]
* Fixed: added support for 1.7.0 update 40 workaround
[2013-09-27]
* 1. Modified Marathon.launch to use guice-3.0 folders. 2. Updated Profile to add javax.inject jar from guice-3.0
[2013-08-19]
* 1. Fixed: CSVReader for Python (reads numbers/strings properly now).
[2013-08-13]
* 1. Fixed: ruby.home being set and masking ruby-complete.jar 2. Fixed: Ignore window with 'Starting application...' title unconditionally.
[2013-08-12]
* Updated ChangeLog and Version
* 1. Fixed: performance on huge tables when using default component-info.
* 1. Fixed: JTable gets the converted index from sorter if needed.
* 1. Added support startwindow (MarathonITE)
[2013-08-06]
* 1. Updated guice to 3.0
[2013-08-02]
* 1. Updated Version and ChangeLog
[2013-07-15]
* 1. Release v3.3.5: Updated ChangeLog and Version
* Fixed: Changed the names of script models
[2013-07-11]
* 1. Fixed: Issues with Java 1.7.0 update 25
[2013-07-06]
* 1. Updated ChangeLog and Version.
* 1. Modified: to use jython/jruby standalone/complete jars instead of regular distributions.
[2013-07-03]
* 1. Changed Version and Updated ChangeLog
* 1. Recording/Replaying using link/text for JEditorPane implemented.
[2013-06-29]
* Release v3.3.3: Updated ChangeLog and Version
* 1. Added support for reusing fixtures. 2. Fixed: added .gitattributes to not convert marathon/marathonite scripts
[2013-06-24]
* Changes; Main.java, Navigator.java - ignoring empty spaces as module directories while processing MPF DisplayWindow.java - validating Module Directory name while creating new Module Directory.
[2013-05-10]
* Fixed: renamed Fixture_properties to fixture_properties to avoid warning
[2013-04-29]
* Removed: marathon-suite-editor
[2013-04-26]
* Fixed: Launchers to use Jython 2.5.3
* Changes: build.properties, marathon-python/.classpath - Updated python version to 2.5.3.
* Changes: Updated python to version 2.5.3 in marathon-dependencies directory.
[2013-04-22]
* Updated ChangeLog
* Fixed: NPE in DnDAction. Fixed: When invocationTargetException is thrown throwing back the targetted exception. 1. Added a Retry for the setText to wait for the selected row to be rendered. 2. Fixed: Removed call to rewind 3. Fixed: Added bigger timeout if destroyRuntime is called while a shutdown is in progress. 4. Fixed calculation of the click point on table header items. 5, Fixed: Generate error when setup fails due to window is not opened, class not found etc. errors 6. Fixed: marathon.home set to the absolute path of the installation
[2013-04-02]
* 1. Fixed UTs failing due to change in default omap configuration.
[2013-03-25]
* 1. Fixed: No scrollpane for selected tests in suite editor. 2. Fixed: MarathonJava#frame sets the toplevel window only if one is not set.
[2013-03-23]
* Updated: ChangeLog
* Changed: Version number
* 1. Fixed: SuiteEditor not handling tests in sub folders. 2. Added New Suite file option to Navigator new menu
* 1. Updated ChangeLog
* Added: New Suite file action to menu
* Changed: Version number
* Changes: Added Refresh to suite editor
* Updated: gitignore
* Changes: DisplayWindow - Returning SuiteEditor if the file has extension suite. IEditorProvider - Adding SUITE to enum. RSTAEditor - Adding cannot handle .suite file types. TestCreator - Added a method to return all suites. TestSuitePanel, TestTreeModel - Made these public so they can be used outside the package. Added marathon-suite-editor project. .gitignore - Added marathon-suite-editor/bin to git ignore. Added - suite-editor as a package to marathon-core. Using UiUtils to create buttons and PanelBuilder to layout.
* 1. Fixed: More than one component matched error when the Window as well as an InternalFrame contains component with the same properties (including indexOfType).
* 1. Updated OMAP configuration to support JWindow 2. Wait for window active is used only for Dialogs and Frames (Support for JWindow)
[2013-03-22]
* Update: Version number changed
[2013-03-21]
* Fixed: Recursion due to markUsed (MFileChooser)
[2013-03-20]
* 1. Refactored to move delayInMS to Marathon class.
[2013-03-11]
* Updated classpath
[2013-03-06]
* Updated ChangeLog
* Updated: snakeyaml - removed generated build files
* Updated: JRuby changed to binary distribution
[2013-03-05]
* 1. NPE in markUsed
* Changes: MarathonJava - Adding methods missed while merging.
* Changes: MComboBox - Stripping HTML tags before getting and setting text. MComponent, MTreeNode - Moved StripHTML and stripTags methods to MComponent from MTreeNode. TestMComponent, TestMTreeNode - Moved UT of stripHTML from TestMtreeNode to TestMComponent.
* 1. MarkUsed: sets the top-level window
* Changes: playback.py - Changed referring global variables. results.py - Creating AssertionLogManager instance.
* Fixed: Warnings - unused imports
[2013-03-04]
* Changes: SampleApp.java - Adding a rightclick-popup menu to SimpleWidgets panel. MTreeNode - Removing HTML tags from the text. TestMTreeNode - Added UT for stripHTMLTags method in MTreeNode. playback.rb - Removed merge error indicator. RubyScriptModel - Adding escape for #{} TestLinkXMLOutputter - Adding @ignore to test case.
* 1. Added method init() to initialise the object map and configuration.
* Fixed: isPopup fails in JDK7 when HeavyWeightWindow is used for popup menus.
[2013-03-02]
* Fixed: Removed file.exists check in OMapContainer#save
[2013-03-01]
* Fixed: no handleFailure in Marathon error
* 1. OMapContainer skips save only if file does not exists and there are no elements to save.
[2013-02-27]
* Synchronizing updateScript
[2013-02-22]
* 1. Ignore bracket matching while inserting script 2. Adding titles to containers 3. Added title as parameter to getTopLevelComponent
[2013-02-21]
* 1. Added createTopLevelComponent/insertNameForComponent when given name and url 2. SampleApp: using multi selection for file chooser
[2013-02-19]
* 1. Added a mechanism by which a container can be added without any elements into the script.
[2013-02-14]
* 1. Made updateScript a interface method for script recorder.
[2013-02-05]
* 1. Saving a container even when no elements exist - needed when removing elements from a container. 2. PrintStackTrace() added.
[2013-01-30]
* 1. Merge Error: missed methods getFrames and getFrameObjects added.
[2013-01-29]
* 1. Fixed: AppletLauncher no toplevel window set error. 2. playback.py: added mouse_up/mouse_down etc.
[2013-01-28]
* 1. defineVariable() uses ruby#defineVariable method.
* 1. Added radio button support for MarathonActions 2. ScriptConsole: Added spooling to spool.rb/spool.py 3. Added: Extra label space in status bar 4. ScriptConsole: Positioning the caret to the last line when a key is pressed 5. Split Marathon.java to Marathon.java and MarathonJava.java 6. setupDone moved to SetupState class from JavaRuntimeLauncher 7. Added MarathonAppType support (for Java and Web) 8. RubyScript: creating an interpreter only once per runtime. Else we get permgen errors when using a launcher that doesn't start a new runtime. 9. Added support for different default omap configuration files. 10. DelegatingNamingStrategy: specific to Java 11. Parameterized INamingStrategy to use Container and Components 12. ModelInfo is serializable 13. Added deleteFile() option to OMapContainer 14. Added getUsedRecognitionProperties() to OMapContainer 15. ObjectMap: Fixed issues regarding creating container files even while playing tests. 16. ObjectMap: isSaveNeeded() functionality moved to NamingStrategy 17. PropertyAccessor: allows overriding of invokeMethod 18. Retry: new constructor that accepts an ignorable exception class 19. Added EventQueuePropertyAccessor that calls invokeMethod on EventQueueRunner
* 1. Updated snakeyaml jar version 2. Fixed: failing test
[2013-01-27]
* Ruby recording uses unicode characters to record
* 1. Added ascii conversion to run the script functions from script console.
[2013-01-26]
* 1. Using JRuby(1.7.2) WriterOutputStream 2. Editor console - creating a charbuf to write to console. 3. SampleApp using accented-chars in a tab name 4. Fix: Using inputStreamReader to read characters instead of bytes from input stream.
[2013-01-25]
* Fixed: Deprecation warnings with snakeyaml
* Updated: snakeyaml to 1.11
* Added: mouse_up/mouse_down methods to playback
[2013-01-21]
* 1. Proper file name in error messages for Ruby
* Fixed: stacktrace using only files from project dir
* Changed version number
* 1. Added error() script method 2. TestException supports isAbortTestCase 3. Fixed: line/file display when a test case fails 4. Fixed: CNF/WNF etc. aborts the testcase
[2013-01-20]
* Updated ruby version
[2013-01-10]
* 1. ScriptConsole: added "/y" and "/ye" suffixed commands to yank and yank&execute the command. 2. ScriptConsole: Typing one of the alphabetic chars on a non-last line moves the caret to last line.
[2013-01-09]
* 1. Fixed: container naming properties are not accessed using getContainerClassName.
* 1. Added spool command (>) for script console. When used, this will append the line to spool file in project folder and also executes the line.
[2013-01-05]
* 1. Added methods to add/remove components and containers.
[2013-01-04]
* 1. Parameterized INamingStrategy
* 1. Refactored ObjectMap to make it independent of Java/Web
[2013-01-02]
* Release v3.2.9.1
[2012-12-31]
* 1. Using getContainerClassName to retrieve the class name used to find the recognition properties from omap service.
[2012-12-28]
* Features:
1. The object lookup strategy uses the record and playback log to display errors when conflicts in object map exists.
2. Marathon uses the logging.properties from the project folder.
3. A warning is displayed when a component uses indexOfType for object recognition.
4. During recording, errors are displayed in the control center window.
Fixed:
1. Comment for setup method of Fixtures.
2. There were times when the setup() runs parallel to the application. Now Application waits till the setup() returns.
3. Internal frame index logic uses the SHOW_COMPONENT event. This is more stable. Earlier versions were using the frame position.
4. Even when a window is not found, we were calling ComponentFinder#pop that displays a NPE instead of WindowNotFound.
5. Sometimes the AUT was not being aborted even after the script is executed.
6. Experimental: We try to identify when the EDT of AUT is blocked and try to stop the script.
[2012-12-22]
* Fixed: ILogger.MESSAGE changed to highest value to show messages always. Added: Prefs - utility to list and remove Java preferences.
[2012-12-21]
* 1. Fixed: ConcurrentModification error on logRecordList.
* 1. Added more fields to getDisplayPropertyList() method. 2. Fixed message when component is not found.
* Added: internalFrameIndex2 which gives the index of the internal frame depending on when it is shown.
* Features: 1. Filtering log messages. LogView is limited to 1000 records for performance sake and to avoid out-of-memory issues. 2. LogView scrolls to the end of the view when inserting log records.
Fixes:
1. JTabbedPane: returns null for accessibleName. Since the accessibleName is set to the currently selected tab, the name of the tabbed pane is set to the first selected tab.
2. WindowID creator throwing an exception in rare cases.
3. MComboBox#getStringRep creating a JList() in non-EDT thread.
4. Component Not Found exception with Marathon#frame method. Mostly because of missing FOCUS_GAINED event.
5. Most exception traces removed from console and added to the Log view.
[2012-12-13]
* Updated Version and ChangeLog
* Fixed: CNF in objectmap configuration when passing strings. Make use of current threads context class loader.
[2012-12-12]
* Fixes: 1. Implemented StdOutLogger 2. Removed printStackTrace when a Context menu can't be loaded.
* Updated ChangeLog and Version
* Fixed:
1. When a component is referred to by multiple field names, the
fieldName match checks with all the field names.
2. Removed (unneeded) exception trace when NS#Init fails.
Added:
1. Added support for Test Development Mode
2. Added new view for displaying log messages for recording and
playback.
[2012-12-05]
* 1. Updated ChangeLog.
* 1. Fixed: Backward compatibility when fixture properties doesn't contain naming strategy generating an NPE.
[2012-12-04]
* Changed version to 3.2.6
* Fixed: When a new project is created, and tests recorded the omap.yaml file is being initialized.
[2012-12-03]
* Release v3.2.5: Updated version and ChangeLog
* Features:
1. Added hover() to playback. Does not support recording.
Using hover:
a. hover(component)
c. hover(component, delayInMillis)
c. hover(component, delayInMillis, componentInfo)
2. The object lookup strategy is made selectable (used by MarathonITE)
Fixes:
1. NPE while copying files is handled. Useful in dev. environment.
2. Fixed quite a few exceptions
3. Fixed a bug where while stopping recording does not stop AUT
4. Fixed a bug where after completion of playing a test, AUT is not
stopped.
5. Exception reporting in UI is when AUT launch fails is fixed.
[2012-11-22]
* Updated ChangeLog
[2012-09-11]
* Fixed: not setting dir props while saving properties
* Fixed: saving properties converting path characters
[2012-09-10]
* Fixed: stream/file close warnings.
[2012-09-06]
* Added deploy-withoutests target
[2012-09-05]
* Fixed: AboutDialog is injected
* Basic WindowCloser.java is added
[2012-09-04]
* Change: Constructing MLabel, MTabbedPane, MTabbedPaneWithIcons in Test Case.
* mrj.version hack for Mac/OSX JDK1.7
[2012-08-31]
* Change: Adding null check for finder.
[2012-08-30]
* Change: Recording the toString of lastPathComponent.
* Change: Allowing directories to be hidden in Navigator.
[2012-08-28]
* Version changed to 3.2.4
[2012-08-27]
* Updated ChangeLog
* 1. Updated version to 3.2.3 2. Fixed: Saving only the components accessed for recording in the object map. 3. Fixed: general properties to include last resort properties (type and indexOfType). 4. Fixed: JTree recording - using renderer (JLabel only) for tree nodes. 5. Fixed: Using halt() instead of System.exit() to close the application
[2012-08-10]
* Fixed: duplicate entries for components (with different recognition properties are being created) Fixed: adding the focused window to window monitor list of opened windows when WindowMonitor is constructed.
[2012-07-31]
* Fixes: 1. Updated ChangeLog and Version Number. 2. Added indexOfType to MComponent OMapProperties 3. GetPrecedingLabel of MComponent. 4. Added accessors to MComponent 5. MComponent#getButton* return null if the component is not a AbstractButton. 6. Added code to stripLastColon() 7. Updated default omap configuration 8. Updated TestObjectMapConfiguration 9. Updated priority values for default configuration 10. Fixed a warning in JavaRuntimeProfile 11. Fixed priority values for default-omap-configuration.yaml 12. Fixed: getAccessibleName() of MTabbedPane returns null.
[2012-07-24]
* 1. Fixed: Removed propertywrapper and using corresponding MComponent for object map. 2. Fixed: a NPE when a omap file does not have any components recorded yet. 3. Fixed: Stack trace in ContextMenuWindow. 4. Fixed: Classpath in JavaRuntimeProfile for adding context menu classpath elements 5. Fixed: NPE in MTableHeaderItem creation. 6. Update: GridBagContraints returned as a Map from layoutdata
[2012-07-14]
* Fixed: improper quoting for VM Command
[2012-07-12]
* ChangeLog updated for v3.2
* JDK 1.5 compatibility
[2012-07-10]
* Fixed: window_closed() not being called when window.is_valid() == false. Makes jGnash testing to fail.
[2012-02-17]
* CLOSED - # 110: ^+Right Click throws ClassNotFoundException in SwingSet2
http://svn/mantis/view.php?id=110
[2012-02-16]
* CLOSED - # 65: Documentation error in marathonite in new test case. http://svn/mantis/view.php?id=65
* CLOSED - # 69: Search Window HKB for all fields http://svn/mantis/view.php?id=69
[2012-02-15]
* CLOSED - # 68: new module directory window settings http://svn/mantis/view.php?id=68
Fixed: Added a new class MarathonInputDialog modeled after
JOptionPane#showInputDialog and used it for newModuleDir and gotoLine.
* Fixed: lineSeparator issue with windows in the testcase.
* Fixed: FilePath on windows not returning isRelative properly.
[2012-02-14]
* RESOLVED - # 77: OSx - About Marathonite show version 1.0 http://svn/mantis/view.php?id=77
* RESOLVED - # 96: Insert script window name error on osx. http://svn/mantis/view.php?id=96 Change: Display.java - Getting the windowId before the script is being played.
[2012-02-13]
* RESOLVED - # 73: In Manage Checklist menu, HKB for "New.." ,"Edit.." http://svn/mantis/view.php?id=73
* RESOLVED - # 109: "Done" button in Manage Checklists dialog does not have a icon. http://svn/mantis/view.php?id=109
* RESOLVED - # 72: remove 'marathon editor shortcuts' menu option http://svn/mantis/view.php?id=72 Returning false for isEditorShortcutKeysAvailable Method in RSTAEditor.
[2012-02-09]
* RESOLVED - # 108: Credits button in the About dialog of Marathon does not have an icon. http://svn/mantis/view.php?id=108
* NEW - # 78: MarathoITE About dialogue should,t say OSS version http://svn/mantis/view.php?id=78
* Reverted - Changes for HKB in Search dialog. 69: Search Window HKB for all fields http://svn/mantis/view.php?id=69
* RESOLVED - # 107: Preferences dialog Icons. http://svn/mantis/view.php?id=107
* RESOLVED - # 69: Search Window HKB for all fields http://svn/mantis/view.php?id=69
* RESOLVED - # 105: TestSuites: Add a test suite folder when project is created http://svn/mantis/view.php?id=105
[2012-02-08]
* PARTIAL FIX - # 60: Problems on Ignore Components tab http://svn/mantis/view.php?id=60 Fixed multiple selection in ignore components.
* RESOLVED - # 64: marathonite main menu settings http://svn/mantis/view.php?id=64
* RESOLVED - # 76: Object Map Configuration settings http://svn/mantis/view.php?id=76
[2012-02-07]
* RESOLVED - # 70: Fixture filename can't have spaces http://svn/mantis/view.php?id=70
[2012-02-02]
* CLOSED - # 66: HKB for new module function window in marathonite http://svn/mantis/view.php?id=66Signed-off-by: Dakshinamurthy Karra <[email protected]>
* CLOSED - # 79: change tooltip for 'Paste' and 'Debug' http://svn/mantis/view.php?id=79Signed-off-by: Dakshinamurthy Karra <[email protected]>
* CLOSED - # 100: Size of the buttons in insert script window. http://svn/mantis/view.php?id=100Signed-off-by: Dakshinamurthy Karra <[email protected]>
[2012-01-30]
* NEW - # 54: Hot Key Bindings for application tab in Project settings http://svn/mantis/view.php?id=54Signed-off-by: Dakshinamurthy Karra <[email protected]>
* NEW - # 58: Changes in Add Folders on Language Tab of Project Settings. http://svn/mantis/view.php?id=58Signed-off-by: Dakshinamurthy Karra <[email protected]>
* NEW - # 57: Changes in Language Tab of Project Settings. http://svn/mantis/view.php?id=57Signed-off-by: Dakshinamurthy Karra <[email protected]>
* 1. Updated FSL so that the fileselection dialog can be given a proper title.
[2012-01-25]
* CLOSED - # 61: Bugs in Resolvers tab of project settings http://svn/mantis/view.php?id=61Signed-off-by: Dakshinamurthy Karra <[email protected]>
* CLOSED - # 59: Assertion Tab settings in Project Settings. http://svn/mantis/view.php?id=59Signed-off-by: Dakshinamurthy Karra <[email protected]>
* CLOSED - # 56: Changes in Properties tab of Project Settings. http://svn/mantis/view.php?id=56Signed-off-by: Dakshinamurthy Karra <[email protected]>
* CLOSED - # 53: Hot key bindings in Project Tab of Project Settings http://svn/mantis/view.php?id=53Signed-off-by: Dakshinamurthy Karra <[email protected]>
[2012-01-24]
* CLOSED - # 52: Marathon-Select Directory http://svn/mantis/view.php?id=52Signed-off-by: Dakshinamurthy Karra <[email protected]>
* CLOSED - # 50: Change in Help message http://svn/mantis/view.php?id=50Signed-off-by: Dakshinamurthy Karra <[email protected]>
* CLOSED - # 102: Slow save http://svn/mantis/view.php?id=102Signed-off-by: Dakshinamurthy Karra <[email protected]>
[2012-01-19]
* 1. Updated EscapeDialog to handle OK/Cancel button bindings and updated all other dialogs.
[2012-01-18]
* Added sourcelink to osxutil.jar
[2012-01-16]
* Updated: All buttons are created from UIUtils and provide consistent look and wordings.
[2012-01-13]
* CLOSED - # 20: Syntax errors in module files causes grief http://svn/mantis/view.php?id=20Signed-off-by: Dakshinamurthy Karra <[email protected]>
* Fixed: Warning (--debug) from JRuby
Signed-off-by: Dakshinamurthy Karra
* Fixed: Error message for syntax errors in module files.
Signed-off-by: Dakshinamurthy Karra
* CLOSED - # 20: Syntax errors in module files causes grief http://svn/mantis/view.php?id=20Signed-off-by: Dakshinamurthy Karra <[email protected]>
* CLOSED - # 48: Deadlock with window_closed call and event queue http://svn/mantis/view.php?id=48Signed-off-by: Dakshinamurthy Karra <[email protected]>
* Removed EDT checking code
* CLOSED - # 47: Fix EDT Violations http://svn/mantis/view.php?id=47Signed-off-by: Dakshinamurthy Karra <[email protected]>
[2012-01-12]
* 1. Removed DisplayEventQueueProvider and DisplayEventQueue - used for displaying exceptions from Marathon UI. No need for them.
* 1. MPFSelectionDialog being used in EDT 2. TestApplication update textarea done in EDT.
[2012-01-11]
* 1. Added swinghelper CheckThreadingViolationRepaintManager for checking EDT violations. 2. Updated DisplayWindow#setState to work both on EDT and non-EDT threads.
[2012-01-10]
* CLOSED - # 26: Description given while creating new fixture is not passed through escape mechanism. http://svn/mantis/view.php?id=26
[2012-01-09]
* Updated gitignore
* CLOSED - # 45: Commandline launcher: Provide relative pathname (to project directory) only when needed http://svn/mantis/view.php?id=45
* CLOSED - # 43: New Fixture Dialog: Add a Test option http://svn/mantis/view.php?id=43
[2012-01-07]
* Using ProcessBuilder and ArgumentProcessor to parse arguments
* 1. Added user.dir printing to SampleApp to check working dir setting. 2. Added a test to argument processor to check whether argument with spaces are enclosed in double quotes.
[2012-01-06]
* 1. Fixed: couple of warnings.
* 1. Fixed: toolkit menu mask saving into the fixture is removed.
* 1. Fixed: commandline processing simplified. 2. UTs: irregular failures (minor) 3. Navigator: Throwing an exception becuase refresh() being called from outside event thread. 4. Python/Ruby Scripts: Now throws errors early if there is something wrong with the Main class and unable to start app.
[2012-01-03]
* 1. Fixed UI issues. 2. Working on Launchers and associated issues.
[2011-12-29]
* Version changed to v3.1.5.2
* 1. Fixed: Marathon unable to find a component when the component appears with a delay.
[2011-12-27]
* 1. Removed Window#getWindows call from WindowMonitor. Not supported by Java 1.5.
[2011-12-26]
* Updated: Version to 3.2
[2011-12-22]
* Fixed: window#setExtendedState being invoked wrongly.
[2011-12-19]
* Added icon files missed in merge
* Initial commit from JDB branch
[2011-12-12]
* ChangeLog updated
* Version updated to 3.1.5
* 1. Updated TestCreator with suite functionality
* 1. Consistently made constructors/getRenderer/getEditor public 2. Added constructor to MTabbedPane to *not* install change listener.
* 1. Removed serialVersionUID warnings.
[2011-11-03]
* Fixed an exception thrown when exiting Marathon after record/play
* ChangeLog updated
* Version updated to 3.1.4
* 1. Using System#exit instead of Process#destroy() for exiting AUT.
[2011-09-24]
* Fixed UTs - default-omap-configuration.yaml.
* Updated ChangeLog
* 1. Version changed to 3.1.3
[2011-09-23]
* 1. Removed accessibleContext.accessibleName from default omap-configuration.yaml
* 1. Fixed more-than-one-component-matched error in OMapContainer.
[2011-09-22]
* 1. Added TabbedPaneTest
[2011-08-27]
* 1. Refactored getInjector in Main 2. MarathonTestCase injects runtimefactory and profileprovider.
[2011-08-26]
* Added set_no_fail_on_exit to playback.py
* Fixed: Waiting for window checks whether any window is already opened.
* 1. Fixed: Overriding user.dir 2. Added: getMode method to profile.
[2011-08-25]
* Updated: MarathonGuiceModule, RuntimeFactory and RuntimeProfile
1. loadRuntime is made protected to allow override in MarathonITE
2. Method name: getAUTClasspath -> getMarathonClasspath
3. RuntimeFactory: added protected launchVM to launch the application.
[2011-08-11]
* Updated: ChangeLog and version number
* Fixed: WindowStateAction and ObjectMapNamingStrategy#setLayoutData
Fixed: Devide by zero in ObjectMapNamingStrategy#setLayoutData
Fixed: Setting frame state to NORMAL before resizing.
[2011-07-18]
* Fixed: UT failure in ObjectMapConfiguration.java because of adding accessibleName.
* Updated: ChangeLog
* Updated: added accessibleContext.accessibleName to omap configuration. Changed version to 3.1.1
* Fixed: Backward compatibility added back getButtonText and getButtonIconFile methods.
* Fixed: MEditorPane#click is not clicking on the links in a HTML document
1. MEditorPane is overriding the wrong click. Fixed.
* Fixed: NPE in MTabbedPane
1. When a tab contains only an icon without a title an NPE is being raised in getText(). MTabbedPane is modified to
return a tab name using the icon or index in this case.
2. Getting the filename from image description in PropertyWrapper is made a static helper function
3. Added tests for TabbedPane with icons.
* Fixed: Possible NPE's from EventQueueRunner#invoke - second form.
[2011-07-12]
* Fixed: Checking for the return values of EventQueueRunner.invoke methods.
[2011-07-11]
* Fixed: FindBugs reported warnings in marathon.
[2011-07-06]
* Fixed: If the selection ends in the beginning of newline, then consider previous line end as selection end.
[2011-07-05]
* Change: Adding file extension while creating new module, if it is not specified.
[2011-07-04]
* Fixed: More than one component matched error for default OptionPane
1. Fixed getOMapClassName to use messageType and optionType properties for optionPane so that a CNF is not thrown.
[2011-06-30]
* Updated: ChangeLog
* Updated: Version changed to 3.1
* Fixed: Java 1.5 compatibility
1. Project settings in eclipse have been modified to use workspace default compiler compliance level.
2. Removed overrides in Python refactorer.
* Updated: iconfile works for all JComponents
1. The buttonIconFile property is changed to iconFile and is enabled for all components.
2. The buttonText property is changed to cText and is enabled for all components.
[2011-06-28]
* Fixed: UT failures in TestObjectMapConfiguration
1. Default configuration changes caused failures in UTs that have been fixed.
* Updated: Naming components with same properties
1. ObjectMapNamingStrategy now appends an index to the highest-priority-created-name instead of using
the last resort properties in case of duplicate names.
2. Default configuration is changed so that both recognition and naming properties are same except for
an addition of 'type' in recognition properties.
* Change: Loading default omap configuration. Created a default file instead of hardcoded properties.
[2011-06-27]
* Update: Added strict/loose mode for ObjectMapNamingStrategy
1. Added a flag to set the ObjectMapNamingStrategy resolve mode to strict/loose. In strict mode, an error
is thrown whenever a component is not found in the objectmap while playing even when the component exists
in the runtime naming cache.
[2011-06-23]
* Fixed: File separator char not being replaced by dot on windows in import module statements.
[2011-06-21]
* Fixed: Components in tabs getting recorded with same names.
* Change: Check for saving omap.
* Fixed: omapcontainer
1. OMapContainer is saving the contents even when it is not accessed and components are not loaded.
* Fixed: reverted earlier CNF fix and redid it in getContainer
* Fixed:
1. Setting up unit-tests target system property 'marathon.naming.strategy' so the UTs pass.
[2011-06-20]
* Fixed:
1. Components that do not exist in object map throws CNF exception while playing the scripts.
[2011-06-18]
* Fixed:
1. Added MarathonMode (Recording, Other). Skip saving ObjectMap if it is not in recording mode.
* Fixed Bugs:
1. A toggle button will be recorded always. This is required for recording state when the toggle buttons are used
as toolbar buttons as in SwingSet2 sample.
* Fixed Bug:
1. SwingSet2 example: keystroke SHIFT+F10 opens a popup menu, but it disappears before the menu item is selected while
playing. This happens only on Windows. The reason being that the release event posted (on the old component) is causing
the focus to change (guess). Fixed it by checking that the component focus did not change before posting the release
event.
[2011-06-17]
* Fixed UTs for changed in Navigator interface
* Fixed Bugs:
1. NPE in DisplayWindow when MarathonITE commands are invoked without an active editor.
2. SaveAll to display the file name (Untitled, Untitled1 ...) while saving individual files.
3. Allowing breakpoints in Fixtures.
4. NPE in resultpane when show message is clicked with an empty selection.
* Fixed Bugs.
1. CheckListDialog: Label when adding Header/Checklist/Textbox
2. Navigator: Error message when deleting root directory
3. PropertyWrapper: Removed sop
4. PropertyWrapper: Fixed NPE in findLabel()
5. ObjectMapNamingStrategy: When a label returns null for getText() the "null" string is used in names.
6. DisplayWindow: rawRecord button selected state icon is added.
[2011-06-10]
* Bringing back python support.
1. Added: use_data_file method to playback.py.
2. PythonScript.java - Implemented setDataVariables to set values from CSV as global variables.
3. Added: ModuleList to fetch and hold details about Modules in all Module Directories. Made corresponding changes to PythonScript.
4. Implemented: Getting the window name for a module function.
5. Fix: Adding module comment while creating a new module.
6. Added: Inserting module script while recording.
7. Removed: Modules directory from path and added project directory.
8. Added: Evaluation of modules so that they are available for Python while inserting.
9. Updating __init__.py in module directories.
10. Getting the window name of a function when it has the method description comments before if window() call.
11. Fixed: Escape sequences.
12. Added: with_data function to playback.py.
13. Added: Adding comments for fixture when a new fixture is created.
14. Fixed: Encoding the strings by replacing newline and other characters.
15. Extracted encode methods from Argument to respective ScriptModels.
16. Adding Marathon moniker to newly created module files.
[2011-06-04]
* Changed: getRecordedVersionTag to give back script instead of only the version number.
[2011-06-02]
* Fix: Giving proper error message when module name contains a symbol when creating a new module.
[2011-05-23]
* Fixed: Removing module directory from project file when directory deleted.
* Fixed: NPE when right clicked in Navigator when nothing is selected.
* Added: File type enum to ScriptModel and fileUpdated method.
[2011-05-17]
* Added: File type enum to ScriptModel and fileUpdated method.
* Added: fileUpdated method to IScriptModelClientPart interfaces and implemented it in corresponding classes.
[2011-05-10]