Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hilbertspace05/WebDrop
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: subins2000/WebDrop
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 6 commits
  • 6 files changed
  • 3 contributors

Commits on Aug 1, 2022

  1. Update dots URL

    subins2000 authored Aug 1, 2022

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    ce32309 View commit details

Commits on Jan 31, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    jan-auer Jan Michael Auer
    Copy the full SHA
    de71bfc View commit details
  2. Merge pull request subins2000#51 from aadithyen/gfonts-build-error-fix

    overriden apiUrl to working one
    subins2000 authored Jan 31, 2023
    Copy the full SHA
    e416a40 View commit details

Commits on Aug 29, 2023

  1. Minor UI and doc fixes (subins2000#57)

    * docs: update the yarn dev command
    
    The doc currently says `yarn start` but there is no `start` command.
    It is supposed to be `yarn serve`
    
    * fix(ui): box border strikes through the `Message` text
    afeedhshaji authored Aug 29, 2023
    Copy the full SHA
    a9647e9 View commit details

Commits on Oct 15, 2023

  1. Update tracker URLs

    subins2000 committed Oct 15, 2023
    Copy the full SHA
    632bf8c View commit details
  2. Set node version

    subins2000 committed Oct 15, 2023
    Copy the full SHA
    4d29b4c View commit details
Showing with 10 additions and 6 deletions.
  1. +1 −1 README.md
  2. +3 −0 package.json
  3. +1 −0 src/components/Shares.vue
  4. +2 −3 src/main.ts
  5. +1 −1 src/views/About.vue
  6. +2 −1 vue.config.js
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ Clone the repo and do :

```
yarn install
yarn start
yarn serve
```

WebTorrent trackers list is included in `src/main.ts`. You may want to change that or add/start your [own tracker](https://github.com/subins2000/p2pt/blob/master/startTracker.js) locally for development.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -54,5 +54,8 @@
"vue-cli-plugin-webpack-bundle-analyzer": "^2.0.0",
"vue-property-decorator": "^8.4.1",
"vue-template-compiler": "^2.6.11"
},
"engines": {
"node": ">=14.0.0"
}
}
1 change: 1 addition & 0 deletions src/components/Shares.vue
Original file line number Diff line number Diff line change
@@ -888,4 +888,5 @@ body.dragging:after
padding-left: 0.125em
padding-right: 0.125em
font-size: calc(1rem * 3 / 4)
background-color: rgb(255, 255, 255)
</style>
5 changes: 2 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -52,10 +52,9 @@ Vue.directive('linkified', linkify)

let announceURLs = [
'wss://tracker.openwebtorrent.com',
'wss://wsswt.herokuapp.com',
'wss://tracker.webtorrent.dev',
'wss://tracker.btorrent.xyz',
'wss://tracker.sloppyta.co:443/',
'wss://tracker.novage.com.ua:443/'
'wss://tracker.files.fm:7073/announce'
// 'ws://192.168.100.7:5000'
]

2 changes: 1 addition & 1 deletion src/views/About.vue
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@
</a>
</div>
</b-field><br/>
<p>Check out this <a href="https://vett.space" target="_blank">Dots game</a> which is also P2P.</p>
<p>Check out this <a href="https://dots.subinsb.com" target="_blank">Dots game</a> which is also P2P.</p>
<p><a href="https://subinsb.com/projects/">See my other projects</a></p>
<img src="https://WebDrop.Space/favicon.png" />
<p>May the web be with you</p>
3 changes: 2 additions & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
@@ -54,7 +54,8 @@ module.exports = {
new GoogleFontsPlugin({
fonts: [
{ family: 'Ubuntu', variants: ['300', '400'] }
]
],
apiUrl: "https://gwfh.mranftl.com/api/fonts"
})
]
}