Skip to content

Commit 826a83a

Browse files
chore: bump version to 0.1.2
1 parent ce5e15b commit 826a83a

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

.github/workflows/flutter.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
echo "RELEASE_FILE=build/app/outputs/bundle/profile/app-profile.aab" >> $GITHUB_ENV
4545
echo "RELEASE_FILE_APK=build/app/outputs/flutter-apk/app-profile.apk" >> $GITHUB_ENV
46-
echo "RELEASE_NAME=v0.1.1-${{ github.sha }}" >> $GITHUB_ENV
46+
echo "RELEASE_NAME=v0.1.2-${{ github.sha }}" >> $GITHUB_ENV
4747
- if: ${{ !github.event.issue.pull_request && !startsWith(github.ref, 'refs/tags/') }}
4848
name: Set env vars for staging
4949
run: |
@@ -55,7 +55,7 @@ jobs:
5555
5656
echo "RELEASE_FILE=build/app/outputs/bundle/release/app-release.aab" >> $GITHUB_ENV
5757
echo "RELEASE_FILE_APK=build/app/outputs/flutter-apk/app-release.apk" >> $GITHUB_ENV
58-
echo "RELEASE_NAME=v0.1.1-${{ github.sha }}" >> $GITHUB_ENV
58+
echo "RELEASE_NAME=v0.1.2-${{ github.sha }}" >> $GITHUB_ENV
5959
- if: ${{ !github.event.issue.pull_request && startsWith(github.ref, 'refs/tags/') }}
6060
name: Set env vars for release
6161
run: |

.idea/workspace.xml

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

data/com.expidusos.file_manager.metainfo.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,19 @@
2323
</categories>
2424

2525
<releases>
26+
<release version="0.1.2" date="2023-06-06">
27+
<description>
28+
<p>Fixes the text contrasting issue on desktop devices. Some additional changes made to hopefully fix release assets.</p>
29+
30+
<url>https://github.com/ExpidusOS/file-manager/releases/tag/0.1.2</url>
31+
</description>
32+
</release>
2633
<release version="0.1.1" date="2023-06-05">
2734
<description>
2835
<p>Decreased the minimum Android API level from 33 to 19, this will support many devices now. Finalize the localizations by adding them to the about title and feedback category list.</p>
2936
</description>
3037

31-
<url>https://github.com/ExpidusOS/file-manager/releases/tag/0.1.0</url>
38+
<url>https://github.com/ExpidusOS/file-manager/releases/tag/0.1.1</url>
3239

3340
<artifacts>
3441
<artifact type="binary" platform="x86_64-linux-gnu">

deps.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"name": "file_manager",
4-
"version": "0.1.1+1",
4+
"version": "0.1.2+1",
55
"kind": "root",
66
"source": "root",
77
"dependencies": [

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
in {
2525
packages.default = pkgs.flutter.buildFlutterApplication {
2626
pname = "expidus-file-manager";
27-
version = "0.1.1-${self.shortRev or "dirty"}";
27+
version = "0.1.2-${self.shortRev or "dirty"}";
2828

2929
src = cleanSource self;
3030

3131
depsListFile = ./deps.json;
32-
vendorHash = "sha256-q8UZEEheEFWfQEDwjRSodznsYYVa8zJ9jguNf0JH0FQ=";
32+
vendorHash = "sha256-mPGrpMUguM9XAYWH8lBQuytxZ3J0gS2XOMPkKyFMLbc=";
3333

3434
postInstall = ''
3535
rm $out/bin/file_manager

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: file_manager
22
description: The file manager for the Expidus operating system.
33
publish_to: 'none'
4-
version: 0.1.1+1
4+
version: 0.1.2+1
55
homepage: https://expidusos.com
66

77
environment:

0 commit comments

Comments
 (0)