Skip to content

Commit

Permalink
Merge pull request #184 from e-picsa/fix/resource-progress
Browse files Browse the repository at this point in the history
fix: resource download progress
  • Loading branch information
chrismclarke authored Oct 6, 2023
2 parents ee37eb1 + bcb2c37 commit bc94c87
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions apps/picsa-apps/extension-app-native/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "io.picsa.extension"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 3035000
versionName "3.35.0"
versionCode 3035001
versionName "3.35.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[class]="'spinner' + styleVariant"
color="primary"
[mode]="downloadProgress > 0 ? 'determinate' : 'indeterminate'"
[value]="50"
[value]="downloadProgress"
[diameter]="size"
[style.width]="sizePx"
[attr.data-style-variant]="styleVariant"
Expand Down
2 changes: 1 addition & 1 deletion libs/environments/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import packageJson from '../../../package.json';

export const APP_VERSION = {
number: packageJson.version,
date: '2023-10-05',
date: '2023-10-06',
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "picsa-apps",
"version": "3.35.0",
"version": "3.35.1",
"license": "See LICENSE",
"scripts": {
"ng": "nx",
Expand Down

0 comments on commit bc94c87

Please sign in to comment.