Cross-platform HTML5 NotePost client, for use with NW.js on the desktop and Cordova on mobile.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
Iet uz failu
Skylar Ittner ed795e457e Add README.md pirms 5 gadiem
nbproject Remove a thing pirms 5 gadiem
res/android Barebones app with basic note viewing support pirms 5 gadiem
www Adjust star background color+size, remove 1st paragraph top margin pirms 5 gadiem
.gitignore Nevermind, don't use Babel pirms 5 gadiem
.npmignore Barebones app with basic note viewing support pirms 5 gadiem
LICENSE.md Add LICENSE.md pirms 5 gadiem
README.md Add README.md pirms 5 gadiem
config.xml Use Babel to convert ES6 classes for older Android devices pirms 5 gadiem
index.js Add index.js for NW.js app pirms 5 gadiem
licenses.txt Add cordova-plugin-inappbrowser pirms 5 gadiem
logo.png Barebones app with basic note viewing support pirms 5 gadiem
package.json Add cordova-plugin-inappbrowser pirms 5 gadiem
removebloat.sh chmod +x pirms 5 gadiem
yarn.lock Use Babel to convert ES6 classes for older Android devices pirms 5 gadiem
yarninstall.sh Barebones app with basic note viewing support pirms 5 gadiem

README.md

NotePost App

This is a client app for NotePost. It has some offline capabilities and can be built for most platforms by using Apache Cordova for mobile devices or NW.js for PCs.

Platform Support

Tested and should work on:

  • Android 5+ (up-to-date WebView implementation required)
  • Linux (amd64 and i386)

Not tested but should work on:

  • Raspberry Pi (using a custom build of NW.js like this one)
  • Windows
  • MacOS (we don't currently offer Mac builds, see below)

There are no official builds for Mac for a few reasons: we don't own any Mac computers; Mac builds are about 4x the size of the other builds; and the best Mac build we could get working on a Linux build server was a ZIP file. If you want official Mac builds, you'll need to write a working Jenkins build script.

If you want an iOS build, donate $100 for an Apple Developer account. The framework this app uses has an iOS stylesheet, so it'll even look native.

Building for NW.js

Since this is a webapp, there isn't really a build process.

  1. Install Yarn, and run ./yarninstall.sh to grab dependencies.
  2. Get NW.js and unpack it into a folder (we'll use ~/nw.js).
  3. Move to the www folder in this repository and run ~/nw.js/nw .
  4. The process is basically the same for other OSes, just use the appropriate version of NW.js.

Building for Cordova/Android

This assumes you have Cordova and a working Android SDK installed.

  1. Install Yarn, and run ./yarninstall.sh to grab dependencies.
  2. Run ./removebloat.sh to cut the APK size in half.
  3. Run cordova platform add android.
  4. Run cordova build android --release.