An easy-to-use platform for EEG experimentation in the classroom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

minor updates

+38 -1
+37
.github/workflows/release.yml
··· 1 + name: Release 2 + 3 + on: 4 + push: 5 + tags: 6 + - 'v*' 7 + 8 + jobs: 9 + release: 10 + runs-on: ${{ matrix.os }} 11 + 12 + strategy: 13 + matrix: 14 + os: [macos-latest, windows-latest, ubuntu-latest] 15 + 16 + steps: 17 + - name: Check out Git repository 18 + uses: actions/checkout@v4 19 + 20 + - name: Install Node.js 21 + uses: actions/setup-node@v4 22 + with: 23 + node-version: 22 24 + cache: 'npm' 25 + 26 + - name: Install dependencies 27 + run: npm install 28 + 29 + - name: Build and publish 30 + env: 31 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 32 + USERNAME: ${{ secrets.USERNAME }} 33 + PASSWORD: ${{ secrets.PASSWORD }} 34 + CLIENT_ID: ${{ secrets.CLIENT_ID }} 35 + CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} 36 + LICENSE_ID: ${{ secrets.LICENSE_ID }} 37 + run: npm run package-ci
+1 -1
src/renderer/components/PyodidePlotWidget.tsx
··· 6 6 interface Props { 7 7 title: string; 8 8 imageTitle: string; 9 - plotMIMEBundle: { 'image/svg+xml': string } | null | undefined; 9 + plotMIMEBundle: { [key: string]: string } | null | undefined; 10 10 } 11 11 12 12 function svgToPngArrayBuffer(svg: string): Promise<ArrayBuffer> {