-
-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #385 from louisnw01/2.0
2.0
- Loading branch information
Showing
89 changed files
with
5,824 additions
and
2,373 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env bash | ||
|
||
GREEN='\033[0;32m' | ||
RED='\033[0;31m' | ||
YELLOW='\033[0;33m' | ||
CYAN='\033[0;36m' | ||
NC='\033[0m' | ||
|
||
ERROR="${RED}[ERROR]${NC} " | ||
INFO="${CYAN}[INFO]${NC} " | ||
WARNING="${WARNING}[WARNING]${NC} " | ||
|
||
rm -rf dist/bundle.js dist/typings/ | ||
|
||
if [[ $? -eq 0 ]]; then | ||
echo -e "${INFO}deleted bundle.js and typings.." | ||
else | ||
echo -e "${WARNING}could not delete old dist files, continuing.." | ||
fi | ||
|
||
npx rollup -c rollup.config.js | ||
if [[ $? -ne 0 ]]; then | ||
exit 1 | ||
fi | ||
|
||
cp dist/bundle.js src/general/styles.css lightweight_charts/js | ||
if [[ $? -eq 0 ]]; then | ||
echo -e "${INFO}copied bundle.js, style.css into python package" | ||
else | ||
echo -e "${ERROR}could not copy dist into python package ?" | ||
exit 1 | ||
fi | ||
echo -e "\n${GREEN}[BUILD SUCCESS]${NC}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Alternative GUI's | ||
|
||
|
||
## PyQt5 / PySide6 | ||
## PyQt6 / PyQt5 / PySide6 | ||
|
||
```python | ||
import pandas as pd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<!-- redirect to example page --> | ||
<meta http-equiv="refresh" content="0; URL=src/example/" /> | ||
</head> | ||
</html> |
Oops, something went wrong.