TheGoddessInari
b02a61538d
Use path.join for icons.
6 years ago
TheGoddessInari
653bb105e8
Add alt+left and alt+right shortcuts for switching tabs.
6 years ago
TheGoddessInari
e311167758
ServicesList: Remove slowed timer blacklist from WhatsApp.
6 years ago
TheGoddessInari
7da7339a43
Merge pull request #87 from JakobStruye/fix-slowed-timer-params
...
Fixed slowed timers to also pass the params for the function
6 years ago
Jakob Struye
772adb7ed0
Fixed slowed timers to also pass the params for the function to be
...
called along
6 years ago
TheGoddessInari
160caaedca
Merge pull request #86 from timbru31/feat/update-slack-icon
...
fix(slack): replace icon
6 years ago
Tim Brust
ea8f9a7435
fix(slack): replace icon
6 years ago
TheGoddessInari
92c1c48948
Merge pull request #83 from ThauEx/patch-2
...
Steam: Update unread js
6 years ago
ThauEx
0aebdd34d9
Steam: Update unread js
...
This updates the Steam unread js to support the new design.
6 years ago
Álvaro Brey
b299357de2
README: fix feature list ( #81 )
...
* README: fix feature list
* Fix non-rendering checkbox
6 years ago
TheGoddessInari
f345f805d2
Fix locale path to be app relative, like was done for icons.
6 years ago
TheGoddessInari
14c71aeae3
Partially revert da64582cf3
. App.quit should work again.
6 years ago
TheGoddessInari
0ecf7db4f0
Redo shortcuts via hidden menus, adds quit keybind, move F1 F2 keybinds.
...
This fixes #66 .
Also adds Ctrl-Shift-Q to be able to quit via keyboard easily, but
prevent accidents.
Also move F1 and F2 keybinds to Alt+F1 and Alt+F2
respectively to also prevent accidents.
6 years ago
TheGoddessInari
4ed3cc4fef
app.json: Add icon.ico to the cache.
6 years ago
TheGoddessInari
3a36cdaf9f
Fix a stray icon path still using __dirname.
6 years ago
TheGoddessInari
ecd28d7966
README: Note that Auth0 is disabled until after the rename.
6 years ago
TheGoddessInari
1c5e6cea91
ServicesList: Update User Agents with current version.
6 years ago
TheGoddessInari
7c4f2843c7
Merge pull request #80 from JakobStruye/os-spark-to-webex
...
Rebranded Cisco Spark to Cisco Webex Teams
6 years ago
TheGoddessInari
085f9a7c77
Update to electron 4.0.1 and electron-builder 20.38.5.
6 years ago
TheGoddessInari
6415d37ba5
Revert "Disable eval from webviews."
...
This reverts commit f46631a6fb
.
This fixes #76 and #79 .
Apparently some sites, in this case FB Messenger and Outlook 365,
blindly use `eval` and aren't responsive to fixes. If this causes
security problems down the road, please don't blame me. :)
6 years ago
Jakob Struye
1a04c09099
Rebranded Cisco Spark to Cisco Webex Teams
6 years ago
TheGoddessInari
480dacaf56
Fix icon paths to be consistent.
6 years ago
TheGoddessInari
0172bec5c4
WhatsApp: Disable initial service workers.
...
This works around #72 in combination with 3cc306e
.
Inspired by ramboxapp/community-edition@9c0f13d, but written from
scratch using Promises to avoid blocking pointlessly while Promises
resolve.
Fixes #72 .
6 years ago
TheGoddessInari
3cc306ec34
WhatsApp: fix typo, useragent was used instead of userAgent.
6 years ago
TheGoddessInari
bc1923dcd4
README: Somehow the AppImage link changed, fix it.
6 years ago
TheGoddessInari
38bffd6467
Remove references to `app watch`, as this never made sense.
...
Also remove mention of 'contributed services'.
6 years ago
TheGoddessInari
af081b791d
Add git hashes to buildversion.
...
Also replace 'rimraf' with the more generic 'shx'.
6 years ago
TheGoddessInari
45b3597898
Update dev package versions.
6 years ago
TheGoddessInari
f46631a6fb
Disable eval from webviews.
...
It can be trivially exploited online, so no service page should be
using this. I'll gladly help people report bugs upstream if It
comes down to that, but electron strongly recommends this.
This is reintroduced from c982df1a7a
as ICQ seems to've fixed the issue, despite not honoring bug bounty.
6 years ago
TheGoddessInari
347e05b4ce
WhatsApp: Use a different user-agent because they're being stupid.
6 years ago
TheGoddessInari
0cc05c9fe4
ServicesList: Replace for..in with for..of for hipchat, horde, and mysms.
...
Somehow this passed by the linter and inspection.
7 years ago
TheGoddessInari
3bfe190fb8
Zoho: Replace .com with ___ for non-US folks, add note to add .com or other TLD.
7 years ago
TheGoddessInari
1dd0cbb2ea
CONTRIBUTING.md: Let's clean this up.
7 years ago
TheGoddessInari
f0d4676f7c
README.md: Remove reference to env.js.
7 years ago
TheGoddessInari
6ffa2826be
Update DEB64 link.
...
Closes #63
7 years ago
TheGoddessInari
fe4f41bab3
Update package lock.
7 years ago
TheGoddessInari
53a837bbeb
Update electron-contextmenu-wrapper to 1.0.0.
7 years ago
TheGoddessInari
86c72dda6c
Update electron to 3.0.8, electron builder to 20.33.2,
...
spectron to 5.0.0 and electron-is-dev to 1.0.1.
Looks like finally the remoting bugs have been fixed.
7 years ago
TheGoddessInari
821e3f58ed
Add snap packaging.
7 years ago
TheGoddessInari
b6761807d2
Update electron to 2.0.11.
7 years ago
Ramiro Saenz
c3d082148f
Prevent bug "window.close" related with Electron
...
https://github.com/electron/electron/issues/13843
7 years ago
TheGoddessInari
de6e79baf4
Merge pull request #57 from ontherunvaro/patch-inbox-badges
...
Inbox: only update notification badge for Inbox view.
7 years ago
Álvaro Brey
eff6783145
Inbox: only update notification badge for Inbox view.
...
Currently the unread badges are updated in any view (such as Done,
Snoozed or any folder). These are not unread/new messages and as such
should not count towards the badge.
This patch works around that issue by checking if the current view is
the Inbox view, and not updating the unread count otherwise.
See: https://github.com/ramboxapp/community-edition/issues/1136 ,
https://github.com/ramboxapp/community-edition/pull/1853
7 years ago
TheGoddessInari
2d8fbcf5d5
node: Make 'start' npm command work
...
We have to build and install dependencies first thanks to ExtJS
and electron-builder.
Relates to #55 , and brought up as an issue by @ontherunvaro .
7 years ago
TheGoddessInari
aff8a41a0b
Hangouts: Fix js_unread.
7 years ago
TheGoddessInari
59ebf0ece6
Merge pull request #56 from ontherunvaro/patch-linux-categories
...
package.json: Change freedesktop category to Network
7 years ago
TheGoddessInari
b39248a004
Merge pull request #54 from ontherunvaro/patch-gitignore-jsonp
...
Add bootstrap.jsonp to .gitignore
7 years ago
Álvaro Brey
cdc4b83cdb
package.json: Change freedesktop category to Network
...
See https://github.com/ramboxapp/community-edition/pull/971
7 years ago
Álvaro Brey
7e896d0460
Add bootstrap.jsonp to .gitignore
7 years ago
TheGoddessInari
694bfb93b7
CSP: fix custom icons. Remote loading of https
...
images is probably fine.
7 years ago