Skip to content

Commit

Permalink
v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
X-Wei committed Dec 1, 2019
1 parent cd02452 commit b3a7864
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 2 deletions.
3 changes: 3 additions & 0 deletions go/packaging/linux-appimage/AppRun
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
cd "$(dirname "$0")"
exec ./build/flutter_catalog
10 changes: 10 additions & 0 deletions go/packaging/linux-appimage/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM ubuntu:bionic
WORKDIR /opt
RUN apt-get update && \
apt-get install libglib2.0-0 curl file -y
RUN curl -LO https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage && \
chmod a+x appimagetool-x86_64.AppImage && \
./appimagetool-x86_64.AppImage --appimage-extract && \
mv squashfs-root appimagetool && \
rm appimagetool-x86_64.AppImage
ENV PATH=/opt/appimagetool/usr/bin:$PATH
8 changes: 8 additions & 0 deletions go/packaging/linux-appimage/flutter_catalog.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Categories=
Name=flutter_catalog
Icon=/build/assets/icon
Exec=
2 changes: 1 addition & 1 deletion lib/constants.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:flutter/material.dart';

// *Note*: when APP_VERSION is changed, remember to also update pubspec.yaml.
const APP_VERSION = 'v2.3.5';
const APP_VERSION = 'v2.4.0';
const APP_NAME = 'Flutter Catalog';
final kAppIcon =
Image.asset('res/images/launcher_icon.png', height: 64.0, width: 64.0);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: flutter_catalog
description: An app showcasing Flutter components, with side-by-side source code view.

# *Note*: when version change, remember to also update constants.dart.
version: 2.3.5+47
version: 2.4.0+48

environment:
sdk: ">=2.3.0 <3.0.0"
Expand Down

0 comments on commit b3a7864

Please sign in to comment.