backlog 0.36.2 → 0.37.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (250) hide show
  1. data/Gemfile +16 -4
  2. data/Gemfile.lock +130 -0
  3. data/History.txt +17 -0
  4. data/README.txt +0 -2
  5. data/Rakefile +17 -7
  6. data/app/controllers/absences_controller.rb +1 -2
  7. data/app/controllers/application_controller.rb +13 -14
  8. data/app/controllers/application_controller.rb.rails2 +186 -0
  9. data/app/controllers/estimates_controller.rb +1 -1
  10. data/app/controllers/groups_controller.rb +3 -1
  11. data/app/controllers/periods_controller.rb +61 -50
  12. data/app/controllers/{backlogs_controller.rb → projects_controller.rb} +35 -35
  13. data/app/controllers/search_controller.rb +2 -2
  14. data/app/controllers/tasks_controller.rb +11 -11
  15. data/app/controllers/user_controller.rb +6 -4
  16. data/app/controllers/welcome_controller.rb +4 -4
  17. data/app/controllers/work_locks_controller.rb +2 -2
  18. data/app/controllers/works_controller.rb +31 -31
  19. data/app/helpers/application_helper.rb +2 -2
  20. data/app/helpers/application_helper.rb.rails2 +118 -0
  21. data/app/helpers/periods_helper.rb +3 -3
  22. data/app/helpers/{backlogs_helper.rb → projects_helper.rb} +5 -5
  23. data/app/helpers/user_helper.rb +2 -2
  24. data/app/{models → mailers}/user_notify.rb +1 -0
  25. data/app/models/absence.rb +2 -2
  26. data/{lib → app/models}/clock.rb +0 -0
  27. data/app/models/estimate.rb +2 -2
  28. data/app/models/party.rb +1 -2
  29. data/app/models/period.rb +17 -18
  30. data/app/models/{backlog.rb → project.rb} +2 -2
  31. data/app/models/sidebar.rb +2 -2
  32. data/app/models/task.rb +28 -28
  33. data/app/models/user.rb +5 -4
  34. data/app/models/work.rb +29 -23
  35. data/app/models/work_lock_nagger.rb +1 -1
  36. data/app/models/works_report_filter.rb +4 -4
  37. data/app/views/customers/_name_list.rhtml +1 -1
  38. data/app/views/layouts/_headers.rhtml +2 -1
  39. data/app/views/layouts/_left_top.rhtml +32 -29
  40. data/app/views/layouts/_shortcuts.rhtml +15 -9
  41. data/app/views/layouts/_shortcuts_js.rhtml +4 -4
  42. data/app/views/layouts/mwrt002.html.erb +44 -0
  43. data/app/views/periods/_burn_down_chart.rhtml +1 -1
  44. data/app/views/periods/_show_active.rhtml +3 -3
  45. data/app/views/periods/_title.rhtml +1 -1
  46. data/app/views/{backlogs → projects}/_buttons.rhtml +4 -4
  47. data/app/views/projects/_form.rhtml +44 -0
  48. data/app/views/projects/_name_list.rhtml +5 -0
  49. data/app/views/projects/edit.rhtml +14 -0
  50. data/app/views/{backlogs → projects}/finish_task.rjs +0 -0
  51. data/app/views/projects/list.rhtml +16 -0
  52. data/app/views/{backlogs → projects}/move_task_to_period.rjs +0 -0
  53. data/app/views/{backlogs → projects}/new.rhtml +1 -1
  54. data/app/views/{backlogs → projects}/reopen_task.rjs +0 -0
  55. data/app/views/{backlogs → projects}/show.rhtml +6 -6
  56. data/app/views/search/results.rhtml +3 -3
  57. data/app/views/tasks/_backlog_header.rhtml +4 -4
  58. data/app/views/tasks/_completed.rhtml +2 -2
  59. data/app/views/tasks/_form.rhtml +13 -13
  60. data/app/views/tasks/_task.rhtml +10 -10
  61. data/app/views/tasks/edit.rhtml +1 -1
  62. data/app/views/tasks/list.rhtml +3 -3
  63. data/app/views/tasks/list_started.rhtml +4 -4
  64. data/app/views/tasks/start_work.rjs +1 -1
  65. data/app/views/user/login.rhtml +1 -1
  66. data/app/views/user/signup.rhtml +1 -1
  67. data/app/views/user/welcome.rhtml +1 -1
  68. data/app/views/works/_description_list.rhtml +1 -1
  69. data/app/views/works/_form.rhtml +5 -5
  70. data/app/views/works/_new_row.rhtml +8 -8
  71. data/app/views/works/_row.rhtml +1 -1
  72. data/app/views/works/_task_id_list.rhtml +1 -1
  73. data/app/views/works/daily_work_sheet.rhtml +1 -1
  74. data/app/views/works/list.rhtml +5 -5
  75. data/app/views/works/list_excel.rhtml +2 -2
  76. data/app/views/works/timeliste.rhtml +14 -14
  77. data/app/views/works/weekly_work_sheet.rhtml +5 -5
  78. data/app/views/works/weekly_work_sheet_details.rhtml +5 -5
  79. data/backlog.gemspec +44 -0
  80. data/bin/backlog +5 -1
  81. data/config.ru +4 -0
  82. data/config/application.rb +10 -0
  83. data/config/boot.rb +12 -116
  84. data/config/database.yml +3 -6
  85. data/config/database.yml~ +17 -0
  86. data/config/environment.rb +28 -49
  87. data/config/environments/development.rb +24 -20
  88. data/config/environments/development.rb.rails2 +26 -0
  89. data/config/environments/production.rb +26 -22
  90. data/config/environments/test.rb +20 -15
  91. data/config/environments/user_environment.rb +1 -1
  92. data/config/initializers/backtrace_silencers.rb +7 -0
  93. data/config/initializers/inflections.rb +10 -0
  94. data/config/initializers/jdbc.rb +1 -1
  95. data/config/initializers/mime_types.rb +5 -0
  96. data/config/initializers/secret_token.rb +7 -0
  97. data/config/initializers/session_store.rb +8 -0
  98. data/config/locales/en.yml +22 -11
  99. data/config/locales/no.yml +1 -0
  100. data/config/routes.rb +4 -5
  101. data/cruise_build.sh +6 -2
  102. data/db/migrate/004_add_period.rb +22 -22
  103. data/db/migrate/015_add_user_option.rb +5 -19
  104. data/db/migrate/017_increase_backlog_name_limit.rb +10 -0
  105. data/db/migrate/021_create_work_accounts.rb +0 -2
  106. data/db/migrate/20101006092700_rename_backlogs_to_projects.rb +22 -0
  107. data/db/migrate/20101006092700_rename_backlogs_to_projects.rb~ +22 -0
  108. data/db/schema.rb +27 -30
  109. data/db/seeds.rb +7 -0
  110. data/lib/array_helper.rb +0 -8
  111. data/lib/class_table_inheritance.rb +8 -7
  112. data/lib/tasks/backup.rake +3 -3
  113. data/lib/tasks/jdbc.rake +2 -2
  114. data/lib/version_from_history.rb +1 -1
  115. data/public/404.html +23 -7
  116. data/public/422.html +26 -0
  117. data/public/500.html +23 -6
  118. data/public/images/rails.png +0 -0
  119. data/public/javascripts/controls.js +5 -3
  120. data/public/javascripts/dragdrop.js +7 -6
  121. data/public/javascripts/effects.js +8 -13
  122. data/public/javascripts/prototype.js +3381 -1700
  123. data/public/javascripts/rails.js +175 -0
  124. data/public/robots.txt +5 -1
  125. data/script/rails +6 -0
  126. data/test/client/login.rb +0 -2
  127. data/test/client/login_test.rb +1 -1
  128. data/test/client/setup.rb +25 -24
  129. data/test/fixtures/{backlogs.yml → projects.yml} +2 -2
  130. data/test/fixtures/tasks.yml +9 -9
  131. data/test/fixtures/work_lock_subscriptions.yml +2 -2
  132. data/test/fixtures/works.yml +7 -7
  133. data/test/functional/periods_controller_test.rb +1 -1
  134. data/test/functional/{backlogs_controller_test.rb → projects_controller_test.rb} +22 -21
  135. data/test/functional/search_controller_test.rb +1 -1
  136. data/test/functional/tasks_controller_test.rb +17 -17
  137. data/test/functional/user_controller_test.rb +16 -21
  138. data/test/functional/welcome_controller_test.rb +4 -3
  139. data/test/functional/works_controller_test.rb +5 -5
  140. data/test/integration/user_system_test.rb +1 -1
  141. data/test/mocks/test/clock.rb +1 -1
  142. data/test/performance/browsing_test.rb +9 -0
  143. data/test/performance/common.rb +1 -1
  144. data/test/test_helper.rb +23 -6
  145. data/test/test_helper.rb~ +121 -0
  146. data/test/unit/user_test.rb +3 -3
  147. data/test/unit/work_test.rb +7 -7
  148. data/vendor/plugins/assert_cookie/lib/assert_cookie.rb +0 -2
  149. data/vendor/plugins/{foreign_key_migrations → dynamic_form}/MIT-LICENSE +1 -1
  150. data/vendor/plugins/dynamic_form/README +13 -0
  151. data/vendor/plugins/dynamic_form/Rakefile +10 -0
  152. data/vendor/plugins/dynamic_form/dynamic_form.gemspec +12 -0
  153. data/vendor/plugins/dynamic_form/init.rb +1 -0
  154. data/vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb +300 -0
  155. data/vendor/plugins/dynamic_form/lib/action_view/locale/en.yml +8 -0
  156. data/vendor/plugins/dynamic_form/lib/dynamic_form.rb +5 -0
  157. data/vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb +42 -0
  158. data/vendor/plugins/dynamic_form/test/dynamic_form_test.rb +370 -0
  159. data/vendor/plugins/dynamic_form/test/test_helper.rb +9 -0
  160. data/vendor/plugins/prototype_legacy_helper/lib/prototype_legacy_helper.rb +432 -0
  161. data/vendor/plugins/prototype_legacy_helper/test/test_prototype_helper.rb +297 -0
  162. data/vendor/plugins/rails_time/test/debug.log +1 -0
  163. data/vendor/plugins/{redhillonrails_core → verification}/MIT-LICENSE +1 -1
  164. data/vendor/plugins/verification/README +34 -0
  165. data/vendor/plugins/verification/Rakefile +22 -0
  166. data/vendor/plugins/verification/init.rb +3 -0
  167. data/vendor/plugins/verification/lib/action_controller/verification.rb +132 -0
  168. data/vendor/plugins/verification/test/test_helper.rb +18 -0
  169. data/vendor/plugins/verification/test/verification_test.rb +270 -0
  170. data/vendor/plugins/will_paginate/lib/will_paginate/collection.rb +1 -1
  171. metadata +115 -134
  172. data/Gemfile~ +0 -4
  173. data/History.txt~ +0 -961
  174. data/LICENSE_LOCALIZATION +0 -20
  175. data/README_LOCALIZATION +0 -61
  176. data/README_RAILS +0 -180
  177. data/app/views/backlogs/_form.rhtml +0 -44
  178. data/app/views/backlogs/_name_list.rhtml +0 -5
  179. data/app/views/backlogs/edit.rhtml +0 -14
  180. data/app/views/backlogs/list.rhtml +0 -16
  181. data/app/views/layouts/mwrt002.rhtml +0 -43
  182. data/config/initializers/mongrel.rb +0 -83
  183. data/config/preinitializer.rb +0 -20
  184. data/config/warble.rb~ +0 -84
  185. data/db/migrate/017_insert_datek_projects.rb +0 -98
  186. data/lib/change_column_null_migration_fix.rb +0 -15
  187. data/no_test.rb~ +0 -6
  188. data/public/dispatch.cgi +0 -10
  189. data/public/dispatch.fcgi +0 -24
  190. data/public/dispatch.rb +0 -10
  191. data/script/about +0 -3
  192. data/script/breakpointer +0 -3
  193. data/script/console +0 -3
  194. data/script/dbconsole +0 -3
  195. data/script/destroy +0 -3
  196. data/script/generate +0 -3
  197. data/script/performance/benchmarker +0 -3
  198. data/script/performance/profiler +0 -3
  199. data/script/plugin +0 -3
  200. data/script/process/inspector +0 -3
  201. data/script/process/reaper +0 -3
  202. data/script/process/spawner +0 -3
  203. data/script/runner +0 -3
  204. data/script/server +0 -3
  205. data/test/client/login.rb~ +0 -33
  206. data/test/mocks/test/user_notify.rb +0 -16
  207. data/vendor/plugins/foreign_key_migrations/CHANGELOG +0 -103
  208. data/vendor/plugins/foreign_key_migrations/README +0 -87
  209. data/vendor/plugins/foreign_key_migrations/about.yml +0 -5
  210. data/vendor/plugins/foreign_key_migrations/init.rb +0 -1
  211. data/vendor/plugins/foreign_key_migrations/install.rb +0 -1
  212. data/vendor/plugins/foreign_key_migrations/lib/foreign_key_migrations.rb +0 -3
  213. data/vendor/plugins/foreign_key_migrations/lib/red_hill_consulting/foreign_key_migrations/active_record/base.rb +0 -22
  214. data/vendor/plugins/foreign_key_migrations/lib/red_hill_consulting/foreign_key_migrations/active_record/connection_adapters/abstract_adapter.rb +0 -22
  215. data/vendor/plugins/foreign_key_migrations/lib/red_hill_consulting/foreign_key_migrations/active_record/connection_adapters/table_definition.rb +0 -28
  216. data/vendor/plugins/lightwindow_helper/README +0 -33
  217. data/vendor/plugins/lightwindow_helper/assets/images/ajax-loading.gif +0 -0
  218. data/vendor/plugins/lightwindow_helper/assets/images/arrow-down.gif +0 -0
  219. data/vendor/plugins/lightwindow_helper/assets/images/arrow-up.gif +0 -0
  220. data/vendor/plugins/lightwindow_helper/assets/images/black-70.png +0 -0
  221. data/vendor/plugins/lightwindow_helper/assets/images/black.png +0 -0
  222. data/vendor/plugins/lightwindow_helper/assets/images/nextlabel.gif +0 -0
  223. data/vendor/plugins/lightwindow_helper/assets/images/prevlabel.gif +0 -0
  224. data/vendor/plugins/lightwindow_helper/assets/javascripts/lightwindow.js +0 -1921
  225. data/vendor/plugins/lightwindow_helper/assets/stylesheets/lightwindow.css +0 -376
  226. data/vendor/plugins/lightwindow_helper/init.rb +0 -1
  227. data/vendor/plugins/lightwindow_helper/install.rb +0 -7
  228. data/vendor/plugins/lightwindow_helper/lib/lightwindow_helper.rb +0 -31
  229. data/vendor/plugins/redhillonrails_core/CHANGELOG +0 -150
  230. data/vendor/plugins/redhillonrails_core/README +0 -124
  231. data/vendor/plugins/redhillonrails_core/init.rb +0 -19
  232. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/base.rb +0 -54
  233. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/abstract_adapter.rb +0 -31
  234. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/column.rb +0 -21
  235. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/foreign_key_definition.rb +0 -26
  236. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/index_definition.rb +0 -11
  237. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/mysql_adapter.rb +0 -74
  238. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/mysql_column.rb +0 -8
  239. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/postgresql_adapter.rb +0 -99
  240. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/schema_statements.rb +0 -16
  241. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/sqlite3_adapter.rb +0 -9
  242. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/connection_adapters/table_definition.rb +0 -27
  243. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/schema.rb +0 -27
  244. data/vendor/plugins/redhillonrails_core/lib/red_hill_consulting/core/active_record/schema_dumper.rb +0 -47
  245. data/vendor/plugins/transactional_migrations/CHANGELOG +0 -9
  246. data/vendor/plugins/transactional_migrations/MIT-LICENSE +0 -20
  247. data/vendor/plugins/transactional_migrations/README +0 -15
  248. data/vendor/plugins/transactional_migrations/about.yml +0 -5
  249. data/vendor/plugins/transactional_migrations/init.rb +0 -1
  250. data/vendor/plugins/transactional_migrations/lib/red_hill_consulting/transactional_migrations/active_record/migration.rb +0 -19
