summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-05-15 16:41:27 -0300
committerTomás Touceda <chiiph@leap.se>2013-05-15 16:41:27 -0300
commit602201a6fdd4b52a61f0b2a7ab25202c6cc1abb5 (patch)
treeec96871864e8fef3f5042cfb34d966b3da3899e0
parent8781a893aeaa62286633021e9d3eb8502bd129ee (diff)
Add CHANGELOG and fold in changes files0.2.1
-rw-r--r--.gitignore1
-rw-r--r--CHANGELOG39
-rw-r--r--changes/bug_2059_deselect-remember1
-rw-r--r--changes/bug_2061_wizard-text-improvements6
-rw-r--r--changes/bug_2114_fixed-traffic-indicators1
-rw-r--r--changes/bug_systray_behavior2
-rw-r--r--changes/feature_2053_sanitize-config1
-rw-r--r--changes/feature_2060_single-instance-app2
-rw-r--r--changes/feature_2130-dark-eip-icons-osx1
-rw-r--r--changes/feature_2164_config-split1
-rw-r--r--changes/feature_add_vpn_state1
-rw-r--r--changes/feature_emit_events2
-rw-r--r--changes/feature_osx-eip-rewrite2
-rw-r--r--changes/feature_rewrite3
-rw-r--r--changes/feature_save-token1
-rw-r--r--changes/feature_split-common2
-rw-r--r--changes/feature_standalone2
-rw-r--r--changes/feature_support-requests1
-rw-r--r--changes/feature_test-auth1
-rw-r--r--changes/feature_update-docs2
-rw-r--r--changes/feature_update_manager1
-rw-r--r--changes/feature_windows1
-rw-r--r--changes/feature_windows_tap1
23 files changed, 40 insertions, 35 deletions
diff --git a/.gitignore b/.gitignore
index 5eacabb9..01ab9bc0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,3 +30,4 @@ pkg/osx/build
MANIFEST
_trial_temp*
config/*
+CHANGELOG~
diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 00000000..970978b0
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,39 @@
+0.2.1 May 15:
+ o Rewrite most of the client based on the insight gained so far.
+ o Deselecting the remember checkbox makes the app not populate
+ user/password values on the login widget. Closes #2059
+ o Rewording of setup steps in wizard, to make them more meaningful
+ to the non-technical user. Closes #2061
+ o Fix typo in wizard.
+ o Fix multiple drawing of services if going back.
+ o Make registration errors show in red.
+ o Add a warning if EIP service needs admin password. Addresses part
+ of #2062
+ o Make traffic indicators display fixed precision. Closes #2114
+ o Do not hide the application if the user right clicked the system
+ tray icon.
+ o Sanitize network-fetched content that is used to build openvpn
+ command.
+ o Avoids multiple instances of leap-client. Each new one just raises
+ the existing instance and quits.
+ o Use dark eip icons os osx. Closes #2130
+ o Moves BaseConfig to leap.common.config. Closes #2164
+ o Add handling for ASSIGN_IP state from OpenVPN in the mainwindow.
+ o Emit events notifying of the session_id and uid after
+ authentication so other services can make use of it. Closes #1957
+ o Working packaging workflow with rewritten client, using
+ pyinstaller and platypus.
+ o Remove network checks temporarily until we find a good way of
+ doing it, and a good way to deal with them.
+ o Saves the token to allow token authenticated queries.
+ o Turn "leap" into namespace package, move common files to
+ leap_common package that can be shared by other LEAP projects.
+ o Support standalone configurations for distribution in thumbdrives
+ and the like.
+ o Add support for requests < 1.0.0
+ o Tests infrastructure, and tests for crypto/srpauth and crypto/srpregister.
+ o Documentation updated for 0.2.1 release.
+ o Docstrings style changed to fit sphinx autodoc format.
+ o Add a simple UI to notify of pending updates.
+ o Add Windows support.
+ o Try to install TAP driver on Windows if no tap device is preset. \ No newline at end of file
diff --git a/changes/bug_2059_deselect-remember b/changes/bug_2059_deselect-remember
deleted file mode 100644
index 3c5f61bc..00000000
--- a/changes/bug_2059_deselect-remember
+++ /dev/null
@@ -1 +0,0 @@
- values on the login widget. Closes: #2059
diff --git a/changes/bug_2061_wizard-text-improvements b/changes/bug_2061_wizard-text-improvements
deleted file mode 100644
index 073a184f..00000000
--- a/changes/bug_2061_wizard-text-improvements
+++ /dev/null
@@ -1,6 +0,0 @@
- o Rewording of setup steps in wizard, to make them more meaningful to the
- non-technical user. Closes: #2061
- o Fix typo in wizard
- o Fix multiple drawing of services if going back
- o Make registration errors show in red
- o Add a warning if EIP service needs admin password. Addresses part of #2062
diff --git a/changes/bug_2114_fixed-traffic-indicators b/changes/bug_2114_fixed-traffic-indicators
deleted file mode 100644
index 6c91f35d..00000000
--- a/changes/bug_2114_fixed-traffic-indicators
+++ /dev/null
@@ -1 +0,0 @@
- o Make traffic indicators display fixed precision. Closes: #2114
diff --git a/changes/bug_systray_behavior b/changes/bug_systray_behavior
deleted file mode 100644
index 28b4caa0..00000000
--- a/changes/bug_systray_behavior
+++ /dev/null
@@ -1,2 +0,0 @@
- o Do not hide the application if the user right clicked the system
- tray icon. \ No newline at end of file
diff --git a/changes/feature_2053_sanitize-config b/changes/feature_2053_sanitize-config
deleted file mode 100644
index 12bd7541..00000000
--- a/changes/feature_2053_sanitize-config
+++ /dev/null
@@ -1 +0,0 @@
- o Sanitize network-fetched content that is used to build openvpn command
diff --git a/changes/feature_2060_single-instance-app b/changes/feature_2060_single-instance-app
deleted file mode 100644
index eeab3f2c..00000000
--- a/changes/feature_2060_single-instance-app
+++ /dev/null
@@ -1,2 +0,0 @@
- o Avoids multiple instances of leap-client. Each new one just raises
- the existing instance and quits.
diff --git a/changes/feature_2130-dark-eip-icons-osx b/changes/feature_2130-dark-eip-icons-osx
deleted file mode 100644
index b53e6f39..00000000
--- a/changes/feature_2130-dark-eip-icons-osx
+++ /dev/null
@@ -1 +0,0 @@
- o Use dark eip icons os osx. Closes:#2130
diff --git a/changes/feature_2164_config-split b/changes/feature_2164_config-split
deleted file mode 100644
index 6fae00de..00000000
--- a/changes/feature_2164_config-split
+++ /dev/null
@@ -1 +0,0 @@
- o Moves BaseConfig to leap.common.config. Closes:#2164
diff --git a/changes/feature_add_vpn_state b/changes/feature_add_vpn_state
deleted file mode 100644
index 8a358e30..00000000
--- a/changes/feature_add_vpn_state
+++ /dev/null
@@ -1 +0,0 @@
- o Add handling for ASSIGN_IP state from OpenVPN in the mainwindow. \ No newline at end of file
diff --git a/changes/feature_emit_events b/changes/feature_emit_events
deleted file mode 100644
index 7abfc667..00000000
--- a/changes/feature_emit_events
+++ /dev/null
@@ -1,2 +0,0 @@
- o Emit events notifying of the session_id and uid after
- authentication so other services can make use of it. Closes #1957 \ No newline at end of file
diff --git a/changes/feature_osx-eip-rewrite b/changes/feature_osx-eip-rewrite
deleted file mode 100644
index b47b76a9..00000000
--- a/changes/feature_osx-eip-rewrite
+++ /dev/null
@@ -1,2 +0,0 @@
- o Working packaging workflow with rewritten client, using pyinstaller
- and platypus.
diff --git a/changes/feature_rewrite b/changes/feature_rewrite
deleted file mode 100644
index 94ab6634..00000000
--- a/changes/feature_rewrite
+++ /dev/null
@@ -1,3 +0,0 @@
- o Rewrite most of the client based on the insight gained so far.
- o Remove network checks temporarily until we find a good way of
- doing it, and a good way to deal with them. \ No newline at end of file
diff --git a/changes/feature_save-token b/changes/feature_save-token
deleted file mode 100644
index dc347310..00000000
--- a/changes/feature_save-token
+++ /dev/null
@@ -1 +0,0 @@
- o Saves the token to allow token authenticated queries. \ No newline at end of file
diff --git a/changes/feature_split-common b/changes/feature_split-common
deleted file mode 100644
index 5ef409af..00000000
--- a/changes/feature_split-common
+++ /dev/null
@@ -1,2 +0,0 @@
- o Turn "leap" into namespace package, move common files to leap_common package
- that can be shared by other LEAP projects.
diff --git a/changes/feature_standalone b/changes/feature_standalone
deleted file mode 100644
index 89ea1167..00000000
--- a/changes/feature_standalone
+++ /dev/null
@@ -1,2 +0,0 @@
- o Support standalone configurations for distribution in thumbdrives
- and the like. \ No newline at end of file
diff --git a/changes/feature_support-requests b/changes/feature_support-requests
deleted file mode 100644
index 38b9ece5..00000000
--- a/changes/feature_support-requests
+++ /dev/null
@@ -1 +0,0 @@
- o Add support for requests < 1.0.0 \ No newline at end of file
diff --git a/changes/feature_test-auth b/changes/feature_test-auth
deleted file mode 100644
index 81ac7b7c..00000000
--- a/changes/feature_test-auth
+++ /dev/null
@@ -1 +0,0 @@
- o Tests infrastructure, and tests for crypto/srpauth and crypto/srpregister
diff --git a/changes/feature_update-docs b/changes/feature_update-docs
deleted file mode 100644
index 633b6dcb..00000000
--- a/changes/feature_update-docs
+++ /dev/null
@@ -1,2 +0,0 @@
- o Documentation updated for 0.2.1 release
- o Docstrings style changed to fit sphinx autodoc format
diff --git a/changes/feature_update_manager b/changes/feature_update_manager
deleted file mode 100644
index 4bd25f7b..00000000
--- a/changes/feature_update_manager
+++ /dev/null
@@ -1 +0,0 @@
- o Add a simple UI to notify of pending updates.
diff --git a/changes/feature_windows b/changes/feature_windows
deleted file mode 100644
index f302173b..00000000
--- a/changes/feature_windows
+++ /dev/null
@@ -1 +0,0 @@
- o Add Windows support. \ No newline at end of file
diff --git a/changes/feature_windows_tap b/changes/feature_windows_tap
deleted file mode 100644
index 1d5df316..00000000
--- a/changes/feature_windows_tap
+++ /dev/null
@@ -1 +0,0 @@
- o Try to install TAP driver on Windows if no tap device is preset. \ No newline at end of file