Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
hperrin committed Nov 24, 2018
1 parent bd90df5 commit be7dd51
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PNotify is a vanilla JavaScript notification library. PNotify can provide [deskt
<h1>Demos</h1>

* http://sciactive.com/pnotify/ for the latest release (v3)
* https://sciactive.github.io/pnotify/ for what's in development (v4-alpha)
* https://sciactive.github.io/pnotify/ for what's in development (v4-beta)

<h1>Table of Contents</h1>

Expand Down Expand Up @@ -51,9 +51,9 @@ PNotify is a vanilla JavaScript notification library. PNotify can provide [deskt

# Whoa there!

Unless you're an alpha tester, **none of this README applies to you!** You want to check out the **[README on the master branch](https://github.com/sciactive/pnotify/blob/master/README.md)**.
Unless you're a beta tester, **none of this README applies to you!** You want to check out the **[README on the master branch](https://github.com/sciactive/pnotify/blob/master/README.md)**.

This README is for **PNotify 4**. v4 is only in alpha stage, but it's got some huge changes:
This README is for **PNotify 4**. v4 is in beta stage, but it's got some huge changes:

* **jQuery is no longer required.** v4 doesn't require any libraries, actually.
* It's built using [Svelte](http://svelte.technology), which means it compiles down to vanilla JS.
Expand All @@ -65,6 +65,8 @@ This README is for **PNotify 4**. v4 is only in alpha stage, but it's got some h
* NonBlock module spun off into its own project, [NonBlock.js](https://github.com/sciactive/nonblockjs).
* There is a Compat module available to allow you to run PNotify 3 code with PNotify 4.

It should be safe to use in production code, but please report any issues you run into.

## Running PNotify 3 Code with the Compat Module

You can use `PNotifyCompat` instead of `PNotify` in order to run PNotify 3 code. Check out `demo/compat-*.html` for more examples.
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
<section class="container page-banner">
<div>
<h1>PNotify</h1>
<h3>4-<abbr title="you can use it, if you're daring">alpha</abbr></h3>
<h3>4-<abbr title="it should be safe to use, but please report any problems">beta</abbr></h3>
<p id="description">Beautiful <a href="demo/nodependencies.html" target="_blank">dependency free</a> notifications.</p>
</div>
<div>
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pnotify",
"version": "4.0.0-alpha.4",
"version": "4.0.0-beta.1",
"description": "Beautiful dependency free notifications.",
"keywords": [
"notice",
Expand Down
2 changes: 1 addition & 1 deletion src/PNotify.html
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ <h4 ref:titleContainer class="ui-pnotify-title {_styles.title ? _styles.title :
// Add static properties to the PNotify object.
PNotify = Component;

PNotify.VERSION = '4.0.0-alpha.3';
PNotify.VERSION = '4.0.0-beta.1';

PNotify.defaultStack = {
dir1: 'down',
Expand Down

0 comments on commit be7dd51

Please sign in to comment.