Skip to content

Commit

Permalink
Update version to 0.1.7 RC (SNAPSHOT)
Browse files Browse the repository at this point in the history
  • Loading branch information
GhaziTriki committed Jul 20, 2018
1 parent fddc5a3 commit 8a857e5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
The official AlivePDF repository has now moved here.

AlivePDF is a client side AS3 PDF generation library for Adobe Flash, Flex and AIR

## Compile
`gradle compile`
6 changes: 3 additions & 3 deletions alivepdf/src/org/alivepdf/pdf/PDF.as
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* This library lets you generate PDF files with the Adobe Flash Player 9 and 10.
* AlivePDF contains some code from the FPDF PHP library by Olivier Plathey (http://www.fpdf.org/)
* Core Team : Thibault Imbert, Mark Lynch, Alexandre Pires, Marc Hugues
* @version 0.1.6 current release
* @version 0.1.7 RC current release
* @url http://alivepdf.bytearray.org
*/

Expand Down Expand Up @@ -228,7 +228,7 @@ package org.alivepdf.pdf
{

protected static const PDF_VERSION:String = '1.3';
protected static const ALIVEPDF_VERSION:String = '0.1.6';
protected static const ALIVEPDF_VERSION:String = '0.1.7 RC';
protected const I1000:int = 1000;

protected static const STATE_0:int = 0;
Expand Down Expand Up @@ -2876,7 +2876,7 @@ package org.alivepdf.pdf

/**
* Lets you set a specific font.
* Note : Since release 0.1.6, you do not need to call the addFont method anymore. It will be called automatically internally if needed.
* Note : Since release 0.1.7 RC, you do not need to call the addFont method anymore. It will be called automatically internally if needed.
*
* @param A font, can be a core font (org.alivepdf.fonts.CoreFont), or an embedded font (org.alivepdf.fonts.EmbeddedFont)
* @param size Any font size
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ buildscript {
mavenCentral()
}
dependencies {
classpath group: 'org.gradlefx', name: 'gradlefx', version: '1.4.0'
classpath group: 'org.gradlefx', name: 'gradlefx', version: '1.5.0'
}
}

apply plugin: 'gradlefx'
apply plugin: 'flashbuilder'

type = 'swc'
version = '0.1.6'
version = '0.1.7-SNAPSHOT'

srcDirs = ['alivepdf/src']

Expand Down

0 comments on commit 8a857e5

Please sign in to comment.