From 8a857e51e7e3889aee0644dae4401309cde84372 Mon Sep 17 00:00:00 2001 From: Ghazi Triki Date: Fri, 20 Jul 2018 16:20:12 +0100 Subject: [PATCH] Update version to 0.1.7 RC (SNAPSHOT) --- README.md | 3 +++ alivepdf/src/org/alivepdf/pdf/PDF.as | 6 +++--- build.gradle | 4 ++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 864e4af..cdcb3d4 100644 --- a/README.md +++ b/README.md @@ -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` diff --git a/alivepdf/src/org/alivepdf/pdf/PDF.as b/alivepdf/src/org/alivepdf/pdf/PDF.as index 5a84c21..6e29b5c 100755 --- a/alivepdf/src/org/alivepdf/pdf/PDF.as +++ b/alivepdf/src/org/alivepdf/pdf/PDF.as @@ -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 */ @@ -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; @@ -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 diff --git a/build.gradle b/build.gradle index 22e4297..03d9573 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenCentral() } dependencies { - classpath group: 'org.gradlefx', name: 'gradlefx', version: '1.4.0' + classpath group: 'org.gradlefx', name: 'gradlefx', version: '1.5.0' } } @@ -12,7 +12,7 @@ apply plugin: 'gradlefx' apply plugin: 'flashbuilder' type = 'swc' -version = '0.1.6' +version = '0.1.7-SNAPSHOT' srcDirs = ['alivepdf/src']