Skip to content

Commit b65b255

Browse files
committed
version 0.6.0
1 parent 9fb2f07 commit b65b255

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ These are the basic steps for building your first PEB-based application:
5050

5151
* **4.** Connect your Perl scripts to your local HTML page using [one of the three possible methods](#perl-scripts-api).
5252

53-
PEB is created to work from any folder without installation and all your local HTML files and Perl scripts should be located in the ``{PEB_binary_directory}/resources/app`` directory.
53+
PEB is created to work from any folder without installation and all your local HTML files and Perl scripts should be located in the ``{PEB_binary_directory}/resources/app`` folder.
5454

5555
## Design Objectives
56-
* **1. Fast, easy and beautiful graphical user interface for Perl 5 desktop applications**
57-
* **2. Zero installation**
56+
* **1. Easy and beautiful graphical user interface for Perl 5 desktop applications**
57+
* **2. Fast, zero-installation software**
5858
* **3. Cross-platform availability**
5959
* **4. Secure serverless solution**
6060
* **5. Maximal reuse of existing web technologies and standards**
@@ -140,7 +140,7 @@ Perl Distribution Compactor should be started from the directory of the browser
140140
Perl Distribution Compactor depends on [Module::ScanDeps](https://metacpan.org/pod/Module::ScanDeps) and [File::Copy::Recursive](https://metacpan.org/pod/File::Copy::Recursive) CPAN modules, which are included in the ``{PEB_binary_directory}/sdk/lib`` folder.
141141

142142
## Perl Scripts API
143-
Every Perl script run by PEB is called by clicking a link or submitting a form to a pseudo filename composed from the name of the JavaScript object with the settings of the Perl script and a ``.settings`` extension.
143+
Every Perl script run by PEB is called by clicking a link or submitting a form to a pseudo filename composed of the name of the JavaScript object with the settings of the Perl script and a ``.settings`` extension.
144144

145145
A minimal example of a Perl script settings object:
146146

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ int main(int argc, char **argv)
8787
// ==============================
8888
// Application version:
8989
// ==============================
90-
application.setApplicationVersion("0.5.0");
90+
application.setApplicationVersion("0.6.0");
9191

9292
// ==============================
9393
// Basic program information:

src/resources/peb.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ IDI_ICON1 ICON DISCARDABLE "icon/camel.ico"
33
# include <winver.h>
44

55
VS_VERSION_INFO VERSIONINFO
6-
FILEVERSION 0,5,0,0
7-
PRODUCTVERSION 0,5,0,0
6+
FILEVERSION 0,6,0,0
7+
PRODUCTVERSION 0,6,0,0
88
FILEFLAGSMASK 0x3fL
99
#ifdef _DEBUG
1010
FILEFLAGS VS_FF_DEBUG
@@ -21,7 +21,7 @@ VS_VERSION_INFO VERSIONINFO
2121
BEGIN
2222
VALUE "CompanyName", "PEB Dev Team\0"
2323
VALUE "FileDescription", "Perl Executing Browser\0"
24-
VALUE "FileVersion", "0.5.0.0\0"
24+
VALUE "FileVersion", "0.6.0.0\0"
2525
VALUE "LegalCopyright", "LGPL v.3\0"
2626
VALUE "OriginalFilename", "peb.exe\0"
2727
VALUE "ProductName", "Perl Executing Browser\0"

0 commit comments

Comments
 (0)