Skip to content
This repository has been archived by the owner on Jun 20, 2021. It is now read-only.

Commit

Permalink
update version from 0.4.0 to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Thecarisma committed Jul 7, 2019
1 parent 619789c commit e62d9b1
Show file tree
Hide file tree
Showing 22 changed files with 41 additions and 36 deletions.
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 16,7 @@ ___

___

[![Download simple-lang](https://a.fsdn.com/con/app/sf-download-button)](https://sourceforge.net/projects/simple-lang/files/s0.4.0/)
[![Download simple-lang](https://a.fsdn.com/con/app/sf-download-button)](https://sourceforge.net/projects/simple-lang/files/s0.4.1/)

## Building from source

Expand Down
7 changes: 6 additions & 1 deletion build/Android-Termux-Build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ clear

exec_type=""
build_arc="x64"
ver=0.4.0
ver=0.4.1
keep_dist="false"
version=s"$ver"
simple_debug_version=$version-debug
Expand Down Expand Up @@ -393,9 393,14 @@ configure() {
pkg update && pkg upgrade
pkg install make
pkg install clang
pkg install pkg-config
pkg install libcurl-dev
pkg install openssl-dev
pkg install libsqlite-dev
pkg install libx11-dev
pkg install libxft-dev
pkg install libxcursor-dev
pkg install libxinerama-dev
}

help() {
Expand Down
4 changes: 2 additions & 2 deletions build/Linux-Build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ clear

exec_type=""
build_arc="x64"
ver=0.4.0
ver=0.4.1
keep_dist="false"
version=s"$ver"
simple_debug_version=$version-debug
Expand Down Expand Up @@ -612,7 612,7 @@ finalize_installation() {
echo " Minifying Source code for modules "

echo "======================================="
minifier -s /var/lib/simple/s0.4.0/modules -y
minifier -s /var/lib/simple/s0.4.1/modules -y

header build "testing installtion > simple"
# echo treat_first_calls_file()
Expand Down
4 changes: 2 additions & 2 deletions build/Mac-Build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ clear

exec_type=""
build_arc="x86"
ver=0.4.0
ver=0.4.1
keep_dist="false"
version=s"$ver"
simple_debug_version=$version-debug
Expand Down Expand Up @@ -587,7 587,7 @@ finalize_installation() {
echo " Minifying Source code for modules "

echo "======================================="
minifier -s /var/lib/simple/s0.4.0/modules -y
minifier -s /var/lib/simple/s0.4.1/modules -y

header build "testing installtion > simple"
# echo treat_first_calls_file()
Expand Down
6 changes: 3 additions & 3 deletions build/Windows-Build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 5,12 @@ setlocal enabledelayedexpansion

SET EXEC_TYPE=""
SET BUILD_ARC="x86"
SET VER=0.4.0
SET VER=0.4.1
SET THERE_IS_VS="false"
SET KEEP_DIST="false"
SET INSTALLATION_FOLDER=C:\Simple\
SET VERSION=s0.4.0
SET SIMPLE_DEBUG_VERSION=s0.4.0-debug
SET VERSION=s0.4.1
SET SIMPLE_DEBUG_VERSION=s0.4.1-debug
SET FULLTICK_BUILD_ISSUE="<https://github.com/simple-lang/simple/issues/16>"
SET BUILD_TOOL="any"
SET NO_BUILDTOOL="true"
Expand Down
2 changes: 1 addition & 1 deletion environment/suplement/suplement.json
Original file line number Diff line number Diff line change
@@ -1,5 1,5 @@
{
"Version": "0.4.0",
"Version": "0.4.1",
"UpdateJsonAddress": "http://localhost/simple-lang/updater/update.json",
"InstallationDir": "$EXEC_DIR"
}
2 changes: 1 addition & 1 deletion examples/conf.sim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 3,7 @@
project = 'Simple Examples'
copyright = '2018-2019, Azeez Adewale and the Simple Community (MIT)'
author = 'Azeez Adewale'
version = '0.4.0'
version = '0.4.1'

conf_py_dump = '
import simple_lexer
Expand Down
4 changes: 2 additions & 2 deletions examples/more/sqlite_c.sim
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 47,14 @@ query = "

query = "
INSERT INTO Downloads (Name,Type,OS,OS_Code,Arch,Size,Version,Link,Date)
VALUES ('simple0.4.0-windows_i386.exe', 'Installer', 'Windows', 'windows_amd64', 'x64', '12MB', 'simple0.4.0', 'https://sourceforge.net/projects/simple-lang/files/s0.3.36/simple0.3.36-windows_amd64.exe/download', '" date.ToString() "' );
VALUES ('simple0.4.1-windows_i386.exe', 'Installer', 'Windows', 'windows_amd64', 'x64', '12MB', 'simple0.4.1', 'https://sourceforge.net/projects/simple-lang/files/s0.3.36/simple0.3.36-windows_amd64.exe/download', '" date.ToString() "' );
"
#display __sqlite3_exec(db, query)
#display __sqlite3_errmsg(db) nl

query = "
INSERT INTO Downloads (Name,Type,OS,OS_Code,Arch,Size,Version,Link,Date)
VALUES ('simple0.4.0-linux_amd64.deb', 'Installer', 'Linux', 'windows_amd64', 'x86', '12MB', 'simple0.4.0', 'https://sourceforge.net/projects/simple-lang/files/s0.3.36/simple0.3.36-windows_amd64.zip/download', '" date.ToString() "' );
VALUES ('simple0.4.1-linux_amd64.deb', 'Installer', 'Linux', 'windows_amd64', 'x86', '12MB', 'simple0.4.1', 'https://sourceforge.net/projects/simple-lang/files/s0.3.36/simple0.3.36-windows_amd64.zip/download', '" date.ToString() "' );
"
display __sqlite3_exec(db, query)
display __sqlite3_errmsg(db) nl
Expand Down
2 changes: 1 addition & 1 deletion examples/testfiles/test.txt
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@

Hello World
From simple-lang 0.4.0
From simple-lang 0.4.1
Thank You
2 changes: 1 addition & 1 deletion examples/testfiles/update_file.json
Original file line number Diff line number Diff line change
@@ -1,5 1,5 @@
{
"Version": "0.4.0",
"Version": "0.4.1",
"Date Updated": null,
"Update Message": "Hello World this is simple the main thingy",
"Updates": [
Expand Down
2 changes: 1 addition & 1 deletion modules/conf.sim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 3,7 @@
project = 'Simple Modules'
copyright = '2018-2019, Azeez Adewale and the Simple Community (MIT)'
author = 'Azeez Adewale'
version = '0.4.0'
version = '0.4.1'

conf_py_dump = '
import simple_lexer
Expand Down
2 changes: 1 addition & 1 deletion modules/dynamic_modules/makefiles/Makefile-Linux.mk
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 36,7 @@ RM=rm
MAKE=make

# Macros
VERSION=s0.4.0
VERSION=s0.4.1
CND_PLATFORM=Linux
CND_DLIB_EXT=dysim
CND_DISTDIR=../dist
Expand Down
2 changes: 1 addition & 1 deletion modules/dynamic_modules/makefiles/Makefile-Mac.mk
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 36,7 @@ RM=rm
MAKE=make

# Macros
VERSION=s0.4.0
VERSION=s0.4.1
CND_PLATFORM=Linux
CND_DLIB_EXT=dysim
CND_DISTDIR=../dist
Expand Down
2 changes: 1 addition & 1 deletion modules/dynamic_modules/makefiles/Makefile-Windows.mk
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 38,7 @@ RM=rm
CND_PLATFORM=Windows
CND_DLIB_EXT=dysim
CND_DISTDIR=../dist
CLEAN_DEBUGDIR=../../../s0.4.0-debug
CLEAN_DEBUGDIR=../../../s0.4.1-debug
DYNAMIC_MODULEDIR=.modules/dynamic_modules

clean:
Expand Down
12 changes: 6 additions & 6 deletions modules/simple/system/SimpleX.sim
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 67,14 @@ __simpleResDir = null
@Code
#Windows
C:\\Simple\\ #-> the simple directory
.\\s0.4.0\\
.\\s0.4.0\\
.\\s0.4.00\\
.\\s0.4.1\\
.\\s0.4.1\\
.\\s0.4.10\\
#linux
/var/lib/simple/ #-> the simple directory
.\\s0.4.0\\
.\\s0.4.0\\
.\\s0.4.00\\
.\\s0.4.1\\
.\\s0.4.1\\
.\\s0.4.10\\
@EndCode
@return the simple-lang installation directory @DataType String
*/
Expand Down
2 changes: 1 addition & 1 deletion simple/include/simple.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 107,7 @@ must be set through the compiler flag either through makefile or command line */
#include <android/native_activity.h>
#include <android/log.h>
#include <unistd.h>
#define SIMPLE_ANDROID_LOG "simple-lang:0.4.0"
#define SIMPLE_ANDROID_LOG "simple-lang:0.4.1"

/* Make fprintf function custom to allow output in android designated std(s)*/
/* ANDROID_LOG_DEBUG - stdout, ANDROID_LOG_ERROR - stderr */
Expand Down
2 changes: 1 addition & 1 deletion simple/include/simple_misc.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 37,7 @@ typedef struct GCData {
} GCData ;

#define SIMPLE_NAME "simple"
#define SIMPLE_VERSION "0.4.0"
#define SIMPLE_VERSION "0.4.1"
#define PRIMARY_AUTHOR "Azeez Adewale"
#define START_YEAR 2018
#define CURRENT_YEAR 2019
Expand Down
2 changes: 1 addition & 1 deletion simple/include/simple_object.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 22,7 @@
//#define DEBUG_OBJFILE

#define SIMPLE_OBJECT_HEAD_SIZE 11
#define SIMPLE_OBJECT_HEAD "simple0.4.0"
#define SIMPLE_OBJECT_HEAD "simple0.4.1"
#define SIMPLE_OBJECT_KEY "simple"
#define SIMPLE_OBJECT_KEY_SIZE 6

Expand Down
4 changes: 2 additions & 2 deletions simple/makefiles/Makefile-Android-Termux.mk
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 24,13 @@ LDFLAGS= -L ./ -Wl, "-Wl,--no-as-needed"
AR_FLAGS=rcs

# Macros
VER=0.4.0
VER=0.4.1
VERSION=s"$VER"
CND_PLATFORM=
CND_DLIB_EXT=so
CND_BUILDDIR=build
CND_DISTDIR =../dist
CLEAN_DEBUGDIR=../../../s0.4.0-debug
CLEAN_DEBUGDIR=../../../s0.4.1-debug
BINARYDIR=bin
SOURCE_DIR=../sources
INCLUDES_DIR=../include
Expand Down
4 changes: 2 additions & 2 deletions simple/makefiles/Makefile-Linux.mk
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 24,13 @@ LDFLAGS= -L ./ "-Wl,-rpath,./" "-Wl,-rpath,../lib/" "-Wl,-rpath,$(DESTDIR)$(PREF
AR_FLAGS=rcs

# Macros
VER=0.4.0
VER=0.4.1
VERSION=s"$VER"
CND_PLATFORM=
CND_DLIB_EXT=so
CND_BUILDDIR=build
CND_DISTDIR =../dist
CLEAN_DEBUGDIR=../../../s0.4.0-debug
CLEAN_DEBUGDIR=../../../s0.4.1-debug
BINARYDIR=bin
SOURCE_DIR=../sources
INCLUDES_DIR=../include
Expand Down
4 changes: 2 additions & 2 deletions simple/makefiles/Makefile-Mac.mk
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 24,13 @@ LDFLAGS=
AR_FLAGS=rcs

# Macros
VER=0.4.0
VER=0.4.1
VERSION=s"$VER"
CND_PLATFORM=
CND_DLIB_EXT=dylib
CND_BUILDDIR=build
CND_DISTDIR =../dist
CLEAN_DEBUGDIR=../../../s0.4.0-debug
CLEAN_DEBUGDIR=../../../s0.4.1-debug
BINARYDIR=bin
SOURCE_DIR=../sources
INCLUDES_DIR=../include
Expand Down
4 changes: 2 additions & 2 deletions simple/makefiles/Makefile-Windows.mk
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 36,13 @@ CXXFLAGS=
AR_FLAGS=rcs

# Macros
VERSION=s0.4.0
VERSION=s0.4.1
CND_PLATFORM=
CND_DLIB_EXT=dll
CND_DEXE_EXT=exe
CND_BUILDDIR=build
CND_DISTDIR=../dist
CLEAN_DEBUGDIR=../../../s0.4.0-debug
CLEAN_DEBUGDIR=../../../s0.4.1-debug
BINARYDIR=bin

# Object Directory
Expand Down

0 comments on commit e62d9b1

Please sign in to comment.