Skip to content

Commit

Permalink
Update version to 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
snackwangpetter authored and stiartsly committed Mar 2, 2022
1 parent c999f63 commit 46be3fd
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.trinitytech.dapp.feeds" version="2.1.1" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="io.trinitytech.dapp.feeds" version="2.1.2" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Feeds</name>
<description />
<author email="[email protected]" href="https://www.trinity-tech.io">
Expand Down
2 changes: 1 addition & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ import * as Sentry from '@sentry/browser';
Sentry.init({
dsn:
'https://[email protected]/5524842',
release: '2.1.1',
release: '2.1.2',
integrations: [new RewriteFrames()],
});

Expand Down
12 changes: 6 additions & 6 deletions src/app/pages/about/about.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { LanguageService } from 'src/app/services/language.service';
export class AboutPage implements OnInit {
@ViewChild(TitleBarComponent, { static: true }) titleBar: TitleBarComponent;
public connectionStatus = 1;
public version = '2.1.1';
public version = '2.1.2';
public currentLanguage = '';

constructor(
Expand All @@ -28,9 +28,9 @@ export class AboutPage implements OnInit {
public theme: ThemeService,
private titleBarService: TitleBarService,
private languageService: LanguageService
) {}
) { }

ngOnInit() {}
ngOnInit() { }

ionViewWillEnter() {
this.initTitle();
Expand All @@ -43,7 +43,7 @@ export class AboutPage implements OnInit {
});
}

ionViewDidEnter() {}
ionViewDidEnter() { }

initTitle() {
this.currentLanguage = this.languageService.getCurLang();
Expand Down Expand Up @@ -85,15 +85,15 @@ export class AboutPage implements OnInit {
.then(() => {
this.native.toast_trans('common.copysucceeded');
})
.catch(() => {});
.catch(() => { });
}

ionViewWillLeave() {
this.events.unsubscribe(FeedsEvent.PublishType.connectionChanged);
this.events.publish(FeedsEvent.PublishType.addConnectionChanged);
}

showNftDisclaimer(){
showNftDisclaimer() {
this.native.openUrl('https://trinity-feeds.app/disclaimer-nft');
}
}
4 changes: 2 additions & 2 deletions src/assets/manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"id": "io.trinity-tech.dapp.feeds",
"did": "did:elastos:iqtWRVjz7gsYhyuQEb1hYNNmWQt1Z9geXg",
"version": "2.1.1",
"version_code": 20101,
"version": "2.1.2",
"version_code": 20102,
"name": "Feeds",
"short_name": "Feeds",
"short_description": "New social dApp with DID access, multiple choices to service, and ownership of all your social data",
Expand Down
4 changes: 2 additions & 2 deletions trinitynative.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"custom":"feeds"
},
"version": {
"code": 20101,
"name": "2.1.1"
"code": 20102,
"name": "2.1.2"
}
}
}

0 comments on commit 46be3fd

Please sign in to comment.