Skip to content

Commit

Permalink
Bump 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vjrj committed Dec 10, 2021
1 parent 5878c92 commit fb3b545
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker/u18/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,12 @@ RUN sed -i '/^#.*\. \/etc\/bash_completion/s/^#//' /etc/bash.bashrc
# la-toolkit backend
RUN mkdir -p /home/ubuntu/la-toolkit
RUN chown -R ubuntu:ubuntu /home/ubuntu/la-toolkit
RUN echo "1.3.1"
RUN echo "1.3.2"
RUN su - ubuntu -c 'git clone --depth 1 https://github.com/living-atlases/la-toolkit-backend.git /home/ubuntu/la-toolkit'
RUN su - ubuntu -c 'cd /home/ubuntu/la-toolkit && npm install'

# la-toolkit frontend
RUN curl -L https://github.com/living-atlases/la-toolkit/releases/download/v1.3.1/flutter-web-1.3.1.tgz | tar xfz - -C /home/ubuntu/la-toolkit/assets/ --strip-components=2
RUN curl -L https://github.com/living-atlases/la-toolkit/releases/download/v1.3.2/flutter-web-1.3.2.tgz | tar xfz - -C /home/ubuntu/la-toolkit/assets/ --strip-components=2
# RUN echo "2021032402"
# COPY build/web/ /home/ubuntu/la-toolkit/assets/
COPY assets/.env.production /home/ubuntu/la-toolkit/assets/assets/env.production.txt
Expand Down
4 changes: 2 additions & 2 deletions docker/u20/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,12 @@ RUN sed -i '/^#.*\. \/etc\/bash_completion/s/^#//' /etc/bash.bashrc
# la-toolkit backend
RUN mkdir -p /home/ubuntu/la-toolkit
RUN chown -R ubuntu:ubuntu /home/ubuntu/la-toolkit
RUN echo "1.3.1"
RUN echo "1.3.2"
RUN su - ubuntu -c 'git clone --depth 1 https://github.com/living-atlases/la-toolkit-backend.git /home/ubuntu/la-toolkit'
RUN su - ubuntu -c 'cd /home/ubuntu/la-toolkit && npm install'

# la-toolkit frontend
RUN curl -L https://github.com/living-atlases/la-toolkit/releases/download/v1.3.1/flutter-web-1.3.1.tgz | tar xfz - -C /home/ubuntu/la-toolkit/assets/ --strip-components=2
RUN curl -L https://github.com/living-atlases/la-toolkit/releases/download/v1.3.2/flutter-web-1.3.2.tgz | tar xfz - -C /home/ubuntu/la-toolkit/assets/ --strip-components=2
# RUN echo "2021032402"
# COPY build/web/ /home/ubuntu/la-toolkit/assets/
COPY assets/.env.production /home/ubuntu/la-toolkit/assets/assets/env.production.txt
Expand Down
6 changes: 5 additions & 1 deletion lib/models/dependencies.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ class Dependencies {
alaInstall: vc('>= 2.1.2'),
generator: vc('>= 1.2.9')
},
vc('>= 1.3.1'): {alaInstall: vc('>= 2.1.3'), generator: vc('>= 1.2.16')},
vc('>= 1.3.1 < 1.3.2'): {
alaInstall: vc('>= 2.1.3'),
generator: vc('>= 1.2.16')
},
vc('>= 1.3.2'): {alaInstall: vc('>= 2.1.4'), generator: vc('>= 1.2.20')},
},

// From here copy-pasted from the wiki:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# version: 1.0.0+1
version: 1.3.1
version: 1.3.2

environment:
sdk: '>=2.12.0 <3.0.0'
Expand Down

0 comments on commit fb3b545

Please sign in to comment.