mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-09 06:23:30 +08:00
* Shfit away from default exports and PropTypes for better TS support * localize strings and expand use of types in WeekView, create new EventOccurence distinct from Event * Remove calendar wrap, use TS enum for view type + consistent prop interface * Bump Typescript to 3.8.3 and improve query / attribute / search typings * Re-use the Autolinker for calendar event descriptions with aggressive phone detection * Clean up WeekView and the editing popover, lots of cruft here * Update ScrollRegion to initialize scrollbar provided by external ref * Expose ScrollRegion’s resizeObserver to clean up tick interval tracking * Simply tickGenerator and move it to a helper * Bump to Electron 8.x for Chrome 75+ CSS features * Bump Handlebars dep to fix annoying npm audit noise * Remove electron-remote from electron-spellchecker * Explicitly add node-gyp, why is this necessary? * Fix lesslint issues * Bump eslint and let it fix 133 issues * Satisfy remaining eslint@2020 errors by hand * Add tsc-watch npm script and fix all TS errors outside calendar * Configure appveyor to publish all the pdb files it gets * Log sync exit codes and signals for easier triage on Windows * Upgrade npm, mark that the build process supports Node 11+ not just Node 11 * Resolve more errors * Upgrade sqlite to be a context-aware native module * Fix: Tab key no longer navigating into contenteditable because tabIndex not inferred * Fix: Bad print styles because Chrome now adds more CSS of it’s own when doctype is missing * Fix: before-navigate is now called after beforeunload
81 lines
2.3 KiB
HTML
81 lines
2.3 KiB
HTML
To get up and running with the api you'll need to follow these steps.
|
|
|
|
1. Once you feel familiar with the endpoints and http responses go ham!!!
|
|
|
|
> [ ID] Interval Transfer Bandwidth Jitter Lost/Total
|
|
> [ 4] 0.00-10.00 sec 11.8 MBytes 9.90 Mbits/sec 0.687 ms 1397/1497 (93%)
|
|
|
|
diff --git a/drivers/video/fbdev/nvidia/nv_local.h b/drivers/video/fbdev/nvidia/nv_local.h
|
|
index 68e508d..2c6baa1 100644
|
|
--- a/drivers/video/fbdev/nvidia/nv_local.h
|
|
+++ b/drivers/video/fbdev/nvidia/nv_local.h
|
|
|
|
This is the correct solution as there is really no imx6sl-fox-p1.dts file.
|
|
|
|
## Support
|
|
|
|
Please visit https://github.com/a/b/issues/new.
|
|
|
|
Please [open an issue](https://github.com/a/b/issues/new) for support.
|
|
|
|
Also see https://nylas.com/cloud/docs#receiving_notifications
|
|
|
|
Also see https://nylas.com/tag#about%20me
|
|
|
|
Also see https://nylas.com/tag#about%20
|
|
|
|
dev.tellform.com/#!/verify/xcFfUbvQL0FG298GsB0nBJGS7QRi7nsWVjS9iSyaeyBCFgUv
|
|
|
|
## Contributing
|
|
If you would like to contribute to the axefax api (which you are encouraged to do) here are the basics.
|
|
|
|
- Ruby version: 2.2.2
|
|
- System dependencies: Rails, AWS, postgres, eb-cli
|
|
- Configuration:
|
|
```bash
|
|
$ git clone https://github.com/a/b.git
|
|
$ bundle install
|
|
```
|
|
- Database intitialization/creation:
|
|
```bash
|
|
$ rake db:reset db:setup db:seed
|
|
```
|
|
- How to run the test suite:
|
|
```bash
|
|
$ rspec spec
|
|
```
|
|
- or alternatively:
|
|
```bash
|
|
$ guard
|
|
```
|
|
- run the server:
|
|
```bash
|
|
$ rails server
|
|
```
|
|
- Git Guidelines:
|
|
- Please create a contributor/feature branch for any changes you make.
|
|
- Be sure to always pull down the latest master branch before pushing.
|
|
- etc...
|
|
- Generating Documentation:
|
|
- This app makes use of the (Apipie Gem)[https://github.com/Apipie/apipie-rails]
|
|
- To Auto/Re-Generate Documentation for API Endpoints based on config/routes.rb
|
|
and the spec suite run...
|
|
```bash
|
|
$ APIPIE_RECORD=params rake spec:controllers
|
|
$ APIPIE_RECORD=examples rake spec:controllers
|
|
```
|
|
- Then to generate static HTML files for production...
|
|
```bash
|
|
$ rake apipie:static
|
|
```
|
|
- Deployment instructions:
|
|
- If the test suite is passing and you've successfully merged to master and pushed up to github...
|
|
```bash
|
|
$ eb deploy
|
|
```
|
|
- Hopefully you won't need to ssh into the remote server to run migrations but if you do...
|
|
```bash
|
|
$ eb ssh
|
|
remote:ec2 ~ $ cd /var/app/current/
|
|
```
|
|
- From here you have access to a limited set of railsy stuffs. But for example rake db:migrate
|