mirror of
https://github.com/sasjs/server.git
synced 2025-12-12 03:54:34 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ecd8ed9032 | ||
|
|
a8d89ff1d6 | ||
|
|
8702a4e8fd | ||
|
|
5f06132ece | ||
|
|
56c80b0979 |
@@ -1,3 +1,10 @@
|
|||||||
|
## [0.6.1](https://github.com/sasjs/server/compare/v0.6.0...v0.6.1) (2022-06-17)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* home page wording. Using fix to force previous change through.. ([8702a4e](https://github.com/sasjs/server/commit/8702a4e8fd1bbfaf4f426b75e8b85a87ede0e0b0))
|
||||||
|
|
||||||
# [0.6.0](https://github.com/sasjs/server/compare/v0.5.0...v0.6.0) (2022-06-16)
|
# [0.6.0](https://github.com/sasjs/server/compare/v0.5.0...v0.6.0) (2022-06-16)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -82,6 +82,8 @@ ${autoExecContent}`
|
|||||||
// however we also need a promise so that we can update the
|
// however we also need a promise so that we can update the
|
||||||
// session array to say that it has (eventually) finished.
|
// session array to say that it has (eventually) finished.
|
||||||
|
|
||||||
|
// Additional windows specific options to avoid the desktop popups.
|
||||||
|
|
||||||
execFilePromise(process.sasLoc, [
|
execFilePromise(process.sasLoc, [
|
||||||
'-SYSIN',
|
'-SYSIN',
|
||||||
codePath,
|
codePath,
|
||||||
@@ -95,7 +97,9 @@ ${autoExecContent}`
|
|||||||
autoExecPath,
|
autoExecPath,
|
||||||
'-ENCODING',
|
'-ENCODING',
|
||||||
'UTF-8',
|
'UTF-8',
|
||||||
process.platform === 'win32' ? '-nosplash' : ''
|
process.platform === 'win32' ? '-nosplash' : '',
|
||||||
|
process.platform === 'win32' ? '-icon' : '',
|
||||||
|
process.platform === 'win32' ? '-nologo' : ''
|
||||||
])
|
])
|
||||||
.then(() => {
|
.then(() => {
|
||||||
session.completed = true
|
session.completed = true
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ const Home = () => {
|
|||||||
<CssBaseline />
|
<CssBaseline />
|
||||||
<h2>Welcome to SASjs Server!</h2>
|
<h2>Welcome to SASjs Server!</h2>
|
||||||
<p>
|
<p>
|
||||||
This portal provides an interface for executing Stored Programs (drive)
|
SASjs Server provides a REST interface for executing Stored Programs
|
||||||
and ad hoc code (studio) against a SAS executable. The source code is
|
and ad hoc code (studio) against SAS and JS executables. The source is
|
||||||
available on{' '}
|
available on{' '}
|
||||||
<a
|
<a
|
||||||
href="https://github.com/sasjs/server"
|
href="https://github.com/sasjs/server"
|
||||||
|
|||||||
Reference in New Issue
Block a user