Skip to content

Commit

Permalink
Feature/adding other arch builds (#364)
Browse files Browse the repository at this point in the history
* Releasing 0.7.0 (#237)

* increasing the version number to 0.4.1

* Updating the eslint version

* increasing the electron-builder version to 21.1.1

* Reverting the upgrade of eslint as requires node version 11.10.1 or higher... and travis build is in 11.10.0

* increasing vesrion of electron to 4.2.7

* Force fallback to XWayland (#181)

Perhaps electron cannot use native wayland, so disabling it in the snap
causes it to fall back to XWayland which makes it work.

* Feature 186 refactor index (#189)

* Initial commit

* Refactoring the main browser window out of the index.js

* updating package version files

* Adding small readme for the mainAppWindow folder

* Feature 186 refactor index (#191)

* Initial commit

* Refactoring the main browser window out of the index.js

* updating package version files

* Adding small readme for the mainAppWindow folder

* minor tidy up on readme and removing un-used files

* minor tidy up removal of unused files (#190)

* wip trying to fix screensharing (#195)

* wip trying to fix screensharing

* Adding back all the other chrome stuff as otherwise the one-2-one and other video stuff doesn't work

* Catching the angular undefined and triggering the timeout again

* increasing the package version number in order to be ready for release

* moving to version 0.5.0 in preparation for release

* moving to 0.5.1

* Create FUNDING.yml

Adding funding page.

* Remove invalid newline in Linux package description (#201)

* Remove productName from package.json to address WM_CLASS issue (#176)

* Remove invalid newline in Linux package description

* Preparing release 0.6.0 and fix #203 (#205)

* increase version to 0.6.1 for future development

* Fix 171 adding clear cache to session (#209)

* Adding the clearCache after the window creation to see if helps fixing the issue 171

* Moving to version 0.6.2

* Changing log message when clearing session cache

* Changing log message when clearing session cache

* Better handle external requests in new windows (#206)

Here we use a counter to track the requests that are slated to open
in a new window and have a URL of about:blank.
We then filter all requests and proceed normally when the counter is
less than 1.

* Update KNOWN_ISSUES to reference cache folder (#171) (#210)

* Update KNOWN_ISSUES to reference cache folder (#171)

* Update KNOWN_ISSUES.md

* Adding extra logs and the flushStorageData to see if fixes, or help, with #107 (#212)

* Feature 107 adding extra logs and checks (#213)

* Adding extra logs and the flushStorageData to see if fixes, or help, with #107

* Adding teh clear appcache storage

* Feature 107 adding extra logs and checks (#215)

* Adding extra logs and the flushStorageData to see if fixes, or help, with #107

* Adding teh clear appcache storage

* making the clearCache and clearStorage async/await so we can wait for them to finish before loading the app

* Feature 185 toogle fullscreen f11 (#216)

* Adding extra logs and the flushStorageData to see if fixes, or help, with #107

* Adding teh clear appcache storage

* making the clearCache and clearStorage async/await so we can wait for them to finish before loading the app

* Adding a menu item to be able to toogle the fullscreen mode by using f11

* updating default user agent string per issue 204 (#217)

* updating default user agent string per issue 204

* bumped version number for default user agent string switch

* Fixing #171 (#218)

* Revert "Feature 107 adding extra logs and checks (#215)"

This reverts commit 7862b4b.

* Overwrite the serviceWorker.register method

* Revert "Feature 107 adding extra logs and checks (#213)"

This reverts commit b330962.

* Remove more extra logging

* Bump version on package.json to 0.6.6

* #221: updating readme with a link to AppImageLauncher (#226)

* Increasing the electron-builder to fix #208 (#231)

* Increasing the electron-builder to fix #208

* Adding back the other build packages removed for testing

* Add flatpak to configuration directory list (#232)

* Add flatpak to configuration directory list

Also make the Snap configuration directory more precise

* Added from source

* moving version to 0.7.0

* adding other architectures builds

* Moving the arch to the command as it doesn't seem to work in the package.json part

* reordering the arch commands as they don't seem to work in the previous order

* increasing version to 1.0.5

* Fixing typo in armv7l (not 1)

* removing ia32 as is not an architecture longer supported

Co-authored-by: Ismael Martinez Ramos <[email protected]>
  • Loading branch information
IsmaelMartinez and IsmaelMartinez authored May 25, 2020
1 parent 37f055c commit 6401ed5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:linux": "electron-builder --linux",
"dist:linux:targz": "electron-builder -l --ia32 --x64 --armv7l --arm64 tar.gz ",
"dist:linux:deb": "electron-builder -l --ia32 --x64 --armv7l --arm64 deb",
"dist:linux:rpm": "electron-builder -l --ia32 --x64 --armv7l --arm64 rpm",
"dist:linux:appimage": "electron-builder -l --ia32 --x64 --armv7l --arm64 AppImage",
"dist:linux:snap": "electron-builder -l --ia32 --x64 --armv7l --arm64 snap -p always",
"dist:linux:targz": "electron-builder -l --x64 --armv7l --arm64 tar.gz ",
"dist:linux:deb": "electron-builder -l --x64 --armv7l --arm64 deb",
"dist:linux:rpm": "electron-builder -l --x64 --armv7l --arm64 rpm",
"dist:linux:appimage": "electron-builder -l --x64 --armv7l --arm64 AppImage",
"dist:linux:snap": "electron-builder -l --x64 --armv7l --arm64 snap -p always",
"release": "electron-builder"
},
"dependencies": {
Expand Down

0 comments on commit 6401ed5

Please sign in to comment.