insomnia/packages/insomnia-app/config/config.json

40 lines
1.2 KiB
JSON
Raw Normal View History

2020-04-26 20:33:39 +00:00
{
2021-04-21 20:35:23 +00:00
"version": "2021.3.0-beta.0",
2020-04-26 20:33:39 +00:00
"name": "insomnia",
"executableName": "insomnia",
"appId": "com.insomnia.app",
"userDataFolder": "Insomnia",
2020-04-26 20:33:39 +00:00
"productName": "Insomnia",
"binaryPrefix": "Insomnia.Core",
"longName": "Insomnia",
"synopsis": "The Collaborative API Client and Design Tool",
"icon": "https://github.com/kong/insomnia/blob/develop/packages/insomnia-app/app/icons/icon.ico?raw=true",
2021-02-25 21:33:38 +00:00
"changelogUrl": "https://insomnia.rest/changelog",
2020-04-26 20:33:39 +00:00
"theme": "default",
Add OS dark mode support (#2868) * Add settings for color scheme detection and themes Default light and dark themes can still be changed. For now its studio-light and default for core, and studio-dark and studio-light for designer. * Add color scheme type and supporting methods The detection of dark scheme is based on the background color at the moment. This seems to work pretty well, but is not an ideal solution. I think themes should at least get to override this. * Add support for choosing light and dark theme to settings This adds a checkbox to the theme settings that determines whether we use the OS color scheme. If we don't (default) everything stays the same as before. If we do, themes are rendered in two groups. One for the light themes and one for the dark themes. They can be chosen independently. None of this overrides the default theme choice. * Add padding to the theme settings tab Themes are still aligned by adding negative margin. A bit of a hack, open for suggestions. * Update theme on OS color scheme change * Replace usages of setTheme with applyColorScheme This makes sure that we don't override the user's choice. * Update packages/insomnia-app/app/plugins/misc.js Co-authored-by: Opender Singh <opender94@gmail.com> * Remove dark mode heuristic * Remove unused button value * Update theme settings design * Update packages/insomnia-app/app/ui/components/settings/theme.js Co-authored-by: Opender Singh <opender94@gmail.com> * Update packages/insomnia-app/app/ui/components/settings/theme.js Co-authored-by: Opender Singh <opender94@gmail.com> * Replace object literal lookups Do not use object literal lookups to make code more readable * Remove unused parameter * Disable default theme select when auto detection is enabled * Fix imports after rebase * Update packages/insomnia-app/app/ui/components/modals/settings-modal.js Co-authored-by: Opender Singh <opender94@gmail.com> * Update packages/insomnia-app/app/ui/components/modals/settings-modal.js Co-authored-by: Opender Singh <opender94@gmail.com> * Remove theme header * Disable hover animation and border on disabled theme buttons * Clean up double negation in css Replace :not(:disabled) with :enabled. Not sure what I was thinking there. * Update index.js Co-authored-by: Opender Singh <opender94@gmail.com> Co-authored-by: Opender Singh <opender.singh@konghq.com>
2021-03-13 03:38:54 +00:00
"lightTheme": "studio-light",
"darkTheme": "default",
2020-04-26 20:33:39 +00:00
"main": "main.min.js",
"githubOrg": "Kong",
2020-04-26 21:08:50 +00:00
"githubRepo": "insomnia",
2020-04-29 02:41:45 +00:00
"gaId": "UA-8499472-34",
"gaLocation": "https://core.lytics.insomnia.rest",
2021-02-26 19:57:19 +00:00
"segmentWriteKeys": {
"development": "rTOCSvGV23cHGJyb3HI9EUQDNA6ar7ay",
"production": "4l7QUfACrIcqvC913hiIwAA2BDYP2OJ1"
2021-02-26 19:57:19 +00:00
},
2020-04-26 20:33:39 +00:00
"plugins": [
"insomnia-plugin-base64",
"insomnia-plugin-hash",
"insomnia-plugin-file",
"insomnia-plugin-now",
"insomnia-plugin-uuid",
"insomnia-plugin-prompt",
"insomnia-plugin-request",
"insomnia-plugin-response",
"insomnia-plugin-jsonpath",
"insomnia-plugin-cookie-jar",
"insomnia-plugin-core-themes",
"insomnia-plugin-kong-bundle"
2020-04-26 20:33:39 +00:00
]
}