data/Gemfile~ DELETED
@@ -1,4 +0,0 @@
1
- source "http://rubygems.org"
2
- gem "nokogiri"
3
- gem "rack", "~>1.1"
4
- gem "rspec", :require => "spec"
@@ -1,961 +0,0 @@
1
- == 0.24.1 2008-02-29
2
-
3
- === Fixes
4
-
5
- * Work records registered yesterday were added on current day in daily worksheet.
6
- * Added links to relevant dates in the "Edit User"
7
- * Allowed changing a date to work day when it was set to sick day or holiday even if there were registered work records.
8
- * Fixed bug where changing a work account in th
9
-
10
- == 0.24.0 2008-02-28
11
-
12
- === Features
13
-
14
- * Allowed for marking dates as holiday or sick days in the daily work sheet.
15
- * Show a summary of holidays and sick days in the user view.
16
- * Added navigation with UP/DOWN keys in the daily work sheet.
17
-
18
- === Fixes
19
-
20
- * Made all work related views group and sort by start date and time.
21
- * Do not try to register new work record in the daily work sheet unless work account name has been filled in.
22
-
23
- == 0.23.1 2008-02-26
24
-
25
- === Features
26
-
27
- * Declared the daily work sheet to be out of experimental stage.
28
- * Automatically calculate total hours for work record in daily work sheet.
29
- * Added summary of who has grabbed a task in the edit task view.
30
-
31
- === Fixes
32
-
33
- * Moved to JRuby 1.1RC2 for the WAR.
34
- * Removed unused keyboard shortcuts, and fixed the remaining shortcuts.
35
- * Fixed bug where the last date in a search for work records for a work account were omitted.
36
- * Some speedup of daily work sheet and weekly work sheet.
37
- * Fixed bug where end time for a work record was filled in when it should be left blank in daily work sheet.
38
- * Fixed rounding error for hours in daily work sheet.
39
- * Fixed bug in work lock nagger when the global configuration file was missing.
40
- * Changed sort order in daily work sheet from completion time to start time.
41
- * Changed to allow time format without separator: 0800 and 800 equal 08:00.
42
- * Minor cosmetic tweaks in the daily work sheet.
43
- * Fixed style sheet to remove the flicker in the sprint view.
44
-
45
- == 0.23.0 2008-02-25
46
-
47
- === Features
48
-
49
- * Improved input for daily_work_sheet
50
- * Allowed override for development and test database with new configuration file
51
- * Listed details for works without backlog in "Show Work Account" view.
52
- * Added "List Works" view for Work Account.
53
- * Added filtering of tasks grabbed by other users in the sprint view.
54
-
55
- === Fixes
56
-
57
- * Improved work flow ("Back" links) several places.
58
- * Fixed bug in layout when you had started tasks without a sprint.
59
- * Some speedup of grabbing tasks.
60
- * Fixed database corruption when trying to register users with duplicate login or email.
61
- * Fixed display of welcome message after following link from "Forgot password" email.
62
- * Fixed bug in daily work sheet when start time was not set for a work record.
63
- * Starting work on a task grabs it.
64
- * Changed to show "complete" check marks in sprint view for tasks that track time, but are not started.
65
- * Display blank field for hours in daily work sheet if it has not been filled in yet.
66
- * Always display row for new work record entry in daily work sheet.
67
- Earlier, a row for new input was only shown if the previous row was ended.
68
- * Removed message about missing database settings in main configuration file on startup since it is optional and deprecated.
69
- * Fixed error in class table inheritance library. Validations for the subclass were not called.
70
- * Added some Firewatir tests. EXPERIMENTAL!
71
- * Added explenation on how to set database connection parameters.
72
-
73
- == 0.22.1 2008-02-15
74
-
75
- === Features
76
-
77
- * Added Excel export of work list for backlog.
78
-
79
- === Fixes
80
-
81
- * Fixed so that you are redirected to the originally requested page after a login.
82
- * Fixed so that the work log nagger stops nagging when you lock the previous week.
83
- * Fixed so that we get patcxh level updates for rmagick.
84
-
85
- == 0.22.0 2008-02-14
86
-
87
- === Features
88
-
89
- * Added report for displaying all work records relating to tasks in a backlog for a given time period.
90
- * Added ability to look at other users weekly work sheets.
91
- Used in the Work Lock Notification mail.
92
-
93
- === Fixes
94
-
95
- * Fixed filtering of other users work records in weekly work sheet.
96
- * Changed to display full name instead of login in weekly work sheet.
97
-
98
- == 0.21.3 2008-02-13
99
-
100
- === Features
101
-
102
- * Added link to weekly work sheet from daily work sheet.
103
-
104
- === Fixes
105
-
106
- * Fixed reading the default host/port for Work Lock Nag email from the local network settings and backlog.conf.
107
- * Fixed adding startup links on non-redhat unix distributions. Now use "ln -s ..." instead.
108
- * Fixed bug that could occur when finishing tasks.
109
- * Fixed bug when starting two tasks at the same time.
110
- * Added missing dependency for the "slave" gem to WAR cofig.
111
-
112
- == 0.21.2 2008-02-08
113
-
114
- === Features
115
-
116
- * Added ability to override the public application URL in the backlog.conf config file.
117
-
118
- === Fixes
119
-
120
- * Changed so that End Work -> Start Work operations don't generate overlapping work records by default.
121
- * Added checking of return code to the 'setup_unix' task so the script fails unless it can successfully
122
- change to the postgresql administration user.
123
- * Added "debug" and "bsd" options to administration script.
124
- The "debug" option turns on tracing in the rake scripts.
125
- The "bsd" option changes the postgresql admin user from "postgres" to "pgsql".
126
- * Fixed bug 16427: http://rubyforge.org/tracker/index.php?func=detail&aid=16427&group_id=3829&atid=14750
127
- When postponing the first task to a new sprint, the sprint is created and the task is postponed directly.
128
- A white screen is displayed during the dialog, but it was the best solution I could find.
129
- * Fixed the default host/port for Work Lock Nag email from localhost:3000 to read from the local network settings and backlog.conf.
130
-
131
- == 0.21.1 2008-02-04
132
-
133
- === Features
134
-
135
- * Added link from weekly work sheet summary to details view with editing option.
136
-
137
- === Fixes
138
-
139
- * Changed to nag for work locks at 10am instead of every 24 hours after server startup.
140
- * Added localizations for Lock/Unlock operations.
141
- * Fixed bug when updating work records without tasks.
142
- * Changed formatting of week total of work account to two decimals in the weekly work sheet.
143
- * Fixed editing in weekly work sheet details view.
144
-
145
- == 0.21.0 2008-02-02
146
-
147
- === Features
148
-
149
- * Notification of delayed time sheets.
150
- Backlog is now dependent on the 'slave' gem.
151
-
152
- === Fixes
153
-
154
- * Fixed switched users in time sheet monitoring invitation.
155
- * Filled in week number when notifying subscribers of a time sheet lock.
156
-
157
- == 0.20.1 2008-01-29
158
-
159
- === Fixes
160
-
161
- * Rearranged user edit view to avoid clutter.
162
- * Fixed sending of invitation mail for time sheets.
163
- The sender and recipients were switched.
164
-
165
- == 0.20.0 2008-01-29
166
-
167
- === Features
168
-
169
- * Added option to invite associates to monitor time sheets.
170
- * Divided user actions for changing password and deleting a user into separate views
171
- to make each view simpler.
172
-
173
- === Fixes
174
-
175
- * Fixed Excel export to print work account ids and work account names.
176
- * Fixed application error when trying to register a work record without a work account.
177
-
178
- == 0.19.0 2008-01-28
179
-
180
- === Features
181
-
182
- * Added button to recalculate the hours when changing start/stop times in the create/edit work record view.
183
- * Added locking of work records, and notification.
184
- * Added work accounts list link to navigation top.
185
- * Changed weekly work sheet to show totals instead of individual work records.
186
- Added links in the weekly work sheet to each day for details.
187
- * Improved daily work sheet. Maybe usable now.
188
-
189
- === Fixes
190
-
191
- * Fixed bug when grabbing/releasing a task and then starting and stopping work.
192
- This would render javascript in cleartext.
193
- * Changed redirect after login from displaying backlog to welcome view.
194
- * Fixed Excel export.
195
-
196
- == 0.18.0 2008-01-21
197
-
198
- === Features
199
-
200
- * Allowed users to associate themselves with a task by pressing the monkey icon.
201
- Only activated if the "Enable users" option on Backlog is checked.
202
- * Added recording of last change timestamp for tasks.
203
- * Allowed switching of tasks when registering a work record.
204
- * Added navigation for editing and creating tasks when registering a work record.
205
-
206
- === Fixes
207
-
208
- * Updated graphs in README.txt
209
- * Sorted work account list by name.
210
-
211
- == 0.17.6 2008-01-19
212
-
213
- === Features
214
-
215
- * Allowed moving a task from one backlog to another.
216
- * Added simple summary to work account view.
217
-
218
- === Fixes
219
-
220
- * Minor cosmetic adjustment of task list.
221
- * Fixed application error when displaying completed tasks.
222
- * Fixed error when trying to create new task with errors (duplicate description).
223
- * Fixed showing of work record for earlier years.
224
- * Made task description bold in task lists for better readability.
225
- * Changed dependency to rmagick to 1.15.12 instead of newest since rmagick 2 requires very new ImageMagick.
226
-
227
- == 0.17.5 2008-01-15
228
-
229
- === Fixes
230
-
231
- * Fixed various ordering bugs.
232
- * Fixed ajax for finishing and reopening tasks.
233
-
234
- == 0.17.4 2008-01-14
235
-
236
- === Features
237
-
238
- * Added date and time to top bar
239
- * Simplified design of task lists.
240
- * Changed title in Show Sprint view from "Backlog" to "Sprint"
241
-
242
- === Fixes
243
-
244
- * Fixed wrong "Home" link.
245
- * Fixed exception when updating task estimate.
246
- * Removed shake effect when starting work on a task.
247
- * Various style sheet adjustments.
248
- * Fixed moving tasks between sprints in backlog view.
249
- * Fixed redirect after ending work directly after starting it.
250
-
251
- == 0.17.3 2008-01-11
252
-
253
- === Fixes
254
-
255
- * Fixed wrong redirect at startup.
256
- * Fixed ugly listing of started tasks.
257
-
258
- == 0.17.2 2008-01-07
259
-
260
- === Fixes
261
-
262
- * Made task listing a bit prettier.
263
- * Changed to redirect to start page after registering.
264
- * Made welcome view slightly more welcoming :)
265
- * Fixed workflow to return from detour after updating backlog properties.
266
-
267
- === Internal
268
-
269
- * Updated gem dependencies.
270
- * Added test of WAR file by running it with Jetty.
271
-
272
- == 0.17.1 2008-01-04
273
-
274
- === Fixes
275
-
276
- * Fixed bad first-time setup.
277
- * Updated to Goldspike 1.4
278
-
279
- == 0.17.0 2008-01-03
280
-
281
- === Features
282
-
283
- * Started using "Sortable List" instead of draggables for tasks for prettier ordering.
284
- * Started using client side Ruby. Woohoo!
285
- * Made tasks draggable to sprint boxes in the sidebar.
286
-
287
- === Fixes
288
-
289
- * Fixed bug where work related functions assumed year 2007.
290
- * Moved use of pagination to Will Paginate plugin to be Rails 2.0 compatible.
291
- * Fixed bug in class_table_inheritance
292
- * Changed to show most urgent backlog at start if no active sprints exist.
293
- * Fixed ordering of tasks in the backlog.
294
- * Fixed bad formatting of task headers in sprint view.
295
- * Moved edit link for task from description to ID to more often avoid following the link when trying to order the tasks.
296
-
297
- == 0.16.0 2007-12-26
298
-
299
- === Features
300
-
301
- * Added displaying of task id in task edit form.
302
- * Added displaying of task id and description in task full screen view.
303
- * Added more notice messages on small updates, for better responsiveness.
304
- * Added display of total hours done to Show Task view.
305
- * Added action buttons to Show Task view
306
- * Improved control script to delete stale PID file at startup and give better status info.
307
- * Simple auditing of tasks. Who created the task, and who updated it last.
308
-
309
- === Fixes
310
-
311
- * Fixed error in some URL generations that led to strange navigation.
312
-
313
- == 0.15.1 2007-11-29
314
-
315
- === Features
316
-
317
- * Added displaying of task id in lists.
318
-
319
- === Fixes
320
-
321
- * Fixed bug in task reordering.
322
-
323
- == 0.15.0 2007-11-28
324
-
325
- === Features
326
-
327
- * Expanded search to include the "notes" field of tasks.
328
- * Added unformatted viewing of notes for a task.
329
- * Made using sprints an option for backlogs. Default is not to use sprints to enable simple usage of the Backlog application.
330
- Existing backlogs have the option set even if no sprints have been started, for backwards compatibility.
331
- * Added link from task line to task editing view.
332
-
333
- === Fixes
334
-
335
- * Ordered work records by end date in list view.
336
- * Fixed wrong redirect when moving an unplanned task to a sprint.
337
- * Fixed bug when editing a finished task leads to reopening it.
338
- * Fixed cosmetic errors in finishing and reopening tasks.
339
- * Fixed error when tracking time done, but not start and stop times.
340
- * Removed unnecessary icon for showing a backlog when already showing the backlog.
341
- * Fixed missing border around icons in backlog view.
342
- * Fixed cosmetics on task lines.
343
-
344
- == 0.14.4 2007-11-27
345
-
346
- === Features
347
-
348
- * Added highlight of field when updating start time or estimate in show period view to indicate that the field was updated.
349
-
350
- === Fixes
351
-
352
- * Fixed estimate update for started tasks.
353
- * Fixed display of finished and reopened tasks in backlogs view for the first/last unplanned task.
354
-
355
- == 0.14.3 2007-11-20
356
-
357
- === Features
358
-
359
- * Speedup of Burn Down Charts.
360
- * Added link to add new work account when recording work.
361
-
362
- === Fixes
363
-
364
- * Fixed bug for weekly work sheet with invoicing.
365
- * Fixed bug in Edit Group view. The wrong burn down chart was shown.
366
-
367
- === Internal
368
-
369
- * Removed unused code for backlog charts.
370
-
371
- == 0.14.2 2007-11-19
372
-
373
- === Features
374
-
375
- * Changed to allow changing of work account on already existing work records.
376
- * Hide fields for task estimate when editing work records.
377
- * Made detours from weekly work sheet return to the weekly work sheet.
378
-
379
- === Fixes
380
-
381
- * Fixed bug in Work form.
382
-
383
- == 0.14.1 2007-11-19
384
-
385
- === Features
386
-
387
- * Added link to Show Backlog view from Show task view.
388
-
389
- === Fixes
390
-
391
- * Added error messages to Update Task view.
392
- * Fixed bug in Reopen Task action in the Show Task view.
393
- * Fixed missing template for Search action.
394
- * Fixed display of unplanned completed tasks.
395
- * Added adjustment of list position for backup restoration.
396
-
397
- == 0.14.0 2007-11-18
398
-
399
- === Features
400
-
401
- * Made Add member/Join group actions use ajax for increased speed.
402
- * Fixed backup/restore rake tasks.
403
- * Speed up of user/group actions.
404
-
405
- == 0.13.2 2007-11-18
406
-
407
- === Fixes
408
-
409
- * Fixed broken update of burn down chart.
410
-
411
- == 0.13.1 2007-11-17
412
-
413
- === Features
414
-
415
- * Changed to allow not setting a task for a work record.
416
-
417
- === Fixes
418
-
419
- * Added missing web.xml file to WAR distribution.
420
- * Fixed wrong parsing of updated start time when using single digit hour (eg. 8:15)
421
- * Added "Add Task" button to Backlog view.
422
- * Speed up of all pages.
423
- * Fixed finishing and reopening tasks in the Backlog view.
424
-
425
- == 0.13.0 2007-11-14
426
-
427
- === Features
428
-
429
- * Removed "Track done" attribute from backlog, since it is determined by setting a work account.
430
- * Speed up of work related tasks
431
-
432
- === Fixes
433
-
434
- * Changed to allow not setting a work account for a backlog.
435
- * Fixed faulty javascript to select active task.
436
- * Fixed redirect to create a new sprint when moving a task to next sprint for the first time.
437
- * Added setting of executable flag for init.d startup script.
438
-
439
- === Known bugs
440
-
441
- * Ordering in the Show Backlog view is messed up.
442
- * Finishing or reopening tasks makes remaining tasks show wrong priority number.
443
-
444
- == 0.12.4 2007-11-11
445
-
446
- === Fixes
447
-
448
- * Fixed broken drag and drop of tasks.
449
-
450
- === Known bugs
451
-
452
- * Finishing or reopening tasks makes remaining tasks show wrong priority number.
453
-
454
- == 0.12.3 2007-11-10
455
-
456
- === Fixes
457
-
458
- * Fix bug in update of burn down chart when updating start time for task in progress.
459
- * Fixed wrong update of page after update in "list started" view.
460
- * Fixed bug when finishing a task by entering 0 estimation point.
461
- * Speed up of finish and abort tasks.
462
- * Fixed bad layout in Safari.
463
- * Now set focus on user name field in login dialog on Safari.
464
-
465
- === Known bugs
466
-
467
- * Finishing or reopening tasks makes remaining tasks show wrong priority number.
468
-
469
- == 0.12.2 2007-11-08
470
-
471
- ===Features
472
-
473
- * Made "update start time for work" functions use ajax to speed up response.
474
-
475
- === Fixes
476
-
477
- * Removed obsolete and wrong validation of customer name size in Task.
478
- This would give application error when trying to link a task to a customer.
479
-
480
- === Known bugs
481
-
482
- * Finishing or reopening tasks makes remaining tasks show wrong priority number.
483
-
484
- == 0.12.1 2007-11-07
485
-
486
- ===Features
487
-
488
- * Made "Move to next sprint" and "Abort" functions use ajax to speed up response.
489
- * Added scaffold for Customers.
490
-
491
- === Fixes
492
-
493
- * Fixed some errors in the Show Sprint view.
494
-
495
- === Known bugs
496
-
497
- * Finishing or reopening tasks makes remaining tasks show wrong priority number.
498
-
499
- == 0.12.0 2007-11-06
500
-
501
- ===Features
502
-
503
- * Changed to use AJAX for small updates of tasks in the sprint view.
504
- This to speed up the user experience.
505
- Known bug: The position numbers are not updated yet.
506
- * Added Transactional Migrations plugin to avoid partial migrations.
507
-
508
- === Fixes
509
-
510
- * Changed to return from detour to work account edit view
511
- * Moved editing of "Track Times" option from Backlog to Work Account
512
- * Added link from backlog to corresponding work account.
513
- * Made Edit Work Account view fit with layout.
514
-
515
- == 0.11.0 2007-11-03
516
-
517
- ===Features
518
-
519
- * Added work accounts, required for all work records.
520
- * Allow work records to be entered without task reference.
521
- * Improved the Daily Work Sheet slightly. STILL EXPERIMENTAL!
522
-
523
- === Fixes
524
-
525
- * Added init scripts on unix to start at boot.
526
- * Now display validation errors on the Works form when editing.
527
- * Locked the backlog application to Rails 1.2.4 since Rails 1.2.5 broke acts_as_list
528
-
529
- == 0.10.8 2007-09-27
530
-
531
- === Fixes
532
-
533
- * Always make startup link in /etc/init.d even if it exists already
534
- * Reduced output in the "backlog setup_unix" command to avoid clutter.
535
- * Daily Time Sheet now allows adding work records. Edit still not working.
536
- * Filtered work records in daily work sheet to only show records for the current user.
537
-
538
- == 0.10.7 2007-09-26
539
-
540
- === Fixes
541
-
542
- * Fixed bug when postponing tasks
543
- * Changed to propagate messages during redirects to front page.
544
- * Fixed bugs in listing work for sprint.
545
- * Made daily work sheet not fail with subtasks. It still does not work properly.
546
-
547
- == 0.10.6 2007-09-25
548
-
549
- === Fixes
550
-
551
- * Fixed calculation of work in time sheet.
552
- * Corrected link to Time sheet for older weeks.
553
- * Fixed extraction of changes when releasing.
554
-
555
- == 0.10.5 2007-09-25
556
-
557
- === Fixes
558
-
559
- * Changed so that when specifying a task, only one subtask is created.
560
- * Fixed bug in creation of estimates for subtasks.
561
- * Corrected list work for period.
562
- * Changed to group work done by start time instead of end time.
563
- * Fixed bug in listing started subtasks.
564
- * Added link to task from edit work view.
565
- * Added backlog and super task names in drop down in new work view.
566
- * Added edit link in weekly work sheet.
567
-
568
- == 0.10.4 2007-09-24
569
-
570
- === Features
571
-
572
- * Now you can move tasks in and out of supertasks.
573
-
574
- === Fixes
575
-
576
- * Changed name of released WAR file back to include the version number since RubyForge only allows unique file names.
577
- * Fixed bug where the "show period" action would fail if you tried to display the period of an unplanned task.
578
- * Fixed bugs in the calculation of weekly work sheet and time sheet.
579
-
580
- == 0.10.3 2007-09-24
581
-
582
- * Removed "Active Sprint" from Group edit view, when there is no active sprint.
583
- * Made "Home" link correct when running in application server with JRuby.
584
- * Made notices and messages a bit prettier and easier to read.
585
- * Added link to create new group in the "New sprint" view.
586
- * Fixed link to party from task edit view. Got broken when reverting from EdgeRails.
587
- * Changed default database.yml to work in Aptana RadRails.
588
- * Removed Datek specific info from environment files.
589
- * Changed to raise mail delivery failures to help user choose valid email address.
590
- * Changed expiry of login token from 1 day to 1 year to enable cookie login.
591
- * Fixed indentation for subtasks in task lists.
592
- * Changed to allow revising estimates for tasks in future sprints.
593
- * Fixed bug in ordering of subtasks.
594
- * Fixed bug in task ordering in backlog view.
595
-
596
- == 0.10.2 2007-09-23
597
-
598
- * Removed version from name of released WAR file to enable easier replacement in Tomcat.
599
- * Fixed bug when starting work on a task.
600
-
601
- == 0.10.1 2007-09-22
602
-
603
- * Fixed bug in "remember me" login when running with JRuby
604
- * Fixed bug when moving a task to next sprint on mysql
605
- * Made user message more visible, especially register messages.
606
- * Added explanatory text in log for reading global config.
607
- * Excluded "pkg" from war file to avoid duplicates and save space.
608
- * Removed "bouncycastle" from WAR to get it to run on Tomcat.
609
- * Merged migration steps 001 and 002 to get them to run on SQLite.
610
- * Fixed reading of application version when running with JRuby.
611
- * Excluded "log" and "WEB-INF" directories from gem to save space.
612
- * Added "rails" to gem dependencies since Rails is not included anymore.
613
- * Bumped dependent version of rmagick from 1.15.9 to 1.15.10 to get the newest fixes.
614
-
615
- == 0.10.0 2007-09-21
616
-
617
- === Features
618
-
619
- * Now Backlog is JRuby friendly!
620
- * Added WAR file to distribution for running on any Java EE application server
621
- * Reverted from EdgeRails to get Backlog working with JRuby.
622
- * Added performance tests that are automatically run on every commit.
623
-
624
- === Fixes
625
-
626
- * Fixed bug when moving a task from a really old sprint, and the next sprint had already finished.
627
- * Fixed automatic login using cookie.
628
- * Added array and hash encoding to url_for in project since it is missing in current Rails trunk.
629
- * Removed call to "image_tag" since the servlet context (backlog) was added twice to the image URL.
630
- * Fixed database connection settings for JRuby
631
-
632
- == 0.9.1 2007-09-09
633
-
634
- * Fixed loading of database config in production environment.
635
- * Fixed misaligned columns in weekly work sheet when invoicing is disabled.
636
- * Added "Back" link from Show Backlog view.
637
- * Fixed focus in Edit Backlog view.
638
- * Added navigation buttons in Edit Backlog view.
639
-
640
- == 0.9.0 2007-09-07
641
-
642
- === Features
643
-
644
- * Support for overriding database settings in system configuration file.
645
- * Sqlite support.
646
- * Added automatic login using security token in cookie.
647
-
648
- === Fixes
649
-
650
- * Updated RedHillOnRails Core to fix problems with Sqlite.
651
- * Fixed bug in "New task" view when switching backlog.
652
- * Cosmetic fixes to task icons.
653
- * Set focus on description field in "New task" view if description is empty.
654
- * Changed to use rbconfig instead of "/etc" to install on more configurations.
655
- * Shortened "Changes" in news post to only last entry in History.txt
656
- * Excluded "doc" directory from gem distribution since it is generated on install and it saves network bandwidth.
657
- * Hide password in Edit User view.
658
-
659
- == 0.8.1 2007-09-04
660
-
661
- * Localized "Notes" string.
662
- * Split Backlog Edit View into Edit for options and Show for tasks for less clutter.
663
- Tasks are probably viewed way more often than options.
664
- * Added file upload to create task view.
665
- * Changed to allow editing of tasks not in any sprint.
666
- * Fixed bug where estimates were not updated in the Task update view.
667
- * Fixed bug when finishing a task by setting estimate to 0 in the task edit view.
668
- * Added links to edit and show a backlog in the backlog and sprint views.
669
- * Changed link in the Backlog List view to go to the backlog Show view instead of the backlog edit view.
670
- * Improved work flow when adding a task from the show sprint view.
671
- * Removed faulty link from Backlog view for Unplanned tasks.
672
-
673
- == 0.8.0 2007-09-03
674
-
675
- * FEATURE: Added notes and files to tasks.
676
- * Removed duplicate foreign key extension plugin.
677
- * Removed duplicate foreign keys from database schema.
678
- * Made Estimate input more robust.
679
- * Made server response messages more visible.
680
- * Shortened release news posting a bit.
681
-
682
- == 0.7.12 2007-09-01
683
-
684
- * Changed gem description and changes in the Rakefile to generate better news posting.
685
- * Added "Todo" header to task fields header.
686
- * Fixed Hoe Rakefile rsync arguments to ignore the wiki files located on the RubyForge web server.
687
- * Fixed bug in updating an unplanned task.
688
- * Fixed bug in specifying a task.
689
- * Fixed wrong link in search results for tasks.
690
-
691
- == 0.7.11 2007-08-31
692
-
693
- * Removed link to "list work" view in the "started tasks" view since neither backlog nor sprint are in fokus.
694
- * Fixed bugs when updating a task to be unplanned.
695
- * Fixed bug for tasks with estimates shown in backlog edit view.
696
-
697
- == 0.7.10 2007-08-29
698
-
699
- * Added projection to future sprints to aid planning.
700
- * Corrected spelling error in README.txt
701
- * Added link to RubyForge project page in README.txt
702
- * Localized search result page title
703
- * Tried to fix duplicate entries in RDoc.
704
- * Shortened headers in weekly work sheet to save space.
705
- * Fixed bug in weekly work sheet for work records for tasks outside a sprint.
706
- * Fixed bug in work form that prevented checking the "done" flag when tracking start and stop times, but not estimates.
707
- * Added calendars as intended integration targets.
708
-
709
- == 0.7.9 2007-08-26
710
-
711
- * Changed backlog management script to work on OSX. Thanks to Albert Davidson Chou for helping me on this.
712
- * Made image links in the README.txt file only appear inline for thumbnails.
713
- * Fixed headers for completed tasks.
714
- * Restored Manifest.txt file since it is required by Hoe, even if it is not used.
715
- * Fixed bug in list started tasks view.
716
- * Changed display of resolution of finished tasks from text to icon to save space. The icons still have descriptive title.
717
- * Added Search of tasks and backlogs.
718
-
719
- == 0.7.8 2007-08-25
720
-
721
- * Changed use of RMagick to be optional. Everything except the graphs should work if rmagick is not installed. rmagick is still a dependency for the gem, but you can force installation of the backlog gem without RMagick or gruff with the --ignore-dependencies flag. You still need the postgres gem.
722
- * Changed documentation to mention GraphicsMagic as an alternative to ImageMagick
723
- * Added more documentation of the charts.
724
- * Added explanation on how to install Backlog without ImageMagick, GraphicsMagick and RMagick.
725
- * Made change password view a bit prettier.
726
- * Added link to project home to top of layout.
727
-
728
- == 0.7.7 2007-08-24
729
-
730
- * Added link to backlog from work record in weekly work sheet
731
- * Added ImageMagick and PostgreSQL as requirements in the GEM
732
- * Removed shortcuts from login and sign up views.
733
- * Removed link to backlog list of not logged in.
734
- * Localized some user messages.
735
- * Focus on login field in login view.
736
- * Changed "period" to "sprint" to follow the Scrum vocabulary. Thinking of option to change this by installation/project.
737
-
738
- == 0.7.6 2007-08-22
739
-
740
- * Changed Task edit view to use Ajax to update the Period link to make it more responsive when moving a task between periods.
741
- * Changed the LARGE chart size from 1440x900 to 1368x768 for display on our large screen TV
742
- * Fixed bug for displaying burn down chart for groups that have no active period.
743
- * Made 404 error page a bit bit nicer.
744
- * Added .png extension to burn down chart for period.
745
- * Added link to burn down charts to README.txt
746
- * Localized header for active period
747
-
748
- == 0.7.5 2007-08-19
749
-
750
- * Changed gem to work on MacOSX
751
- * Added missing dependency to "postgres" gem
752
- * Made the code inline in the gem rdoc
753
-
754
- == 0.7.4 2007-08-18
755
-
756
- * Added missing dependency on gruff and rmagick
757
- * Added line in installation instructions to install ImageMagick before installing Backlog
758
- * Removed the warning messages that appeared on install claiming not to find README.txt
759
- * Added uniqueness constraint to backlog name.
760
- * Changed to use logger for debug messages to avoid filling the production log with debug messages.
761
- * Started working on getting the daily work sheet working.
762
-
763
- == 0.7.3 2007-08-17
764
-
765
- * Fixed bug in estimate creation
766
- * Added cruisecontrol.rb configuration file
767
- * Fixed mailing of password
768
- * Fixed find_by for class table inheritance subclasses
769
- * Fixed date limits for new periods
770
- * Fixed display of position in period edit view
771
- * Added link to current user in top of layout
772
- * Added display of periods to user view
773
- * Adjusted the legend in the burn down graphs
774
-
775
- == 0.7.2 2007-08-17
776
-
777
- * Fixed bugs in task reordering links
778
- * Switched default language to English
779
- * Fixed English mailer views
780
-
781
- == 0.7.1 2007-08-14
782
-
783
- * Added author and email to the gem to avoid false listing in Hoe Down!
784
- http://seattlerb.rubyforge.org/hoedown.html
785
- * This in response to bug 13054
786
- http://rubyforge.org/tracker/index.php?func=detail&aid=13054&group_id=3829&atid=14750
787
- * Added localized text for weekly work sheet
788
-
789
- == 0.7.0 2007-08-14
790
-
791
- * Back in business after halting to avoid spamming people.
792
- * Fixed work flow when moving task to other period using drag&drop in side bar
793
- * Fixed bug in moving tasks to other periods
794
- * Optimized slightly by omitting generating layout data for no_layout action
795
- * Added more validation of "position" fields
796
- * Added completed tasks to backlog edit view
797
- * Removed unique index for periods(party_id, position) since it broke list updates in PostgreSQL
798
- * Added better assertion of position sequences in tests
799
-
800
- == 0.6.6 2007-08-07
801
-
802
- * Improved task lists in backlog edit view.
803
-
804
- == 0.6.5 2007-08-07
805
-
806
- * Fixed authentication error for burn down chart
807
-
808
- == 0.6.4 2007-08-07
809
-
810
- * Improved viewing of active period for group.
811
-
812
- == 0.6.3 2007-08-07
813
-
814
- * Fixed wrong start date in burn down chart
815
-
816
- == 0.6.2 2007-08-07
817
-
818
- * Added link to the active period of a party
819
-
820
- == 0.6.1 2007-08-07
821
-
822
- * Improved design for daily work sheet
823
-
824
- == 0.6.0 2007-08-07
825
-
826
- * Added backlog list view
827
-
828
- == 0.5.10 2007-08-06
829
-
830
- * Made burn down graph show progress made on the first day
831
-
832
- == 0.5.9 2007-08-06
833
-
834
- * Aligned burn down graphs to even numbers
835
-
836
- == 0.5.8 2007-08-06
837
-
838
- * Fixed bug in daily_work_sheet
839
-
840
- == 0.5.7 2007-08-06
841
-
842
- * Fixed bug when linking from a task after drag-and-drop reordering.
843
-
844
- == 0.5.6 2007-08-06
845
-
846
- * Improved the list of started tasks
847
-
848
- == 0.5.5 2007-08-06
849
-
850
- * Fixed bug in link helper that resulted in some GET buttons became POST buttons.
851
-
852
- == 0.5.4 2007-08-06
853
-
854
- * Changed control script restart to completely stop and start the application
855
- * Renamed old restart to reload
856
-
857
- == 0.5.3 2007-08-06
858
-
859
- * Dates in weekly work sheet view
860
-
861
- == 0.5.2 2007-08-06
862
-
863
- * Added previous/next week arrows in weekly work sheet view
864
-
865
- == 0.5.1 2007-08-06
866
-
867
- * Improved backlog edit task list
868
-
869
- == 0.5.0 2007-08-06
870
-
871
- * Changed first time work flow to add new backlog
872
- * Changed startup work flow to show most urgent period for the current user
873
- * Now display version in the header.
874
-
875
- == 0.4.0 2007-08-06
876
-
877
- * Added tasks to backlog edit view
878
- * Started simplifying task ordering. Now ordering simply has period_id as scope.
879
- * Improved and fixed bugs in work flow
880
- * Fixed typos in style sheet
881
- * KNOWN BUG: Ordering for tasks in backlog does not work properly
882
-
883
- == 0.3.9 2007-08-03
884
-
885
- * Fixed bug in moving task between periods
886
-
887
- == 0.3.8 2007-08-03
888
-
889
- * Fixed bug in setup script
890
-
891
- == 0.3.7 2007-08-03
892
-
893
- * Made setup more robust
894
- * Moved PID file from log dir to /var/run to make updates smoother
895
-
896
- == 0.3.6 2007-08-03
897
-
898
- * Added configuration to allow running on other port number than 3000
899
- This port number is stored in /etc/backup.conf and survives updates
900
-
901
- == 0.3.5 2007-08-03
902
-
903
- * Fixed bugs around task positioning and validation
904
- * Made atomic gem publishing with version only written in History.txt
905
-
906
- == 0.3.4 2007-08-03
907
-
908
- * Fixed bugs around task positioning and validation
909
- * Fixed bugs in task view
910
-
911
- == 0.3.3 2007-08-03
912
-
913
- * Made validation of tasks position tighter
914
- * Fixed bugs in task positioning :)
915
-
916
- == 0.3.2 2007-08-02
917
-
918
- * Improved setup on linux
919
-
920
- == 0.3.1 2007-08-02
921
-
922
- * Improved setup on linux
923
-
924
- == 0.3.0 2007-08-02
925
-
926
- * Improved work flow
927
- * Added task list to backlog edit view
928
-
929
- == 0.2.1 2007-07-31
930
-
931
- * Improved work flow
932
- * Added more shortcut links
933
-
934
- == 0.2.0 2007-07-31
935
-
936
- * Improved work flow
937
-
938
- == 0.1.2 2007-07-29
939
-
940
- * Improved gem generation
941
- * Fixed bugs in user registration and initial setup
942
-
943
- == 0.1.1 2007-07-29
944
-
945
- * Improved gem generation
946
- * Fixed bugs in user registration and initial setup
947
-
948
- == 0.1.0 2007-07-29
949
-
950
- * First party (user/group) centric release.
951
- * Released gem, but still requires external database.
952
-
953
- == 0.0.4 2007-07-06
954
-
955
- * Last backlog centric release. Next release will be user/group centric
956
- * Released gem, but still requires external database.
957
-
958
- == 0.0.0 2007-06-14
959
-
960
- * First release on RubyForge
961
- * Now running at backlog.kubosch.no and datek.no (internal)