Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Grégoire Locqueville
purescript-gargantext
Commits
04e6caeb
Commit
04e6caeb
authored
Mar 19, 2020
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[version] add frontend version number
parent
81889fb1
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22 additions
and
5 deletions
+22
-5
packages.json
.psc-package/local/.set/packages.json
+7
-0
package.json
package.json
+2
-0
packages.dhall
packages.dhall
+5
-0
psc-package.json
psc-package.json
+1
-0
App.purs
src/Gargantext/Components/App.purs
+2
-1
GraphExplorer.purs
src/Gargantext/Components/GraphExplorer.purs
+5
-4
No files found.
.psc-package/local/.set/packages.json
View file @
04e6caeb
...
@@ -3235,6 +3235,13 @@
...
@@ -3235,6 +3235,13 @@
"repo"
:
"https://github.com/natefaubion/purescript-variant.git"
,
"repo"
:
"https://github.com/natefaubion/purescript-variant.git"
,
"version"
:
"v6.0.1"
"version"
:
"v6.0.1"
},
},
"versions"
:
{
"dependencies"
:
[
"prelude"
],
"repo"
:
"https://github.com/hdgarrood/purescript-versions.git"
,
"version"
:
"v5.0.1"
},
"web-clipboard"
:
{
"web-clipboard"
:
{
"dependencies"
:
[
"dependencies"
:
[
"web-html"
"web-html"
...
...
package.json
View file @
04e6caeb
{
{
"name"
:
"Gargantext"
,
"version"
:
"0.0.0.4"
,
"scripts"
:
{
"scripts"
:
{
"rebase-set"
:
"spago package-set-upgrade && spago psc-package-insdhall"
,
"rebase-set"
:
"spago package-set-upgrade && spago psc-package-insdhall"
,
"rebuild-set"
:
"spago psc-package-insdhall"
,
"rebuild-set"
:
"spago psc-package-insdhall"
,
...
...
packages.dhall
View file @
04e6caeb
...
@@ -135,6 +135,11 @@ let additions =
...
@@ -135,6 +135,11 @@ let additions =
[ "prelude", "maybe", "strings" ]
[ "prelude", "maybe", "strings" ]
"https://github.com/truqu/purescript-read"
"https://github.com/truqu/purescript-read"
"v1.0.1"
"v1.0.1"
, versions =
mkPackage
[ "prelude" ]
"https://github.com/hdgarrood/purescript-versions.git"
"v5.0.1"
}
}
in upstream ⫽ overrides ⫽ additions
in upstream ⫽ overrides ⫽ additions
psc-package.json
View file @
04e6caeb
...
@@ -39,6 +39,7 @@
...
@@ -39,6 +39,7 @@
"tuples-native"
,
"tuples-native"
,
"uint"
,
"uint"
,
"uri"
,
"uri"
,
"versions"
,
"web-html"
"web-html"
]
]
}
}
src/Gargantext/Components/App.purs
View file @
04e6caeb
...
@@ -30,6 +30,7 @@ import Gargantext.Routes (AppRoute(..))
...
@@ -30,6 +30,7 @@ import Gargantext.Routes (AppRoute(..))
import Gargantext.Sessions (Sessions, useSessions)
import Gargantext.Sessions (Sessions, useSessions)
import Gargantext.Sessions as Sessions
import Gargantext.Sessions as Sessions
import Gargantext.Utils.Reactix as R2
import Gargantext.Utils.Reactix as R2
import Gargantext.Version as GV
-- TODO (what does this mean?)
-- TODO (what does this mean?)
-- tree changes endConfig state => trigger endConfig change in outerLayout, layoutFooter etc
-- tree changes endConfig state => trigger endConfig change in outerLayout, layoutFooter etc
...
@@ -234,7 +235,7 @@ footerCpt = R.staticComponent "G.C.Layout.footer" cpt
...
@@ -234,7 +235,7 @@ footerCpt = R.staticComponent "G.C.Layout.footer" cpt
[ H.p {}
[ H.p {}
[ H.text "Gargantext "
[ H.text "Gargantext "
, H.span {className: "glyphicon glyphicon-registration-mark"} []
, H.span {className: "glyphicon glyphicon-registration-mark"} []
, H.text
", version 4.0
"
, H.text
$ ", version 4.0 (frontend: " <> GV.versionS <> ", backend: TODO)
"
, H.a { href: "http://www.cnrs.fr"
, H.a { href: "http://www.cnrs.fr"
, target: "blank"
, target: "blank"
, title: "Project hosted by CNRS."
, title: "Project hosted by CNRS."
...
...
src/Gargantext/Components/GraphExplorer.purs
View file @
04e6caeb
...
@@ -14,6 +14,11 @@ import Data.Set as Set
...
@@ -14,6 +14,11 @@ import Data.Set as Set
import Data.Tuple (fst, snd, Tuple(..))
import Data.Tuple (fst, snd, Tuple(..))
import Data.Tuple.Nested ((/\))
import Data.Tuple.Nested ((/\))
import Effect.Aff (Aff)
import Effect.Aff (Aff)
import Math (log)
import Partial.Unsafe (unsafePartial)
import Reactix as R
import Reactix.DOM.HTML as RH
import Gargantext.Components.Forest (forest)
import Gargantext.Components.Forest (forest)
import Gargantext.Components.Graph as Graph
import Gargantext.Components.Graph as Graph
import Gargantext.Components.GraphExplorer.Controls as Controls
import Gargantext.Components.GraphExplorer.Controls as Controls
...
@@ -30,10 +35,6 @@ import Gargantext.Sessions (Session, Sessions, get)
...
@@ -30,10 +35,6 @@ import Gargantext.Sessions (Session, Sessions, get)
import Gargantext.Types as Types
import Gargantext.Types as Types
import Gargantext.Utils.Range as Range
import Gargantext.Utils.Range as Range
import Gargantext.Utils.Reactix as R2
import Gargantext.Utils.Reactix as R2
import Math (log)
import Partial.Unsafe (unsafePartial)
import Reactix as R
import Reactix.DOM.HTML as RH
type GraphId = Int
type GraphId = Int
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment