Skip to content

Commit f4bbbd0

Browse files
author
Jaipreet Singh
committed
Release 0.8
* Contains the changes for Identity feature and Visual Diff of Notebook files * Minor updates to the Diff button style to not make it look huge
1 parent 8fc86e5 commit f4bbbd0

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyterlab/git",
3-
"version": "0.7.1",
3+
"version": "0.8.0",
44
"description": "A JupyterLab extension for version control using git",
55
"main": "lib/index.js",
66
"style": "style/index.css",

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@
88

99
setuptools.setup(
1010
name='jupyterlab_git',
11-
version='0.6.1',
11+
version='0.8.0',
1212
author='Git Intern Team - Noah Stapp, Jenna Landy, Alena Mueller; AWS - Jaipreet Singh, Neelam Gehlot; Quansight - Saul Shanabrook',
1313
description="A server extension for JupyterLab's git extension",
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",
1616
packages=setuptools.find_packages(),
1717
install_requires=[
18-
'notebook'
18+
'notebook',
19+
'nbdime @ git+https://github.com/jupyter/nbdime.git@f96ac655cdb4fce33eb8a2de4ce06913b942a97b'
1920
],
2021
package_data={'jupyterlab_git': ['*']},
21-
)
22+
)

style/diff.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
background-size: 20px;
7777
background-position: center;
7878
background-repeat: no-repeat;
79-
height: 10px;
80-
width: 15px;
79+
height: 2px;
80+
width: 4px;
8181
font-size: var(--jp-ui-font-size1);
8282
line-height: var(--jp-private-toolbar-height);
8383
margin-top: .1em;
@@ -88,6 +88,7 @@
8888
transition: background-color 0.1s ease;
8989
margin-left: 5px;
9090
border: transparent;
91+
float: none;
9192
}
9293

9394
.jp-git-diff-Widget {

0 commit comments

Comments
 (0)