@@ -5,6 +5,59 Copyright (C) 2006-2008 Jean-Philippe Lang | |||
|
5 | 5 | http://www.redmine.org/ |
|
6 | 6 | |
|
7 | 7 | |
|
8 | == 2008-06-15 v0.7.2 | |
|
9 | ||
|
10 | * "New Project" link on Projects page | |
|
11 | * Links to repository directories on the repo browser | |
|
12 | * Move status to front in Activity View | |
|
13 | * Remove edit step from Status context menu | |
|
14 | * Fixed: No way to do textile horizontal rule | |
|
15 | * Fixed: Repository: View differences doesn't work | |
|
16 | * Fixed: attachement's name maybe invalid. | |
|
17 | * Fixed: Error when creating a new issue | |
|
18 | * Fixed: NoMethodError on @available_filters.has_key? | |
|
19 | * Fixed: Check All / Uncheck All in Email Settings | |
|
20 | * Fixed: "View differences" of one file at /repositories/revision/ fails | |
|
21 | * Fixed: Column width in "my page" | |
|
22 | * Fixed: private subprojects are listed on Issues view | |
|
23 | * Fixed: Textile: bold, italics, underline, etc... not working after parentheses | |
|
24 | * Fixed: Update issue form: comment field from log time end out of screen | |
|
25 | * Fixed: Editing role: "issue can be assigned to this role" out of box | |
|
26 | * Fixed: Unable use angular braces after include word | |
|
27 | * Fixed: Using '*' as keyword for repository referencing keywords doesn't work | |
|
28 | * Fixed: Subversion repository "View differences" on each file rise ERROR | |
|
29 | * Fixed: View differences for individual file of a changeset fails if the repository URL doesn't point to the repository root | |
|
30 | * Fixed: It is possible to lock out the last admin account | |
|
31 | * Fixed: Wikis are viewable for anonymous users on public projects, despite not granting access | |
|
32 | * Fixed: Issue number display clipped on 'my issues' | |
|
33 | * Fixed: Roadmap version list links not carrying state | |
|
34 | * Fixed: Log Time fieldset in IssueController#edit doesn't set default Activity as default | |
|
35 | * Fixed: git's "get_rev" API should use repo's current branch instead of hardwiring "master" | |
|
36 | * Fixed: browser's language subcodes ignored | |
|
37 | * Fixed: Error on project selection with numeric (only) identifier. | |
|
38 | * Fixed: Link to PDF doesn't work after creating new issue | |
|
39 | * Fixed: "Replies" should not be shown on forum threads that are locked | |
|
40 | * Fixed: SVN errors lead to svn username/password being displayed to end users (security issue) | |
|
41 | * Fixed: http links containing hashes don't display correct | |
|
42 | * Fixed: Allow ampersands in Enumeration names | |
|
43 | * Fixed: Atom link on saved query does not include query_id | |
|
44 | * Fixed: Logtime info lost when there's an error updating an issue | |
|
45 | * Fixed: TOC does not parse colorization markups | |
|
46 | * Fixed: CVS: add support for modules names with spaces | |
|
47 | * Fixed: Bad rendering on projects/add | |
|
48 | * Fixed: exception when viewing differences on cvs | |
|
49 | * Fixed: export issue to pdf will messup when use Chinese language | |
|
50 | * Fixed: Redmine::Scm::Adapters::GitAdapter#get_rev ignored GIT_BIN constant | |
|
51 | * Fixed: Adding non-ASCII new issue type in the New Issue page have encoding error using IE | |
|
52 | * Fixed: Importing from trac : some wiki links are messed | |
|
53 | * Fixed: Incorrect weekend definition in Hebrew calendar locale | |
|
54 | * Fixed: Atom feeds don't provide author section for repository revisions | |
|
55 | * Fixed: In Activity views, changesets titles can be multiline while they should not | |
|
56 | * Fixed: Ignore unreadable subversion directories (read disabled using authz) | |
|
57 | * Fixed: lib/SVG/Graph/Graph.rb can't externalize stylesheets | |
|
58 | * Fixed: Close statement handler in Redmine.pm | |
|
59 | ||
|
60 | ||
|
8 | 61 | == 2008-05-04 v0.7.1 |
|
9 | 62 | |
|
10 | 63 | * Thai translation added (Gampol Thitinilnithi) |
@@ -7,7 +7,7 http://www.redmine.org/ | |||
|
7 | 7 | |
|
8 | 8 | == Requirements |
|
9 | 9 | |
|
10 | * Ruby on Rails 2.0.2 | |
|
10 | * Ruby on Rails 2.0.2 (not Rails 2.1) | |
|
11 | 11 | * A database (see compatibility below) |
|
12 | 12 | |
|
13 | 13 | Optional: |
@@ -33,17 +33,26 Supported databases: | |||
|
33 | 33 | rake db:migrate RAILS_ENV="production" |
|
34 | 34 | It will create tables and an administrator account. |
|
35 | 35 | |
|
36 | 5. Test the installation by running WEBrick web server: | |
|
36 | 5. Setting up permissions | |
|
37 | The user who runs Redmine must have write permission on the following | |
|
38 | subdirectories: files, log, tmp (create the last one if not present). | |
|
39 | ||
|
40 | Assuming you run Redmine with a user named redmine: | |
|
41 | mkdir tmp | |
|
42 | sudo chown -R redmine:redmine files log tmp | |
|
43 | sudo chmod -R 755 files log tmp | |
|
44 | ||
|
45 | 6. Test the installation by running WEBrick web server: | |
|
37 | 46 | ruby script/server -e production |
|
38 | 47 | |
|
39 | 48 | Once WEBrick has started, point your browser to http://localhost:3000/ |
|
40 | 49 | You should now see the application welcome page |
|
41 | 50 | |
|
42 |
|
|
|
51 | 7. Use default administrator account to log in: | |
|
43 | 52 | login: admin |
|
44 | 53 | password: admin |
|
45 | 54 | |
|
46 |
|
|
|
55 | Go to "Administration" to load the default configuration data (roles, | |
|
47 | 56 | trackers, statuses, workflow) and adjust application settings |
|
48 | 57 | |
|
49 | 58 |
General Comments 0
You need to be logged in to leave comments.
Login now