aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* Added new message when the user doesn't find a service (but that is present ↵Libravatar Vijay A2021-06-23
| | | | in the website).
* Added new GH Actions workflow to welcome first time contributors. [skip ci]Libravatar Vijay A2021-06-23
|
* Fixed the issue of Ferdi not startingLibravatar Markandan R2021-06-23
|
* Upgraded electron to '13.1.4'Libravatar Vijay A2021-06-23
|
* Bump color-string from 1.5.3 to 1.5.5 in /packages/themeLibravatar dependabot[bot]2021-06-22
| | | | | | | | | | | | | | Bumps [color-string](https://github.com/Qix-/color-string) from 1.5.3 to 1.5.5. - [Release notes](https://github.com/Qix-/color-string/releases) - [Changelog](https://github.com/Qix-/color-string/blob/master/CHANGELOG.md) - [Commits](https://github.com/Qix-/color-string/commits/1.5.5) --- updated-dependencies: - dependency-name: color-string dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
* Bump color-string from 1.5.3 to 1.5.5 in /packages/uiLibravatar dependabot[bot]2021-06-22
| | | | | | | | | | | | | | Bumps [color-string](https://github.com/Qix-/color-string) from 1.5.3 to 1.5.5. - [Release notes](https://github.com/Qix-/color-string/releases) - [Changelog](https://github.com/Qix-/color-string/blob/master/CHANGELOG.md) - [Commits](https://github.com/Qix-/color-string/commits/1.5.5) --- updated-dependencies: - dependency-name: color-string dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
* Upgraded node modules.Libravatar Vijay A2021-06-22
|
* Removed the cyclical dependency (#1519) (#1539)Libravatar Markandan R2021-06-22
|
* Downgraded submodule 'src/internal-server'Libravatar Vijay A2021-06-22
|
* Upgraded to Electron 13.1.3 (#1542)Libravatar Vijay Raghavan Aravamudhan2021-06-22
|
* Updated submodulesLibravatar Vijay A2021-06-20
|
* Apply browserslist data updatesLibravatar github-actions2021-06-20
|
* Apply browserslist data updatesLibravatar github-actions2021-06-19
|
* New Crowdin updates (#1536)Libravatar Ferdi Bot2021-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Romanian Hebrew Portuguese Polish Norwegian French Korean Georgian Japanese Italian Hungarian Dutch Irish Belarusian Finnish Spanish Afrikaans Arabic Catalan Czech Danish German Greek Chinese Traditional Flemish Croatian Indonesian Portuguese, Brazilian Vietnamese Slovenian Chinese Simplified Ukrainian Turkish Swedish Serbian (Cyrillic) Slovak Russian Bosnian
* User agent as a user-preference (#1535)Libravatar Vijay Raghavan Aravamudhan2021-06-17
| | | | | | | | | | | | | | | | | | | | Introduced a global and a service-specific 'user-agent' value that can be set by the user from the preference section. The global override is in Advanced, while the service override was moved to the bottom of the service editor form (and now occupies the full width of the form). Show 'restart reqd' prompt for user-agent setting. The order of the user-agent is the following: 1. Any request header overrides in the recipe will still override the user agent string. 2. If the user has set a user agent override for the service, use that. 3. If the recipe has a predefined user agent, use that. 4. If the user has set a global user agent override, use that. 5. Otherwise, use the user agent string corresponding to the underlying Electron version. If the current webpage is the Google login form, we still remove the Chrome version number from the user agent string. The value that would be used if no custom override is set (recipe-provided value or global override for the service, current Electron instance for the global override) is shown as a placeholder in the input box on the corresponding setting screen. Co-authored-by: Kristóf Marussy <kristof@marussy.com>
* Run ALL builds if no OSes were chosen (manual trigger) (#1529)Libravatar Vijay Raghavan Aravamudhan2021-06-16
| | | | | | | | Manual trigger no longer looks for 'force build' magic message content. Only run 'check_updates' for nightly branch (for either schedule or manual trigger) Optimizing build: 1) git checkout fetch depth 2) better conditions for skipping builds
* Added ability to run specific OS builds for manual triggerLibravatar Vijay A2021-06-15
| | | | | This forced us to split the jobs into multiple copies (one per OS) to avoid complex conditional logic in 'if' blocks.
* Skip notarization of the build artifact if not building for the main repo ↵Libravatar Vijay A2021-06-15
| | | | (ie building on a forked repo)..
* Upgraded some npm modules (#1525)Libravatar Vijay Raghavan Aravamudhan2021-06-13
| | | | * Update the browserslist data every night * Change the support browsers list to 'last 2 Chrome versions' - in a bid to keep transpiling output size and time to a smaller number.
* docs: add markandan as a contributor for code (#1524) [skip ci]Libravatar allcontributors[bot]2021-06-13
|
* Removed the cyclical dependency in workspaces and announcement (Partial fix ↵Libravatar Markandan R2021-06-13
| | | | for: #1519) (#1522)
* Pass --publish never for PR builds (#1521)Libravatar Kristóf Marussy2021-06-12
| | | | | | Trying to fix the GitHub Personal Access Token is not set, neither programmatically, nor using env "GH_TOKEN" error.
* Upgraded some modules (#1520)Libravatar Vijay Raghavan Aravamudhan2021-06-12
|
* Fix active Todos service behaviour (#1481)Libravatar kytwb2021-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Return false instead of null in isTodosServiceAdded * Resolve from TODOS_RECIPES_ID instead of hardcoded TODOS_RECIPE_ID * Fix TodosWebview width toggling when isTodosServiceActive * Add more todo service recipe IDs * Refactor todos state management * Moved todos service URL and recipe ID computation logic to todos/store * Simplified TodosWebview by delegating to the store for the URL and removing the (unused) payment logic * Made the todos service computation logic in the Service model depend on the logic in todos/store * Made ServicesStore depend on the todos service logic from the Service model * Todos appearance fixes * Hide double horizontal rules if todo settings are hidden due to an added todo service * Hide todos panel border when the panel is hidden or expanded * Make expanded todos panel obey sidebar width and vertical style settings * Make todos/store use isValidExternalURL * Harden isValidExternalURL against malformed URLs * Reduce todo URL string duplication in config.js Co-authored-by: Kristóf Marussy <kristof@marussy.com>
* Bypassed code signing since that is also incorrect in GH settings.Libravatar Vijay A2021-06-12
|
* Commented out the env vars that trigger code-signing.Libravatar Vijay A2021-06-11
|
* Bump electron-builder to 22.11.7 (fix #1469)Libravatar Kristóf Marussy2021-06-11
|
* Fixing incorrect expressionLibravatar Vijay A2021-06-10
|
* Added ability to force a version bump on the nightly branch based on ↵Libravatar Vijay A2021-06-10
| | | | 'version bump' phrase present in trigger message.
* Fixing misty config file to watch for the correct portLibravatar Vijay A2021-06-10
|
* Upgraded electron to '13.1.2'Libravatar Vijay A2021-06-10
|
* Bump normalize-url from 5.0.0 to 5.3.1Libravatar dependabot[bot]2021-06-09
| | | | | | | | | | | | | Bumps [normalize-url](https://github.com/sindresorhus/normalize-url) from 5.0.0 to 5.3.1. - [Release notes](https://github.com/sindresorhus/normalize-url/releases) - [Commits](https://github.com/sindresorhus/normalize-url/commits) --- updated-dependencies: - dependency-name: normalize-url dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
* Builds using GitHub actions (#1467)Libravatar Vijay Raghavan Aravamudhan2021-06-08
| | | | | * Using GH Actions for building, packaging and publishing for all 3 OSes (macos, ubuntu and windows). Handles PR builds, release builds, scheduled nightly builds and manual triggering from the web-ui. * Removed references to travis and appveyor and their respective config files. * Added ability to force rebuild nightlies without new version number. (This should allow us to rerun nightly builds with the same build number. Looks for the trigger comment to contain: 'force build' and 'nightly branch')
* New translations en-US.json (Korean)Libravatar Ferdi Bot2021-06-07
|
* Fix misaligned menu itemsLibravatar stnkl2021-06-07
|
* Fix menu cornerLibravatar stnkl2021-06-07
|
* Added missing documentation around self-signing for local testing of ↵Libravatar Vijay A2021-06-06
| | | | packaged apps on macos [skip ci]
* Extracted common string into constant.Libravatar Vijay A2021-06-06
|
* Build Ferdi for freeBSDLibravatar Vijay A2021-06-05
|
* New Crowdin updates (#1500)Libravatar Ferdi Bot2021-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * New translations en-US.json (Romanian) * New translations en-US.json (Turkish) * New translations en-US.json (Portuguese) * New translations en-US.json (Russian) * New translations en-US.json (Slovak) * New translations en-US.json (Slovenian) * New translations en-US.json (Serbian (Cyrillic)) * New translations en-US.json (Swedish) * New translations en-US.json (Ukrainian) * New translations en-US.json (Norwegian) * New translations en-US.json (Chinese Simplified) * New translations en-US.json (Chinese Traditional) * New translations en-US.json (Vietnamese) * New translations en-US.json (Portuguese, Brazilian) * New translations en-US.json (Indonesian) * New translations en-US.json (Croatian) * New translations en-US.json (Flemish) * New translations en-US.json (Polish) * New translations en-US.json (Dutch) * New translations en-US.json (French) * New translations en-US.json (German) * New translations en-US.json (Spanish) * New translations en-US.json (Afrikaans) * New translations en-US.json (Arabic) * New translations en-US.json (Belarusian) * New translations en-US.json (Catalan) * New translations en-US.json (Czech) * New translations en-US.json (Danish) * New translations en-US.json (Greek) * New translations en-US.json (Korean) * New translations en-US.json (Finnish) * New translations en-US.json (Irish) * New translations en-US.json (Hebrew) * New translations en-US.json (Hungarian) * New translations en-US.json (Italian) * New translations en-US.json (Japanese) * New translations en-US.json (Georgian) * New translations en-US.json (Bosnian)
* Added ability to turn off notifications for clipboard events generated by ↵Libravatar Vijay Raghavan Aravamudhan2021-06-05
| | | | context menu actions (#1494)
* Removed hardcoded strings and reused constants defined in config.js (#1499)Libravatar Vijay Raghavan Aravamudhan2021-06-05
|
* Reused commonly defined method for 'apiBase'Libravatar Vijay A2021-06-05
|
* Upgraded electron to '13.1.1'.Libravatar Vijay A2021-06-05
|
* Expose Chrome version to todos webview (fix #1211) (#1478)Libravatar Kristóf Marussy2021-06-03
| | | | | | | | | | | | | | | | | * Expose Chrome version to todos webview (fix #1211) The TickTick todo service fails to load if the Chrome version number does not appear in the User-Agent string. However, login to Google Tasks is prevented by the same. We adopt the "chromeless" User-Agent logic from the service webview, which selectively exposes the Chrome version everywhere except the Google login screen. The common logic was moved into the userAgent-helpers module. * Refactor user agent switching * "Chromeless" user agent switching is extracted into a separate model * Both the service and the todos webview uses the same model
* Upgraded electron to '13.1.0'.Libravatar Vijay A2021-06-03
|
* Adjust link opening behaviorLibravatar stnkl2021-06-03
|
* Allow nightlies as pre-releases (possible fix for broken updater in nightlies).Libravatar Vijay A2021-06-02
|
* docs: add prasann as a contributor (#1477)Libravatar allcontributors[bot]2021-06-01
| | | | | | | * docs: update README.md [skip ci] * docs: update .all-contributorsrc [skip ci] Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
* restrict opening blank screens in the new windowLibravatar Prasanna2021-06-01
|