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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
|
2020-06-29 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/GNUmakefile: Specify dependent libraries
while linking regardless of the target OS.
2018-03-20 Graham Lee <graham@iamleeg.com>
* Documentation/HowTo.txt: Document methods that still exist.
* Frameworks/StepTalk/STEngine.m (engineForLanguageWithName:):
* Languages/Smalltalk/SmalltalkEngine.m (multiple methods):
Correct spelling of 'deprecated' in log messages.
2018-02-18 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STObjCRuntime.m (selector_types): Fix for
generation of selector types on 64-bit architectures.
2017-12-27 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STEnvironmentDescription.m
(defaultDescriptionName): Remove redundant method call.
* Frameworks/StepTalk/STBundleInfo.m (allFrameworkNames,
pathForFrameworkWithName:):
* Tools/STExecutor.m (executeScript:withArguments:): Use NULL
instead of NO where a pointer argument is expected.
* Frameworks/StepTalk/STConversation.m (knownLanguages,
interpretScript:):
* Frameworks/StepTalk/STRemoteConversation.m (interpretScript:):
* Frameworks/StepTalk/STUndefinedObject.m (release):
Fix inconsistent distributed object modifiers reported by clang.
2015-10-23 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STObjCRuntime.m (selector_types): Fix broken
array initialization, which meant that incorrect method signatures
were generated for methods with more than four arguments.
2014-11-02 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STRemoteConversation.m
(-initWithEnvironmentName:host:language:, -open,
-setLanguage:, -language): Correctly initialize the scripting
language used in a remote conversation.
2014-11-02 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STRemoteConversation.m (-open): Force use of
a socket port name server to look up servers on other hosts.
2014-11-02 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STRemoteConversation.m (-connectionDidDie:):
Fix leak of the proxy and environmentProcess attributes when a
connection died.
2014-11-01 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/NSObject+additions.h (-notEqual:, -notSame:):
* Frameworks/StepTalk/NSObject+additions.m (-notEqual:, -notSame:):
Add method implementations for the symbolic selectors ~= and ~~,
which are defined in the SymbolicSelectors.stenv environment.
2014-11-01 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STClassInfo.m (-dealloc): Release superclass
and superclassName attributes.
* Frameworks/StepTalk/STEnvironment.m (-initWithDescription:):
Remove duplicated RETAIN statement.
2013-05-27 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/NSInvocation+additions.m
(STGetValueOfTypeFromObject): Fix marshaling for arguments with
type (char*).
* Frameworks/StepTalk/NSInvocation+additions.m
(STObjectFromValueOfType, STGetValueOfTypeFromObject): Skip const
qualifiers in types.
2013-05-26 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STActor.m (-instanceVariables): Fix typo in
method name.
* Frameworks/StepTalk/STActor.m (-addInstanceVariable:):
* Frameworks/StepTalk/STActor.m (-removeInstanceVariable:):
New methods to add and remove instance variables.
* Frameworks/StepTalk/STActor.h (-instanceVariableNames):
* Frameworks/StepTalk/STActor.h (-setInstanceVariables:):
* Frameworks/StepTalk/STActor.h (-instanceVariables):
* Frameworks/StepTalk/STActor.h (-addInstanceVariable:):
* Frameworks/StepTalk/STActor.h (-removeInstanceVariable:):
Add methods to the public API.
2013-05-26 Wolfgang Lux <wolfgang.lux@gmail.com>
* Tools/STExecutor.h:
* Examples/Shell/STShell+output.m:
* Examples/Shell/stshell_tool.m:
int->NSInteger transition
2013-05-26 Wolfgang Lux <wolfgang.lux@gmail.com>
* Modules/AppKit/AppKitConstants.list:
* Modules/AppKit/AppKitConstants.m:
* Modules/AppKit/AppKitEvents.list:
* Modules/AppKit/AppKitEvents.m:
* Modules/AppKit/AppKitExceptions.m:
* Modules/AppKit/AppKitNotifications.m:
* Modules/AppKit/header.m:
* Modules/Foundation/FoundationConstants.list:
* Modules/Foundation/FoundationConstants.m:
* Modules/Foundation/header.m:
* Modules/GDL2/header.m:
* Modules/SQLClient/SQLClientConstants.m:
* Modules/SQLClient/header.m:
* Modules/WebServices/WebServicesConstants.m:
* Modules/WebServices/header.m:
int->NSInteger transition
2013-05-26 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/NSInvocation+additions.h:
* Frameworks/StepTalk/NSInvocation+additions.m:
* Frameworks/StepTalk/NSNumber+additions.h:
* Frameworks/StepTalk/NSNumber+additions.m:
* Frameworks/StepTalk/STActor.m:
* Frameworks/StepTalk/STEnvironmentDescription.h:
* Frameworks/StepTalk/STEnvironmentDescription.m:
* Frameworks/StepTalk/STLanguageManager.m:
* Frameworks/StepTalk/STObjCRuntime.m:
* Frameworks/StepTalk/STScriptObject.m:
* Frameworks/StepTalk/STStructure.h:
* Frameworks/StepTalk/STStructure.m:
int->NSInteger transition
2013-04-06 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STActor.m (-setValue:forKey:): Fix bug where
instance variables of an actor got lost when set to nil.
2013-04-04 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/NSObject+additions.h (-yourself):
* Frameworks/StepTalk/NSObject+additions.m (-yourself): Add
standard Smalltalk method, which is convenient in cascades.
2013-03-23 Wolfgang Lux <wolfgang.lux@gmail.com>
* Tools/STEnvironmentProcess.m (-initWithDescriptionName:):
Check the result of the super class initializer and assign it to
self.
2013-03-23 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STActor.m (-init, -initWithEnvironment:,
-initWithCoder:):
* Frameworks/StepTalk/STBehaviourInfo.m (-initWithName:):
* Frameworks/StepTalk/STClassInfo.m (-initWithName:):
* Frameworks/StepTalk/STContext.m (-init):
* Frameworks/StepTalk/STConversation.m (-initWithContext:language:):
* Frameworks/StepTalk/STDistantConversation.m
(-initWithEnvironment:language:):
* Frameworks/StepTalk/STDistantEnvironment.m (-initWithName:host:):
* Frameworks/StepTalk/STEnvironment.m (-initWithDescription:):
* Frameworks/StepTalk/STFileScript.m (-initWithFile:):
* Frameworks/StepTalk/STLanguageManager.m (-init):
* Frameworks/StepTalk/STObjectReference.m (-initWithIdentifier:target:):
* Frameworks/StepTalk/STRemoteConversation.m
(-initWithEnvironmentName:host:language:):
* Frameworks/StepTalk/STScript.m (-initWithSource:language:):
* Frameworks/StepTalk/STScriptObject.m (-init, -initWithCoder:):
* Frameworks/StepTalk/STScriptsManager.m (-initWithDomainName:):
* Frameworks/StepTalk/STSelector.m (-initWithName:,
-initWithSelector:, -initWithCoder:):
* Frameworks/StepTalk/STStructure.m (-initWithValue:type:):
Check the result of the super class initializer and assign it to
self.
2013-02-08 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/Environments/StepTalk.stenv:
Define standard Smalltalk methods for invoking blocks with arguments.
2012-11-03 Wolfgang Lux <wolfgang.lux@gmail.com>
* Examples/Developer/StepUnit.st: Fix typo in method name and stop
using deprecated methods.
2012-11-03 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STConversation.h
(-conversationWithContext:language:):
* Frameworks/StepTalk/STConversation.m
(-conversationWithContext:language:):
Implement method which is advertised as replacement for the
deprecated method -conversationWithEnvironment:language:.
* Frameworks/StepTalk/STConversation.m (-runScriptFromString:,
-conversationWithEnvironment:language:, -initWithEnvironment:language:,
-environment):
* Frameworks/StepTalk/STEnvironmentDescription.m
(defaultEnvironmentDescriptionName):
Fix typos and spacing in warning messages.
2012-10-26 Wolfgang Lux <wolfgang.lux@gmail.com>
* Modules/GNUmakefile:
* Modules/WebServices/Functions.h:
* Modules/WebServices/Functions.m:
* Modules/WebServices/GNUmakefile:
* Modules/WebServices/STWebServicesModule.h:
* Modules/WebServices/STWebServicesModule.m:
* Modules/WebServices/ScriptingInfo.plist:
* Modules/WebServices/WebServicesConstants.list:
* Modules/WebServices/WebServicesConstants.m:
* Modules/WebServices/create_constants.awk:
* Modules/WebServices/footer.m:
* Modules/WebServices/header.m:
Add WebServices bundle. Must be requested explicitly by adding
webservices=yes to the make command line.
2012-10-26 Wolfgang Lux <wolfgang.lux@gmail.com>
* Modules/GNUmakefile:
* Modules/SQLClient/Functions.h:
* Modules/SQLClient/Functions.m:
* Modules/SQLClient/GNUmakefile:
* Modules/SQLClient/SQLClient+additions.m:
* Modules/SQLClient/SQLClientConstants.list:
* Modules/SQLClient/SQLClientConstants.m:
* Modules/SQLClient/STSQLClientModule.h:
* Modules/SQLClient/STSQLClientModule.m:
* Modules/SQLClient/ScriptingInfo.plist:
* Modules/SQLClient/create_constants.awk:
* Modules/SQLClient/footer.m:
* Modules/SQLClient/header.m:
Add SQLClient bundle. Must be requested explicitly by adding
sqlclient=yes to the make command line.
2012-10-26 Wolfgang Lux <wolfgang.lux@gmail.com>
* Modules/AppKit/GNUmakefile:
* Modules/Foundation/GNUmakefile:
* Modules/GDL2/GNUmakefile:
* Modules/ObjectiveC/GNUmakefile:
* Modules/SimpleTranscript/GNUmakefile:
Fix Makefile variables (bundle.make uses BUNDLE_LIBS, not
ADDITIONAL_BUNDLE_LIBS).
2012-02-07 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STBundleInfo.m (-_bundleDidLoad:): Add
missing argument in NSLog call detected by clang.
2012-02-07 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STEnvironment.m (-registerObjectFinderNamed:):
* Frameworks/StepTalk/STEnvironmentDescription.m
(-updateFromDictionary:, -updateBehavioursFromDictionary:,
-updateClassWithName:description:):
* Frameworks/StepTalk/STFileScript.m (-source):
* Frameworks/StepTalk/STObjCRuntime.m (STAllObjectiveCSelectors):
* Tools/STExecutor.m (-executeScript:withArguments:):
* Tools/stalk.m (-createConversation, main):
* Tools/stenvironment.m (main): Fix potential space leaks detected
by clang.
* Frameworks/StepTalk/STBundleInfo.m (+stepTalkBundleNames): Fix
double release detected by clang.
2012-01-15 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STStructure.h:
* Frameworks/StepTalk/STStructure.m (+structureWithOrigin:size:,
extent:, corner:): New methods to construct rectangles from points
and sizes.
* TODO: Update.
2012-01-15 Wolfgang Lux <wolfgang.lux@gmail.com>
* Modules/AppKit/AppKitConstants.list: Remove obsolete NSDataLink
constants.
* Modules/AppKit/AppKitConstants.m: Regenerated.
2012-01-15 Wolfgang Lux <wolfgang.lux@gmail.com>
* Documentation/ApplicationScripting.txt: Fix errors.
2012-01-15 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STEngine.h (-methodFromSource:...):
* Frameworks/StepTalk/STEngine.m (-methodFromSource:...):
STMethod is a protocol not a class.
2012-01-15 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STObjCRuntime.m (STSelectorTypes,
STSelectorFromString, STCreateTypedSelector,
STConstructMethodSignatureForSelector): Add special case to
register selectors of (Smalltalk) binary operators with one
argument instead of zero.
2012-01-15 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STObjCRuntime.m (STSelectorFromString):
Always register typed selectors, since forwarding to untyped
selectors stopped working a while back in GNUstep.
2012-01-15 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/NSInvocation+additions.m:
* Frameworks/StepTalk/STStructure.m:
* Modules/ObjectiveC/NSObject+additions.m:
* Modules/ObjectiveC/ObjectiveCRuntime.m:
Clean up imports removing includes of Objective-C runtime headers.
Also replace a few more deprecated Objective-C runtime calls.
2011-04-07 Wolfgang Lux <wolfgang.lux@gmail.com>
* Modules/ObjectiveC/ObjectiveCRuntime.m (-allClasses):
* Modules/ObjectiveC/NSObject+additions.m (methods_for_class,
ivars_for_class, +methodNames): Update to Objective-C 2 API.
2011-04-06 Richard Frith-Macdonald <rfm@gnu.org>
* Frameworks/StepTalk/STObjCRuntime.m: replace runtime specific typed
selector code with the standard gnustep functions.
2011-04-06 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STLanguageManager.m (-dealloc): Fix
typo. (Was calling -dealloc on self instead of super).
2011-04-06 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STObjCRuntime.m (STAllObjectiveCClasses,
STCreateTypedSelector, STConstructMethodSignatureForSelector,
selectors_from_list, STAllObjectiveCSelectors): Update to
Objective-C 2 API.
2011-01-20 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/Environments/StepTalk.stenv: Add missing
semicolon at end of plist dictionary.
2011-01-20 Wolfgang Lux <wolfgang.lux@gmail.com>
* Frameworks/StepTalk/STUndefinedObject.m (-forwardInvocation:):
Clear result buffer to prevent crashes under GNUstep when the
invoked method's result type is an object type.
2011-01-20 Wolfgang Lux <wolfgang.lux@gmail.com>
* Modules/AppKit/GNUmakefile: Add header.m and footer.m to
dependencies of %.list -> %.m rule.
* Modules/AppKit/header.m (STGet@@NAME@@): Use local variable to
get rid of compiler warning.
* Modules/AppKit/AppKitNotifications.list: Update AppKit
notification list to match recent change in gui.
* Modules/AppKit/AppKitConstants.m:
* Modules/AppKit/AppKitEvents.m:
* Modules/AppKit/AppKitNotifications.m:
Regenerated.
2008 Okt 28 Samuel Harvey
* Modules/GDL2/GNUmakefile: Use ADDITIONAL_NATIVE_LIBS instead of
GDL2_BUNDLE_LIBS to link GDL2 packages.
2007 Feb 14 Nicola Pero
* All GNUmakefiles in the project: Use GNUSTEP_LIBRARY
instead of GNUSTEP_INSTALLATION_DIR/Library.
2005 Sep 5 Stefan Urbanek
* Version 0.10.0
2005 Sep 5 Stefan Urbanek
* Frameworks/StepTalk: compiler warnings removed
2005 Aug 30 Stefan Urbanek
* STLanguageManager: new class
* STLanguage: removed
* STEngine: engineForLanguageWithName: and engineForFileType: removed, use
STLanguageManager instead, added engineForLanguage:
* Tools/stexec - updated to use STLanguageManager
* Tools/stupdate_languages - removed as it was replaced by STLanguageManager
* Examples/Server - removed as it was replaced by stenvironment and distant
scripting
Notes:
- you can delete */Library/StepTalk/Configuration directories
2005 Aug 17 Stefan Urbanek
* STConversation: renamed run* method to interpret*, interpretScript: does
not return value anymore (because of distant conversations), new methods
result and resultByCopy were added
* STEnvironment: removed depreciated methods
* STDistantConversation: new class for conversations with distant objects
* Tools/stenvironment: new tool for semi-persistent scripting environments
* Tools/stexec: added reading from stdin; reflect library changes
* Tools/stalk: removed
* STEngine: renamed methods (see STEngine.h for more information)
2005 June 30
Version 0.9.1
2005 June 30
* STActor: new class
* Examples/Smalltalk/actor - new actor example
2005 June 19
Version 0.9.0
2005 June 19 Stefan Urbanek
* STEnvironment: search class name namespace when no object is found for
given name and full scripting is enabled.
2005 Jan 4 Stefan Urbanek
* First step of introducing contexts
NOTE: This version is unstable.
2004 Nov 9 Stefan Urbanek
* Remove STMethodSignatureForSelector as it was deprecated because of
inportability to OSX.
2004 Sep 23 Stefan Urbanek
* STContext: new class
* STEnvironment: make it subclass of STContext, move several methods
2004 Sep 6 Stefan Urbanek
* stshell: fix for compiler
* added missing STEnvironmentDescription installation
2004 Aug 2 Stefan Urbanek
* Search for scripts in */Library/Scripts/*
* stexec: use scripts manager to look for scripts in default locations. For
this tool it is .../Library/Scripts/Shell or .../Library/StepTalk/Scripts/Shell
2004 Jul 26 Stefan Urbanek
* Added NSString containsString: to Foundation module.
2004 Jun 27 Stefan Urbanek
* Added examples:
- Developer/StepUnit.st from Mateu Batle
- awlaunch.sh from Frederico Munoz
* Version 0.8.1
2004 Apr 25 Stefan Urbanek
* Changed license to LGPL
2004 Apr 19 Stefan Urbanek
* applied patch from Mateu Batle to replace nil valuse with STNil on
message sending
* fixed STConversation issue
2004 Mar 28 Stefan Urbanek
Changes according to the Helge Hess:
* STBundleInfo: fix to use string instead of constant (OSX compatibility)
* STFileScript, STLanguage, STScript: added missing #imports
2003 Nov 24 Stefan Urbanek <stefanu@altair.dcs.elf.stuba.sk>
* Version 0.8.1
2003 Nov 24 Stefan Urbanek <stefanu@altair.dcs.elf.stuba.sk>
* Few fixes, removed some compiler warnings. Fixed Shell to use
proper environment.
2003 Nov 8 Stefan Urbanek <stefanu@altair.dcs.elf.stuba.sk>
* Updated tools to use STConversation object.
2003 Oct 23 Stefan Urbanek <stefanu@altair.dcs.elf.stuba.sk>
* Added STEnvironment +sharedEnvironment, +defaultScriptingEnvironment and
initWithDefaultDescription. Deprecated initDefault,
environmentWithDescriptionName, environmentWithDescriptionName
* Added STConversation class
2003 Oct 6 Stefan Urbanek <urbanek@host.sk>
* Added STFileScript - moved all unnecessary stuff from STScript there.
* Fixed STScriptsManager to use STFileScript
2003 Oct 3 Stefan Urbanek <urbanek@host.sk>
* Added ReadlineTranscript module (Idea by Alexander Diemand + patch from
David Ayers)
* Added shell.st example.
2003 Sep 24 Stefan Urbanek <urbanek@host.sk>
* STEnvironmentDescription: guard initialisation in Autorelease pool
2003 Sep 23 Stefan Urbanek <urbanek@host.sk>
* STEngine: setValueForOption: added
2003 Aug 13 Stefan Urbanek <urbanek@host.sk>
* Version 0.8.0
2003 Aug 9 Stefan Urbanek <urbanek@host.sk>
* Removed compiler warnings in StepTalk.framework, Smalltalk and Tools
2003 Aug 6 Stefan Urbanek <urbanek@host.sk>
* Frameworks: new directory
* Changed StepTalk from library to framework
* Modules: Removed StepTalk module as it is no more needed, because
we have framework and it can provide scripting capabilities by it self
* All GNUMakefiles modified to reflect change to Framework
* Added Framework loading in .stenv description files.
Use: Frameworks = (name1, name2);
NOTE: You HAVE to remove your previous installation of StepTalk to be
able to install new one. (especially Local/Library/Headers/StepTalk).
2003 Aug 5 Stefan Urbanek <urbanek@host.sk>
* Added STScriptObject and STMethod.
2003 Jun 15
* NSInvocation+additions: added unknown selector creation; created a
workaround for gnustep DO bug
* STObjCRuntime: Fixed creation of signature.
2003 May 11 Stefan Urbanek <urbanek@host.sk>
* Fixed linking of some bundles
2003 May 10 Stefan Urbanek <urbanek@host.sk>
* Fixed linking under mingw32
* STBundleInfo: implemented framework searching
* STEnvironment: includeFramework: new method.
2003 May 2 Stefan Urbanek <urbanek@host.sk>
* STBundleInfo: added objectReferenceDictionary; removed unnecessary ST
prefix from ScriptingInfo.plist keys and added warnings for the change.;
check for existence of ScriptingInfo.plist before using it
* Modules: reflect changes to STBundleInfo
* Updated all GNUmakefiles to use new path
* STEnvironment: added initDefault - this will replace confusing
defaultScriptingEnvironment.
* Added Applications
* Added ScriptPapers application
2003 Apr 22 Stefan Urbanek <urbanek@host.sk>
* Added library reference documentation generated by autogsdoc.
* Added TroubleShooting.txt document
2003 Apr 21 Stefan Urbanek <urbanek@host.sk>
* Version 0.7.1
2003 Apr 04 David Ayers <d.ayers@inode.at>
* STEngine.h: Fixed declaration to match implementation to avoid
compiler warnings.
* STEnvironment.h: Ditto.
* STScriptsManager.h: Ditto.
* STLanguage.h: Corrected declaration.
* STScriptsManager.m: Added needed interface declaration.
* GNUmakefile: Added flags to show all warnings except for import.
* Module/ObjectiveC/GNUmakefile: Added flags to show all warnings
except for import.
* Module/Foundation/GNUmakefile: Added flags to show all warnings
except for import.
* Module/AppKit/AppKitExceptions.m: Used variable to supress compiler
warnings.
* Module/AppKit/AppKitNotifications.m: Ditto.
* Module/AppKit/GNUmakefile: Added flags to show all warnings except
for import.
* Module/GDL2/GDL2Constants.m: Used variable to supress compiler
warnings.
* Module/GDL2/GNUmakefile: Added flags to show all warnings except
for import.
* Module/SimpleTranscripts/GNUmakefile: Added flags to show all warnings
except for import.
* Module/StepTalk/GNUmakefile: Added flags to show all warnings
except for import.
* Tools/stalk.m: Added needed interface declaration.
* Tools/stupdate_languages.m: Corrected variable declaration and added
cast.
2003 Apr 3 Stefan Urbanek <urbanek@host.sk>
* STScript: added compareByLocalizedName:
2003 Mar 30 Stefan Urbanek <urbanek@host.sk>
* WISH: new file
2003 Mar 25 Stefan Urbanek <urbanek@host.sk>
* STScriptsManager: new method setScriptSearchPathsToDefaults; new method
setScriptSearchPaths:; added instance variable scriptSearchPaths
2003 Mar 24 Stefan Urbanek <urbanek@host.sk>
* Documentation: Updated ApplicationScripting.txt
2003 Mar 23 Stefan Urbanek <urbanek@host.sk>
* Added ApplicationScripting
* GNUMakefile: add ApplicationScripting. Can be ignored when appkit=no
* Languages/Guile: Fixed steptalk interface changes (patch from Matt Rice
<matt@vespertine.pc.ashlandfiber.net>)
2003 Mar 22 Stefan Urbanek <urbanek@host.sk>
* STEnvironment: includeBundle returns NO on failure
* STScriptsManager: added method allScripts that returns all scripts for
domainand; added private method _scriptsAtPath:
* STScript: do not delete original extension when looking for script info
file, so some.st will have some.st.stinfo; renamed localizedScriptName to
localizedName
* STLanguage: new methods: updateFileTypeDictionary and allKnownFileTypes
2003 Feb 21 Stefan Urbanek <urbanek@host.sk>
* StepTalk.h: Removed #import of STModule.h as it is no longer there
2003 Feb 11 Stefan Urbanek <urbanek@host.sk>
* Source/GNUmakefile: fixed installation of documentation
2003 Feb 4 Stefan Urbanek <urbanek@host.sk>
* STBundleInfo: warn instead of raise an exception if there is no scripting
info class.
2003 Feb 3 Stefan Urbanek <urbanek@host.sk>
* Version 0.7.0
2003 Jan 30 Stefan Urbanek <urbanek@host.sk>
* STBundleInfo: Removed compiler warning
* Modules/*: Cleanup for compiler warnings
2003 Jan 29 Stefan Urbanek <urbanek@host.sk>
* Modules/ObjectiveC: fixed GNUmakefile to include source headers
2003 Jan 25 Stefan Urbanek <urbanek@host.sk>
* STBundleInfo: Fixed NSBundle stepTalkBundleNames to use .bundle file
extension
* Modules/*/GNUmakefile: Removed now unnecesary -lStepTalk, because modules
do not have to be linked with StepTalk anymore
2003 Jan 25 Stefan Urbanek <urbanek@host.sk>
* Version 0.7.0pre1
2003 Jan 24 Stefan Urbanek <urbanek@host.sk>
* STBundleInfo: Use info from ScriptingInfo.plist instead of bundle's main
info dictionary
* Modules/*: Create ScriptingInfo.plist
* Modules/GNUmakefile: Compile GDL2 module if it is available.
2003 Jan 22 Stefan Urbanek <urbanek@host.sk>
* STEnvironment: added includeBundle: method
2003 Jan 22 Stefan Urbanek <urbanek@host.sk>
* STModule: removed
* STBundleInfo: added new class STBundleInfo and additional methods to
NSBundle
* STEnvironment: reflect change from STModule to NSBundle/STBundleInfo;
* Modules/*: reflect change from STModule to NSBundle/STBundleInfo
IMPORTANT NOTE: You have to rebuild all modules, because the format has
changed.
2003 Jan 22 Stefan Urbanek <urbanek@host.sk>
* NSNumber+additions: Added -modulo: method.
* Foundation bundle: added NSFileManager extensions; added missing constants
* Documentation/Additions.txt: new file
2003 Jan 20 Stefan Urbanek <urbanek@host.sk>
* GNUMakefile: Removed inclusion of source-distribution.make, as it is
not needed (suggested by Nicola Pero <nicola@brainstorm.co.uk>)
* Examples/Developer: new directory containing developer examples
2003 Jan 15 Stefan Urbanek <urbanek@host.sk>
* GDL2: added installation of GDL2.stenv
* Documentation/Tools.txt: new file documenting steptalk tools
2002 Dec 25 Stefan Urbanek <urbanek@host.sk>
* Version 0.6.2
2002 Dec 21 Stefan Urbanek <urbanek@host.sk>
* Languages/GNUmakefile, Modules/GNUmakefile, Finders/GNUmakefile: removed
forced installation to the GNUSTEP_USER_ROOT. ~/Library/StepTalk/* should
be deleted.
* Documentation/Modules.txt: added
2002 Nov 29 Stefan Urbanek <urbanek@host.sk>
* Added GDL2 module
* STModule: more details on module loading fault
2002 Nov 11 Stefan Urbanek <urbanek@host.sk>
* ObjectiveC module: added selectorsContainingString: and
implementorsOfSelector:
2002 Nov 5 Stefan Urbanek <urbanek@host.sk>
* Added MyLanguage as empty example language bundle
2002 Sep 17 Stefan Urbanek <urbanek@host.sk>
* Patch from Jeff Teunissen <deek@d2dc.net> with various bug-fixes
* Added .cvsignore files
2002 Sep 15 Stefan Urbanek <urbanek@host.sk>
* Version 0.6.1
2002 Sep 15 Stefan Urbanek <urbanek@host.sk>
* Modules/AppKit/AppKitConstants.list: commented out undefined constants
2002 Sep 7 Stefan Urbanek <urbanek@host.sk>
* Modules/AppKit/AppKitInfo.plist: added NSSound class
2002 Aug 27 Stefan Urbanek <urbanek@host.sk>
* Source/*.m: Cleanup to remove compiler warnings.
2002 Jun 18 Stefan Urbanek <urbanek@host.sk>
* STScript: new class (from AppTalk)
* STScriptsManager: new class (from AppTalk)
* Modules/StepTalk: new module
2002 Jun 14 Stefan Urbanek <urbanek@host.sk>
* Modules/ObjectiveC: new module
2002 Jun 10 Stefan Urbanek <urbanek@host.sk>
* NSObject+additions: removed -className as it was added to the base library
2002 Jun 9 Stefan Urbanek <urbanek@host.sk>
* Version 0.6.0 released
2002 Jun 8 Stefan Urbanek <urbanek@host.sk>
* STEnvironmentDescription: added module amd finder list; little code
cleanup; removed descriptionFromFile: and initFromFile: methods
* STEnvironment: removed methods
environmentWithDescriptionFromFile:
environmentWithDescriptionFromDictionary:
initWithDescriptionFromFile:
init
addAllClasses
addObject:withName:
allObjectNames
new methods:
environmentWithDescription:
initWithDescription:
renamed methods:
defaultObjectPool to objectDictionary
registerObjectFinderWithName: to registerObjectFinderNamed:
load modules and finders from description at initialization;
* STExecutor: reflect STEnvironment changes
* stexec: removed loading of the Foundation module as this is handled
by the STEnvironment
* Environments: new descriptions AppKit.stenv and Distributed.stenv
2002 Jun 7 Stefan Urbanek <urbanek@host.sk>
* STEnvironmentDescription: added abstract class 'All' that is root
class for all classes
* Foundation-operators.stenv: add symbolic selector '->' to all classes
2002 Jun 6 Stefan Urbanek <urbanek@host.sk>
* Added symbolic selector '->' for valueForKeyPath:
* StepTalk.stenv: allow whileTrue: and whileFalse: in STBlock
* NSObject+additions: moved from Smalltalk; added -isSame: method
* DistributedFinder: prevent NSDictionary log when there is no file for
a requested object; changed NSLogs to NSDebugLLogs with 'STFinder'; do not
try to launch nil tool
2002 Jun 4 Stefan Urbanek <urbanek@host.sk>
* STEnvironment: new methods -addObjectFinder:name:,
-addObjectFinderWithName:, -removeObjectFinderWithName:;
new method knownObjectNames;
objectReferenceForObjectWithName: changed to use nil reference on
known object that cannot be currently found
* Finders: new directory containing object finders
* STObjCRuntime: include selectors of metaclasses in
STAllObjectiveCSelectors()
* Documentation/HowTo.txt: rewritten
2002 Jun 3 Stefan Urbanek <urbanek@host.sk>
* STFunctions: renamed "StepTalk/Config" directory to
"StepTalk/Configuration"; fixed bug in STFindAllResources (resourceDir
was ignored)
* STEnvironment: changed method allObjectsDictionary to allObjectNames
2002 May 30 Stefan Urbanek <urbanek@host.sk>
* STEnvironment: removed pools
* STObjectReference: removed method initWithObjectName:pool:create:
2002 May 29 Stefan Urbanek <urbanek@host.sk>
* STExecutor: fixed typo
* STEnvironment: new method -allObjectsDictionary that returns a NSDictionary
with all named objects
* STObjCRuntime: new function STAllObjectiveCSelectors
2002 May 24 Stefan Urbanek <urbanek@host.sk>
* STEngine: engineForLanguage: renamed to engineForLanguageWithName:.
Some method documentation added.
* STExecutor: reflect method renaming
* STLanguage: read default language name from actual user defaults (not
from the StepTalk domain) and renamed the key to STDefaultLanguageName.
Renamed languageWithBundle: to languageWithPath:. Some method documentation
added.
* STEnvironmentDescription: read default description name from actual user
defaults (not from the StepTalk domain)
* STEnvironment: Some method documentation added.
* StepTalk.gsdoc: new file
2002 May 13 Stefan Urbanek <urbanek@host.sk>
* Uploaded to the GNUstep CVS repository by Adam Fedor
2002 Apr 20 Stefan Urbanek <urbanek@host.sk>
* COPYING: updated
* STExterns: Removed unused exceptions
* STStructure: Changed exception to STInternalIncosistencyException
2002 Apr 13 Stefan Urbanek <urbanek@host.sk>
* Modules/GNUmakefile: added option that disables making of appkit support
Use make appkit=no.
* Separated AppTalk
2002 Mar 17 Stefan Urbanek <urbanek@host.sk>
* STEngine: removed executeScript: methods and use only executeSource:
engine does not make difference between script and statements anymore
* Tools: removed --expressions option
* Examples: fixed Smalltalk examples to use new grammar
* STLanguage: new method languageNameForFileType:
2002 Mar 13 Stefan Urbanek <urbanek@host.sk>
* AppKit module: removed old AppKit constants and renamed MiddleButton
events to OtherButton.
2002 Feb 14 Stefan Urbanek <urbanek@host.sk>
* added make option 'appkit'. if you set it to 'no' (make appkit=no),
no appkit stuff will be compiled.
2002 Feb 5 Stefan Urbanek <urbanek@host.sk>
* StepTalk 0.5.0 released
2002 Feb 5 Stefan Urbanek <urbanek@host.sk>
* STSelector: new file
* NSInvocation+additions: handle SEL type with STSelector
* Examples: added selector.st, notification.st, scope.st and pldes.st
2002 Feb 3 Stefan Urbanek <urbanek@host.sk>
* Testing: new directory
2002 Jan 30 Stefan Urbanek <urbanek@host.sk>
* STEnvironment: Removed unused variables,
2002 Jan 23 Stefan Urbanek <urbanek@host.sk>
* NSNumber+additions: moved from Smalltalk, added methods for creation of
range, point and size
2002 Jan 21 Stefan Urbanek <urbanek@host.sk>
* StepTalk 0.4.1 released
2002 Jan 21 Stefan Urbanek <urbanek@host.sk>
* Removed Foundation constants to separate module
* stexec: load Foundation module instead of loading all ObjC classes
2002 Jan 13 Stefan Urbanek <urbanek@host.sk>
* Guile: new language bundle
2002 Jan 9 Stefan Urbanek <urbanek@host.sk>
* StepTalk 0.4.0 released
2002 Jan 9 Stefan Urbanek <urbanek@host.sk>
* STFunctions: new function STUserConfigPath
* STLanguage: new method languageForFileType:
* new tool stupdate_languages to create/update languages configuration file
2001 Dec 8 Stefan Urbanek <urbanek@host.sk>
* NSInvocation+addition: return receiver (target) when return type is void
2001 Nov 19 Stefan Urbanek <urbanek@host.sk>
* STModule: New method -classNames; returns array of names of exported
classes
2001 Nov 14 Stefan Urbanek <urbanek@host.sk>
* removed force of use of users home directory for installation
* new module AppKit
* STEnvironment: new method -addAllClasses to add all Objective-C classes
2001 Nov 10 Stefan Urbanek <urbanek@host.sk>
* StepTalk 0.3.0 released
2001 Nov 10 Stefan Urbanek <urbanek@host.sk>
* Added scriptable server example.
2001 Nov 9 Stefan Urbanek <urbanek@host.sk>
* STExecutor: new options: --list-objects, --list-classes and
--list-all-objects
* Tools/stalk.m: resurected
* Tools/GNUmakefile: uncommented stalk tool
* moved initialization of STNil from STUndefinedObject to STEngine
2001 Nov 6 Stefan Urbanek <urbanek@host.sk>
* STProtocolInfo: removed
* STBehaviourInfo, STClassInfo, STEnvironmentDescription: rewritten
* Environment description files changed
2001 Nov 5 Stefan Urbanek <urbanek@host.sk>
* Tools/stexec: fixed bug, that caused segfault (reported by
Nicola Pero <nicola@brainstorm.co.uk>)
* Examples: new directory with Smalltalk script examples
* STEnvironment: fixed restricted/full scripting.
translateSelector:forReceiver: now raises an exception if selector is not
allowed for receiver; standardScriptingEnvironemnt renamed to
defaultScriptingEnvironment and calls
STEnvironmentDescription defaultEnvironmentDescriptionName
* STEnvrionmentDescription: New method +defaultEnvironmentDescriptionName.
2001 Nov 3 Stefan Urbanek <urbanek@host.sk>
* Tools: implemented --environment switch to use environment description
with name.
2001 Nov 1 Stefan Urbanek <urbanek@host.sk>
* New ChangeLog started. Rewritten and redesigned.
* Added support for multiple languages. Created Smalltalk language bundle.
|