npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grunt-phonegapsplash

v0.5.2

Published

Create splashscreen from a PNG.

Downloads

47

Readme

grunt-phonegapsplash

Available on NPM

Build Status Dependencies status Dev dependencies status Built with Grunt

Create PhoneGap splashscreens from a single PNG file.

As of 0.3.X, Cordova / PhoneGap have changed their directory and naming conventions so that it fits better the targeted platforms. This plugin is adapted to the new file structure to ease integration. Check former release 0.1.X if you are still on Cordova / PhoneGap 0.2.X releases.

Note on resolutions: See App Splash Screen Sizes.

Build flow

In bold, the chart represents the user provided options. Normal texts are the generated sub file paths.

Basic workflow

  1. Design your splashscreen using the highest resolution in Inkscape (2048x2048). A canevas is provided under the doc directory.
  2. Ensure that the splashscreen is visible in portrait and in landscape mode. The provided canevas has layers that display the portrait and landscape limits for each phones. Canevas
  3. Disable the layers that you don't want to see. Management of layers is accessed via is SHIFT+CTRL+L.
  4. Adjust your design so that it fits all screens resolutions (i.e. your design is contained within your chosen gray limits).
  5. Export your SVG as a PNG using SHIFT+CTRL+E.
  6. Use Grunt and this plugin to produce all your required PhoneGap splashcreens.

Getting Started

GraphicsMagick

This plugin requires GraphicsMagick.

If you are on OSX, use HomeBrew:

brew install graphicsmagick

If you are on Ubuntu:

sudo apt-get install graphicsmagick

Grunt

This plugin requires Grunt >=1.0.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-phonegapsplash --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-phonegapsplash');

The "phonegapsplash" task

Overview

In your project's Gruntfile, add a section named phonegapsplash to the data object passed into grunt.initConfig().

grunt.initConfig({
  phonegapsplash: {
    your_target: {
      // Source file: the PNG.
      src: 'app/res/splash.png',
      // Destination directory where are stored all splashscreens
      dest: 'www/',
      // Optionnal, it produces splashscreen and layout for all phonegap targets if not specified
      options: {
        // A list of layouts, it produces landscape and portrait if not specified
        layouts: ['landscape'],
        // A  list of phone targets, it produces android, bada, blackberry, ios, webos, windows-phone if not specified
        profiles: ['windows-phone', 'android']
      }
    },
  },
});

Options

options.prjName

Type: String Default value: Test

Specify your project's name. It is mostly used for iOS as the platforms/ios sub directory. PhoneGap/Cordova iOS target uses it when building the application.

options.layouts

Type: Array of String Default value: ['landscape', 'portrait', 'none']

Specify the layout mode that you target. The full list is provided as default with the following meanings:

  • landscape: Splashscreen displayed in landscape mode.
  • portrait: Splashscreen displayed in portrait mode.
  • none: Splascreen for squared screens.

options.profiles

Type: Array of String Default value: ['android', 'bada', 'blackberry', 'ios', 'webos', 'windows-phone']

Specify the stores that you target. The full list is provided as default. The default target produce a single icon.png at the root of the specified destination directory with the following meanings:

  • android: Splashcreen for Android phones and tablets.
  • bada: Splashcreens for Bada and Bada-WAC phones.
  • blackberry: Splashcreens for Blackberry phones.
  • ios: Splascreens for iPod touch, iPhone and iPad in normal and retina resolutions.
  • webos: Splashcreens for WebOS (Palm) phones.
  • windows-phone: Splashcreens for Windows phones (7 and 8).

NOTEIf an unused target is provided, nothing happens. This favors the re-use of already defined targeted OSes (stores or platforms) as find under the grunt-svg2storeicons.

Usage Examples

Default Options

In this example, the default options are used. All splashcreens for all layout and all OSes are being produced. The src contains the filepath to the original PNG splashscreen. The dest contains the directory in which the splashscreens are produced.

grunt.initConfig({
  phonegapsplash: {
    all_phones: {
      src: 'app/res/splash.png',
      dest: 'www/'
    }
  }
});

Custom Options

In this example, custom options are used to create the unique splashscreen for blackberry.

grunt.initConfig({
  svg2storeicons: {
    blackberry_only: {
      src: 'app/res/splash.png',
      dest: 'www/',
      options: {
        layouts: ['landscape']
        profiles: ['blackberry']
      }
    }
  }
});

Contributing

The main plugin is written and its tests are written in CoffeeScript. In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt. Feel free to contribute.

Release History

  • 0.5.2: 05/23/2016: iPad & iPad retina resolutions updated: @ashleybrener :clap:
  • 0.5.1: 05/23/2016: Grunt 1.0.0 and Cordova iOS4 compatibility: @oshbuckley182 & @vladikoff :clap:
  • 0.4.X: 01/16/2015: iPad landscape resolution: @Melmer :clap:
  • 0.3.X: 01/09/2015: iPhone6 and iPhone6+ resolutions: @krisrandall :clap:
  • 0.2.1: 05/02/2014: Version bump: @PEM--
  • 0.2.0: 12/29/2013: Compatibility with PhoneGap/Cordova 0.3.X: @PEM--
  • 0.1.1: 12/29/2013: Add 'cordova' as package's keywords: @PEM--
  • 0.1.0: 12/28/2013: Initial commit: @PEM--

Known issue

  • N/A.