Skip to content

Commit

Permalink
chore: new readme
Browse files Browse the repository at this point in the history
  • Loading branch information
geolffreym committed Jun 13, 2024
1 parent e00f183 commit 938118b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 46 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/publish-web.yml

This file was deleted.

8 changes: 3 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- "master"
- "v0.3.0"
- "v1.0.0"

jobs:
Expand All @@ -22,15 +21,14 @@ jobs:
- name: Install Node.js in ${{ matrix.os }}
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 18.x

- name: Build/release
uses: samuelmeuli/action-electron-builder@v1
- name: Release
uses: x6Pnda/action-electron-compiler@v1
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.GH_TOKEN }}
release: true
env:
WATCHIT_PUBLIC_KEY: ${{ secrets.WATCHIT_PUBLIC_KEY }}
CI: ""
2 changes: 1 addition & 1 deletion src/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ logger.setLogLevel(logger.LogLevels.DEBUG);
process.env.appPath = appPath;
const backend = require("./core");

const indexSplash = `file://${path.join(__dirname, "../build/splash.png")}`;
const indexSplash = `file://${path.join(__dirname, "../build/splash2.png")}`;
const indexUrl = `file://${path.join(__dirname, "../build/index.html")}`;

const gotTheLock = app.requestSingleInstanceLock();
Expand Down
3 changes: 3 additions & 0 deletions src/render/core/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ export default {
gateways: () => {
return [
'https://ipfs.io',
'https://storry.tv',
"https://nftstorage.link",
'https://4everland.io',
'https://dweb.link',
'https://gw.watchit.movie/'
]
Expand Down
6 changes: 5 additions & 1 deletion src/render/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,9 @@
}

.movies-box {
height: calc(100% - 11rem);
height: calc(100% - 11rem) !important;
}

.movie-box {
height: calc(100% - 3.9rem) !important;
}
2 changes: 1 addition & 1 deletion src/render/index.web.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
}

.movies-box {
height: calc(100% - 7rem);
height: calc(100% - 7rem) !important;
}
2 changes: 1 addition & 1 deletion webpack/plugins/pluginCopy.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const config = {
{ from: join(rootDir, './public/icon512.png'), to: '' },
{ from: join(rootDir, './public/favicon.ico'), to: '' },
{ from: join(rootDir, './public/manifest.json'), to: '' },
{ from: join(rootDir, './public/splash.png'), to: '' },
{ from: join(rootDir, './public/splash2.png'), to: '' },
]
}

Expand Down

0 comments on commit 938118b

Please sign in to comment.