Updated LICENSE, INSTALL; Added README
authorJerome St-Louis <jerome@ecere.com>
Wed, 7 Mar 2012 09:06:00 +0000 (04:06 -0500)
committerJerome St-Louis <jerome@ecere.com>
Wed, 7 Mar 2012 09:06:00 +0000 (04:06 -0500)
INSTALL
LICENSE
README [new file with mode: 0644]
ecere/ecere.epj

diff --git a/INSTALL b/INSTALL
index e9edabc..e17c913 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -1,4 +1,4 @@
-Ecere SDK v0.44 Draft 2 - www.ecere.com
+Ecere SDK v0.44 - www.ecere.com
 
 Linux Installation Notes
 
diff --git a/LICENSE b/LICENSE
index 38aad2b..e2b9b28 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Ecere SDK v0.44 Draft 2 - www.ecere.com
+Ecere SDK v0.44 - www.ecere.com
 
 The Ecere SDK is Free Open Source Software. It is provided with NO WARRANTY 
 expressed or implied to the extent permitted by law.
@@ -12,20 +12,22 @@ commercially, along with the supporting Ecere runtime library(ies):
       - Core eC framework only
    * libEDA.so / EDA.dll
       - Data Access System
+   * libEDASQLite.so / EDASQLite.dll
+      - SQLite driver for EDA
 
-The Ecere SDK is distributed under a revised BSD license:
+The Ecere SDK is distributed under the New BSD license:
 
 ================================================================================
 
-   Copyright (c) 1996-2009, Jerome Jacovella-St-Louis
-   Copyright (c) 2005-2009, Ecere Corporation
+   Copyright (c) 1996-2012, Jerome Jacovella-St-Louis
+   Copyright (c) 2005-2012, Ecere Corporation
 
    All rights reserved.
 
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:
 
-    * Redistributions of source code must retain the above copyright notice, 
+    * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
@@ -50,7 +52,9 @@ The Ecere SDK is distributed under a revised BSD license:
 
 This software makes use of other software components whose licenses may also 
 apply, which are found in their respective source directories (most under
-deps/). Among them: zlib, libpng, libjpeg, giflib, harfbuzz, freetype...
+deps/).
+
+Among them: zlib, libpng, libjpeg, giflib, harfbuzz, freetype, tango icons
 
 The IDE also communicates with GCC for compiling (MinGW on Windows), GDB for 
 debugging, and UPX for optionally compressing executables. Each of these have 
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..ce00e3f
--- /dev/null
+++ b/README
@@ -0,0 +1,55 @@
+The Ecere SDK v0.44 - http://ecere.com
+
+The Ecere SDK is a cross-platform toolkit for building software applications.
+It currently runs on Windows, Linux, and Mac OS X (through X11).
+With the Ecere SDK, you can develop applications once and deploy them on all 
+supported platforms alongside a lightweight runtime environment.
+It introduces eC, an object oriented language derived from and fully compatible
+with C, compromising neither runtime performance nor ease of use.
+A built-in 3D engine supporting both Direct3D and OpenGL is fully integrated.
+
+-----------------------------------------------------------------------------
+
+ * INSTALLATION *
+
+Please refer to the latest instructions at http://ecere.com/wiki/
+
+To build from source, simply type make.
+
+It should build fine on Linux, on Windows with MinGW,
+and on Mac OS X with a bit of luck.
+
+To install, type make install.
+
+Please note that at this time eC and the Ecere SDK only support 32 bit.
+However, you should still be able to use the 32 bit version on a 64 bit machine.
+64-bit support is planned for the future.
+
+ * DOCUMENTATION *
+
+The Ecere Tao of Programming is a Programmer's Guide (still work in progress)
+that will teach you the foundations of eC and Ecere. You will find it under:
+
+On Windows:    %PROGRAMFILES%\Ecere SDK\doc\Ecere Tao of Programming [work in progress].pdf
+On Linux/Unix: /usr/share/doc/tao.pdf
+
+Please refer the samples that come with the SDK:
+
+On Windows they get installed in %APPDATA%\Ecere SDK\Samples
+On Linux/Unix they get installed in /usr/share/ecere/samples/
+You can also find the latest versions on GitHub:
+
+http://github.com/ecere/sdk/tree/master/samples
+
+The Documentor is a tool under development to browse and document the APIs of
+eC modules. You can use it to browse all available classes, methods and properties
+of the Ecere runtime library.
+However, at the moment the tool itself is being improved, and so not much 
+descriptive info has been added yet.
+
+ * COMMUNITY *
+
+Git Repository @ http://github.com/ecere/sdk/  ( git://github.com/ecere/sdk.git )
+Support forums @ http://ecere.com/forums
+Bug tracker    @ http://ecere.com/mantis
+IRC            @ #ecere on irc.freenode.net
index b26ee76..95b1b25 100644 (file)
       }
    ],
    "Description" : "The allmighty Ecere Runtime library.",
-   "License" : "Ecere SDK v0.44 Draft 1 - www.ecere.com
+   "License" : "Ecere SDK v0.44 - www.ecere.com
 
 The Ecere SDK is Free Open Source Software. It is provided with NO WARRANTY 
 expressed or implied to the extent permitted by law.
@@ -1908,13 +1908,15 @@ commercially, along with the supporting Ecere runtime library(ies):
       - Core eC framework only
    * libEDA.so / EDA.dll
       - Data Access System
+   * libEDASQLite.so / EDASQLite.dll
+      - SQLite driver for EDA
 
-The Ecere SDK is distributed under a revised BSD license:
+The Ecere SDK is distributed under the New BSD license:
 
 ================================================================================
 
-   Copyright (c) 1996-2008, Jerome Jacovella-St-Louis
-   Copyright (c) 2005-2008, Ecere Corporation
+   Copyright (c) 1996-2012, Jerome Jacovella-St-Louis
+   Copyright (c) 2005-2012, Ecere Corporation
 
    All rights reserved.
 
@@ -1946,11 +1948,14 @@ The Ecere SDK is distributed under a revised BSD license:
 
 This software makes use of other software components whose licenses may also 
 apply, which are found in their respective source directories (most under
-deps/). Among them: zlib, libpng, libjpeg, giflib, harfbuzz, freetype...
+deps/).
+
+Among them: zlib, libpng, libjpeg, giflib, harfbuzz, freetype, tango icons
 
 The IDE also communicates with GCC for compiling (MinGW on Windows), GDB for 
 debugging, and UPX for optionally compressing executables. Each of these have 
 their own license which can be found in their respective documentation folder 
 if distributed along with the SDK (in the case of the Windows version) or
-from wherever you obtained them."
-}
\ No newline at end of file
+from wherever you obtained them.
+"
+}