Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Mobile
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
107
Issues
107
List
Boards
Labels
Service Desk
Milestones
Merge Requests
10
Merge Requests
10
Registry
Registry
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Minds
Minds Mobile
Compare Revisions
d81c6530e3f6e71f81e9462cbdf4dc11bdc6e982...c9b05c53ca6b4109b8670fd57d8307bfa211c47e
Source
c9b05c53ca6b4109b8670fd57d8307bfa211c47e
Select Git revision
...
Target
d81c6530e3f6e71f81e9462cbdf4dc11bdc6e982
Select Git revision
Compare
Commits (2)
(feat) disable boosts actions for onchain
· 76aa0e05
Martin Santangelo
authored
5 hours ago
76aa0e05
release v3.7.2
· c9b05c53
Martin Santangelo
authored
1 hour ago
c9b05c53
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
11 deletions
+13
-11
BlogCard.js.snap
__tests__/blogs/__snapshots__/BlogCard.js.snap
+1
-1
BlogsViewScreen.js.snap
__tests__/blogs/__snapshots__/BlogsViewScreen.js.snap
+1
-1
ChannelHeader.js.snap
__tests__/channel/header/__snapshots__/ChannelHeader.js.snap
+1
-1
gradle.properties
android/gradle.properties
+3
-3
Info.plist
ios/Minds/Info.plist
+2
-2
BoostActionBar.js
src/boost/BoostActionBar.js
+3
-1
Version.js
src/config/Version.js
+2
-2
No files found.
__tests__/blogs/__snapshots__/BlogCard.js.snap
View file @
c9b05c53
...
...
@@ -39,7 +39,7 @@ exports[`blog card component should renders correctly 1`] = `
source={
Object {
"headers": Object {
"App-Version": "3.7.
1
",
"App-Version": "3.7.
2
",
"Cache-Control": "no-cache, no-store, must-revalidate",
"Pragma": "no-cache",
},
...
...
This diff is collapsed.
Click to expand it.
__tests__/blogs/__snapshots__/BlogsViewScreen.js.snap
View file @
c9b05c53
...
...
@@ -158,7 +158,7 @@ exports[`blog view screen component should renders correctly 1`] = `
source={
Object {
"headers": Object {
"App-Version": "3.7.
1
",
"App-Version": "3.7.
2
",
"Cache-Control": "no-cache, no-store, must-revalidate",
"Pragma": "no-cache",
},
...
...
This diff is collapsed.
Click to expand it.
__tests__/channel/header/__snapshots__/ChannelHeader.js.snap
View file @
c9b05c53
...
...
@@ -22,7 +22,7 @@ exports[`channel header component owner should render correctly 1`] = `
source={
Object {
"headers": Object {
"App-Version": "3.7.
1
",
"App-Version": "3.7.
2
",
"Cache-Control": "no-cache, no-store, must-revalidate",
"Pragma": "no-cache",
},
...
...
This diff is collapsed.
Click to expand it.
android/gradle.properties
View file @
c9b05c53
...
...
@@ -22,10 +22,10 @@ org.gradle.jvmargs=-Xmx2048m
systemProp.org.gradle.internal.http.connectionTimeout
=
180000
systemProp.org.gradle.internal.http.socketTimeout
=
180000
versionName
=
3.7.
1
versionName
=
3.7.
2
# CUSTOM
versionCode
=
105000000
4
versionCode
=
105000000
5
# PLAY STORE
#versionCode=31002
5
#versionCode=31002
6
This diff is collapsed.
Click to expand it.
ios/Minds/Info.plist
View file @
c9b05c53
...
...
@@ -19,7 +19,7 @@
<key>
CFBundlePackageType
</key>
<string>
APPL
</string>
<key>
CFBundleShortVersionString
</key>
<string>
3.7.
1
</string>
<string>
3.7.
2
</string>
<key>
CFBundleSignature
</key>
<string>
????
</string>
<key>
CFBundleURLTypes
</key>
...
...
@@ -36,7 +36,7 @@
</dict>
</array>
<key>
CFBundleVersion
</key>
<string>
20190
61
30001
</string>
<string>
20190
70
30001
</string>
<key>
CodePushDeploymentKey
</key>
<string>
_C083_CqL7CmKwASrv6Xrj1wqH7erJMhIBnRQ
</string>
<key>
ITSAppUsesNonExemptEncryption
</key>
...
...
This diff is collapsed.
Click to expand it.
src/boost/BoostActionBar.js
View file @
c9b05c53
...
...
@@ -34,13 +34,15 @@ import i18n from '../common/services/i18n.service';
export
default
class
BoostActionBar
extends
Component
{
render
()
{
let
actions
=
null
;
if
(
this
.
props
.
entity
.
currency
!==
'
tokens
'
)
actions
=
this
.
renderActions
();
return
(
<
View
style
=
{
styles
.
container
}
>
{
this
.
renderTarget
()}
{
this
.
renderViews
()}
{
this
.
renderBid
()}
{
this
.
renderStatus
()}
{
this
.
renderActions
()
}
{
actions
}
<
/View
>
);
}
...
...
This diff is collapsed.
Click to expand it.
src/config/Version.js
View file @
c9b05c53
export
const
Version
=
{
VERSION
:
'
3.7.
1
'
,
BUILD
:
'
20190
614
'
VERSION
:
'
3.7.
2
'
,
BUILD
:
'
20190
703
'
};
This diff is collapsed.
Click to expand it.