Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
Cleanup help

cleaning
  • Loading branch information
himanga committed Aug 24, 2021
1 parent 75e53f1 commit e29744b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
4 changes: 1 addition & 3 deletions AddinFiles/Help/Help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,4 @@ https://github.com/himanga/JMPScriptingTools
About: Developer
Created by Isaac Himanga

Submit bug reports via github at the link <above: Version>.

Log in with your domain account and password, or email Research.I.T <[email protected]> for assistance logging in.
Submit bug reports via github at the link <above: Version>.
6 changes: 3 additions & 3 deletions AddinFiles/addinLog.jsl
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ thisAddIn = "com.github.himanga.JMPScriptingTools";

// About: get or make namespace for this add-in
If(
!Namespace Exists( Eval( thisAddIn ) || "addinnamespace" ),
ns = New Namespace( Eval( thisAddIn ) || "addinnamespace" ),
ns = Namespace( Eval( thisAddIn ) || "addinnamespace" )
!Namespace Exists( Eval( thisAddIn ) || ".addinnamespace" ),
ns = New Namespace( Eval( thisAddIn ) || ".addinnamespace" ),
ns = Namespace( Eval( thisAddIn ) || ".addinnamespace" )
);

// Function: logusage
Expand Down
2 changes: 1 addition & 1 deletion AddinFiles/customMetadata.jsl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Associative Array(
List( "author", "Isaac Himanga" ),
List( "buildDate", 3712136081 ),
List( "developer", "Isaac Himanga" ),
List( "developeremail", "" ),
List( "developeremail", "message me on the JMP community or github" ),
List( "id", "com.github.himanga.JMPScriptingTools" ),
List( "name", "Scripting Tools" ),
List( "state", "DEV" )
Expand Down
2 changes: 0 additions & 2 deletions NaturalDocs/Project.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ Source Folder 2: ..\Tests

Ignore Source Folder: ..\AddinFiles\Docs

Ignore Source Folder: ..\AddinFiles\Docs

Ignore Source Folder Pattern: ..\.*


Expand Down
2 changes: 1 addition & 1 deletion Tests/UnitTests/addinToolsTest.jsl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Routine: Test mapply
tests <mapply>
*/

ns = Namespace( "com.adm.ModelEngine" || ".addinnamespace" );
ns = Namespace( "com.github.himanga.JMPScriptingTools" || ".addinnamespace" );

ut test( "Tools", "mapply", Expr(

Expand Down

0 comments on commit e29744b

Please sign in to comment.