Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ambrop72/badvpn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmbroz Bizjak <ambrop7@gmail.com>2015-04-09 13:31:55 +0300
committerAmbroz Bizjak <ambrop7@gmail.com>2015-04-09 13:31:55 +0300
commit752c6b492bc6866e8af8313a6e348d5e0370fe1f (patch)
tree472641372717ba8595b66a55c05474f476460be6
parent92a2fc831bc5d1293c0d07c4afae055470ebc7a2 (diff)
version 1.999.1301.999.130
-rw-r--r--ChangeLog76
-rw-r--r--misc/version.h2
2 files changed, 77 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4c4b96b..f730a62 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,79 @@
+Version 1.999.130:
+
+- Fix TUN/TAP operation with Linux kernel 3.19. See: https://bugzilla.kernel.org/show_bug.cgi?id=96381
+
+- ncd: modules/daemon: Implement custom retry time.
+
+- ncd: modules/daemon: Fix the "daemon crashed" log message to include module context.
+
+- ncd: modules: arithmetic: Don't fail immediately on arithmetic errors, expose their occurrence.
+
+- ncd: Add clock_get_ms function.
+
+- ncd: Implement a simple checksum function as used in the Sphereo blue tooth protocol.
+
+- ncd: socket: Implement support for opening serial ports.
+
+- ncd: Implement struct_decode.
+
+- ncd: Implement struct_encode function.
+
+- ncd: sys.evdev: Provide event code strings for EV_SYN if available.
+
+- ncd: modules: blocker: Implement initial_state argument.
+
+- ncd: modules: blocker: Expose the up-state as a variable.
+
+- ncd: Implement Do-Interrupt.
+
+- ncd: Implement Do.
+
+- ncd: Implement lazy evaluation in If clause.
+
+- ncd: Implement ifel function to support future lazy If.
+
+- ncd: Optimize value::append().
+
+- ncd: Implement backtrack_point::rgo.
+
+- ncd: modules: explode: Pass through external strings (avoid copy).
+
+- ncd: modules: explode: Implement compiling search strings.
+
+- ncd: modules: parse: Implement parse_hex_number.
+
+- ncd: Implement caret syntax sugar. ^a.b.c = {"a", "b", "c"}
+
+- ncd: Fix bugs with bad expectations of null-terminated strings.
+
+- ncd: Implement object reference infrastructure and objref module.
+
+- ncd: Remove ComposedString type along with the buffer module.
+
+- ncd: Implement Block syntax as syntax-sugar around inline_code().
+
+- ncd: modules: call: Implement inline_code calls.
+
+- ncd: modules: call: Fix bug in call_with_caller_target deinit.
+
+- ncd: modules: socket: close: Fix completion order vs closing.
+
+- ncd: Fix a bug that caused a bad assertion failure in file_write().
+
+- ncd: modules: socket: add read() eof variable
+
+- ncd: modules: socket: Implement _caller in client process.
+
+- ncd: Add --signal-exit-code option.
+
+- ncd: Implement syntax sugar @something = "something".
+
+- ncd: Fix crash with num_multiply(..., "0").
+
+- ncd: Infrastructure for built-in functions and implementation of many such functions.
+
+- ncd: Fix bad assertion regarding map values.
+
Version 1.999.129:
- ncd: modules: file_open: Fix typo in assertion.
diff --git a/misc/version.h b/misc/version.h
index a90523f..1079ab0 100644
--- a/misc/version.h
+++ b/misc/version.h
@@ -35,7 +35,7 @@
#define BADVPN_MISC_VERSION_H
#define GLOBAL_PRODUCT_NAME "BadVPN"
-#define GLOBAL_VERSION "1.999.129"
+#define GLOBAL_VERSION "1.999.130"
#define GLOBAL_COPYRIGHT_NOTICE "Copyright (C) 2010 Ambroz Bizjak <ambrop7@gmail.com>"
#endif