File tree Expand file tree Collapse file tree 8 files changed +80
-14
lines changed Expand file tree Collapse file tree 8 files changed +80
-14
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ COPY Gemfile* /app/
11
11
RUN gem install bundler
12
12
RUN bundle install --jobs 4
13
13
14
+ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
15
+ RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
16
+ RUN apt-get update && apt-get install -y yarn
17
+
14
18
RUN mkdir /app/log
15
19
16
20
COPY . /app/
Original file line number Diff line number Diff line change 1
1
# Tracks: a GTD(TM) web application, built with Ruby on Rails
2
2
3
+ [ ![ Build Status] ( https://github.com/TracksApp/tracks/workflows/Continuous%20Integration/badge.svg )] ( https://github.com/TracksApp/tracks/actions )
4
+ [ ![ Code Climate] ( https://codeclimate.com/github/TracksApp/tracks/badges/gpa.svg )] ( https://codeclimate.com/github/TracksApp/tracks )
5
+
3
6
* Project homepage: http://www.getontracks.org/
4
7
* Manual: http://www.getontracks.org/manual/
5
8
* Source at GitHub: https://github.com/TracksApp/tracks
13
16
* Contributors: https://github.com/TracksApp/tracks/wiki/Contributors
14
17
* License: See COPYING
15
18
16
- [ ![ Build Status] ( https://github.com/TracksApp/tracks/workflows/Continuous%20Integration/badge.svg )] ( https://github.com/TracksApp/tracks/actions )
17
- [ ![ Code Climate] ( https://codeclimate.com/github/TracksApp/tracks/badges/gpa.svg )] ( https://codeclimate.com/github/TracksApp/tracks )
18
-
19
19
Full instructions for both new installations and upgrades from older installations
20
20
of Tracks can be found in the [ wiki] ( https://github.com/TracksApp/tracks/wiki/Installation ) .
21
21
22
22
If you are thinking about contributing towards the development of Tracks,
23
23
please read /CONTRIBUTING.md for general information. Also you can find
24
24
some information on development, testing and contributing on the wiki.
25
25
26
- While fully usable for everyday use, Tracks is still a work in progress. Make
27
- sure that you take sensible precautions and back up all your data frequently,
26
+ As always, make sure that you take sensible precautions and back up all your data frequently,
28
27
taking particular care when you are upgrading.
29
28
30
29
Enjoy being productive!
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Apparently the requires need to be in the "root" stylesheet file, not
3
+ * the imported manifest.
4
+ *
5
+ *= require jquery-ui/menu
6
+ *= require jquery-ui/autocomplete
7
+ *= require jquery-ui/datepicker
8
+ *= require jquery-ui/dialog
9
+ *= require jquery-ui/sortable
10
+ *= require_self
11
+ */
12
+
1
13
$gray-lighter : #EEE ;
2
14
$brand-primary : rgba (0 , 0 , 0 , 0.75 );
3
15
$navbar-inverse-bg : $brand_primary ;
Original file line number Diff line number Diff line change 9
9
* compiled file so the styles you add here take precedence over styles defined in any styles
10
10
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
11
* file per style scope.
12
- *
13
- *= require jquery-ui/menu
14
- *= require jquery-ui/autocomplete
15
- *= require jquery-ui/datepicker
16
- *= require jquery-ui/dialog
17
- *= require jquery-ui/sortable
18
- *= require_self
19
12
*/
20
13
21
14
@import " icons" ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Apparently the requires need to be in the "root" stylesheet file, not
3
+ * the imported manifest.
4
+ *
5
+ *= require jquery-ui/menu
6
+ *= require jquery-ui/autocomplete
7
+ *= require jquery-ui/datepicker
8
+ *= require jquery-ui/dialog
9
+ *= require jquery-ui/sortable
10
+ *= require_self
11
+ */
12
+
1
13
$gray-lighter : lighten (#000 , 93.5% );
2
14
$brand-primary : #3C6997 ;
3
15
$navbar-inverse-bg : $brand_primary ;
Original file line number Diff line number Diff line change 1
- tracks_version = '2.4.2 '
1
+ tracks_version = '2.5.0 '
2
2
# comment out next two lines if you do not want (or can not) the date of the
3
3
# last git commit in the footer
4
4
info = `git log --pretty=format:"%ai" -1`
Original file line number Diff line number Diff line change
1
+ ## Version 2.5.0
2
+
3
+ See doc/upgrading.md for the upgrade documentation!
4
+
5
+ ### New features
6
+ * Updated documentation both in the doc directory and online.
7
+ * .skip-docker file has been replaced with .use-docker, see upgrading.md for
8
+ details.
9
+ * Added email, last login, creation and update time to the user model.
10
+ * Added terms of service and email fields to the signup form. The TOS link is
11
+ defined in site.yml, see config/site.yml.tmpl.
12
+ * New, lighter default color scheme. The black color scheme is also available
13
+ for selection in the user preferences. Default theme can be set in site.yml.
14
+ * Added a help page to the ? menu linking to online help assets.
15
+ * Allow the user to remove their own account.
16
+
17
+ ### Removed features
18
+ * Ruby versions below 2.5 are no longer supported.
19
+ * Old Internet Explorer versions (7 and 8) are no longer supported.
20
+
21
+ ### Bug fixes
22
+ * Fixed the signup form to use login form styles.
23
+ * Lots of dependencies have been upgraded, including Rails major upgrade.
24
+ * Fixed some minor UI bugs.
25
+
1
26
## Version 2.4.2
2
27
3
28
### New features
Original file line number Diff line number Diff line change 1
1
# Upgrading Tracks
2
- ## Upgrading from Tracks 2.4.2 to 2.5
2
+
3
+ ## General upgrade instructions
4
+
5
+ * Remember to always backup your database before upgrading! Test before
6
+ upgrading production environments.
7
+
8
+ * For information regarding installation see doc/installation.md.
9
+
10
+ * Make sure to run database migrations using one one of the following:
11
+ ```
12
+ # For pure (Dockerless) installation:
13
+ $ rake db:migrate
14
+
15
+ # For Docker Compose installation:
16
+ $ bin/rake db:migrate
17
+
18
+ # For separate Docker container installation either one of:
19
+ $ docker run --link mariadb:db --rm -t tracks bin/rake db:migrate
20
+ $ docker run --link postgres:db --rm -t tracks bin/rake db:migrate
21
+ ```
22
+
23
+ ## Upgrading from Tracks 2.4.2 to 2.5.0
3
24
4
25
* If you're using the Docker Compose environment and want to run the commands in
5
26
the bin/ directory inside the container from the host system, add a .use-docker
You can’t perform that action at this time.
0 commit comments