-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(client): move the client to its own subfolder #1838
Conversation
.replace(/</g, '\\<') | ||
.replace(/>/g, '\\>;') | ||
.replace(/&/g, '\\&'); | ||
return str.replace(/"/g, '\\"').replace(/'/g, "\\'").replace(/</g, '\\<').replace(/>/g, '\\>;').replace(/&/g, '\\&'); |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
.replace(/</g, '\\<') | ||
.replace(/>/g, '\\>;') | ||
.replace(/&/g, '\\&'); | ||
return str.replace(/"/g, '\\"').replace(/'/g, "\\'").replace(/</g, '\\<').replace(/>/g, '\\>;').replace(/&/g, '\\&'); |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
.replace(/</g, '\\<') | ||
.replace(/>/g, '\\>;') | ||
.replace(/&/g, '\\&'); | ||
return str.replace(/"/g, '\\"').replace(/'/g, "\\'").replace(/</g, '\\<').replace(/>/g, '\\>;').replace(/&/g, '\\&'); |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
.replace(/</g, '\\<') | ||
.replace(/>/g, '\\>;') | ||
.replace(/&/g, '\\&'); | ||
return str.replace(/"/g, '\\"').replace(/'/g, "\\'").replace(/</g, '\\<').replace(/>/g, '\\>;').replace(/&/g, '\\&'); |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
outline-apps
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A number of tests are still failing, so I think there's still stuff to figure out.
tools/OutlineService/OutlineService/bin/Release/OutlineService.exe.config
Outdated
Show resolved
Hide resolved
Sorry I prematurely took this out of draft. Let me put it back into draft mode. |
a982523
to
3eb6a85
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the Windows build failure, we just need to specify the projectDir
when calling electron-builder (currently it's D:\a\outline-apps\outline-apps
, but it should be D:\a\outline-apps\outline-apps\client
because env.nsh
will be generated there), similar to what we did in manager.
767dc3f
to
92aaae9
Compare
@jyyi1 I've updated the SDK - didn't you say some naming changed? What should I fix |
Basically anytime you see an error: |
896396c
to
3bafef8
Compare
6894a19
to
9229b6d
Compare
I'm not really sure where it's looking for the outline-apps/client/src/electron/custom_install_steps.nsh Lines 19 to 20 in 9229b6d
I've tried copying it to several directories and it still fails to find it. Any ideas? |
@@ -50,7 +50,7 @@ if [[ -z "${WEBPACK_MODE:-}" ]]; then | |||
fi | |||
|
|||
# Build the Web App. | |||
node src/build/run_action.mjs server_manager/web_app/build | |||
node client/src/build/run_action.mjs server_manager/web_app/build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the Manager referring to the client?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I need to hoist the build folder into the root, I'm planning on doing that next
@daniellacosse can we perhaps only migrate Cordova in this PR so we can move forward quickly? |
Yes!! I asked in the chat if we were okay with that but I guess it got lost. I can try to make that work once I get back. |
b3961a4
to
9f6190a
Compare
…ders (#1934) * chore(www): add `meaning` attribute to messages with mismatched number of placeholders * Use a more specific meaning.
* init commit * revert this * Update app_paths.ts * Update go_vpn_tunnel.ts
I was able to successfully move the client into its own subfolder:
TODO:
ROOT_DIR
?