taskwarrior-web 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,9 @@
1
+ ## v0.0.4 (5/9/11)
2
+
3
+ * Quick bugfix to remove checkboxes from project page. Race conditions prevent
4
+ the IDs from actually being correct, so the wrong task would be marked as
5
+ done.
6
+
1
7
  ## v0.0.3 (5/9/11)
2
8
 
3
9
  * Fixed floating issue in FF4 on /projects page
@@ -1,3 +1,3 @@
1
1
  module TaskwarriorWeb
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -3,7 +3,6 @@
3
3
  <table>
4
4
  <thead>
5
5
  <tr>
6
- <th></th>
7
6
  <th>Description</th>
8
7
  <th>Due</th>
9
8
  <th>Tags</th>
@@ -14,7 +13,6 @@
14
13
  <% @tasks.each do |task| %>
15
14
  <% if task.status == 'pending' %>
16
15
  <tr class="<%= colorize_date(task.due) %>">
17
- <td><input type="checkbox" <%= 'checked="checked" ' if task.status == 'completed' %> class="<%= task.status %>" data-task="<%= task.id %>" /></td>
18
16
  <td><%= task.description %></td>
19
17
  <td><%= format_date(task.due) unless task.due.nil? %></td>
20
18
  <td><%= task.tags.join(', ') unless task.tags.nil? %></td>
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: taskwarrior-web
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.3
5
+ version: 0.0.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jake Bell