Skip to content

Commit 6337bda

Browse files
authored
Merge pull request #552 from camicroscope/develop
For 3.9.8
2 parents da9bf9d + 22c74e1 commit 6337bda

21 files changed

+426
-164
lines changed

HISTORY.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2424
* **Version 1**
2525
* [1.0.x](#camicroscope-10)
2626

27-
### caMicroscope [Unreleased](https://github.com/camicroscope/camicroscope/compare/v3.9.4...camicroscope:develop)
27+
### caMicroscope [Unreleased](https://github.com/camicroscope/camicroscope/compare/v3.9.8...camicroscope:develop)
2828
###### TBD
2929

30+
31+
### caMicroscope [3.9.8](https://github.com/camicroscope/camicroscope/compare/v3.9.6...camicroscope:v3.9.8)
32+
###### 2021-10-21
33+
* Add Segmentation -> Annotation Functionality [#542](https://github.com/camicroscope/caMicroscope/pull/542)
34+
* Margin and Table UI Fixes [#549](https://github.com/camicroscope/caMicroscope/pull/549) [#551](https://github.com/camicroscope/caMicroscope/pull/551)
35+
* Add Pathdb Quad Lookup
36+
* Add Docs link to landing
37+
* retry slides one time if they have an error
38+
3039
### caMicroscope [3.9.6](https://github.com/camicroscope/camicroscope/compare/v3.9.4...camicroscope:v3.9.6)
3140
###### 2021-08-05
3241
* Some integration with the "Smartpen" concept [#526](https://github.com/camicroscope/caMicroscope/pull/526), [#532](https://github.com/camicroscope/caMicroscope/pull/532)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ The toolbar is in the top-left of the main content window. Use the toolbar butto
3131
| ![](https://fonts.gstatic.com/s/i/materialicons/apps/v4/24px.svg) | Annotations | Opens the Annotation panel, where you can select which annotation set to view, name that annotation set, add optional notes about the annotation set, save the annotation set, and reset the panel to its original state. |
3232
| ![](https://fonts.gstatic.com/s/i/materialicons/view_list/v4/24px.svg) | Layer Manager | Opens the Layers Manager panel, where you can select which layers to view. |
3333
| ![](https://fonts.gstatic.com/s/i/materialicons/home/v4/24px.svg) | Home | Return to the data table so that you can open another slide.|
34-
| ![](https://fonts.gstatic.com/s/i/materialicons/create/v4/24px.svg) | Draw | Draw thin lines, thick lines, or polygons on the image. To maintain the integrity of measurements, avoid drawing shapes that overlap or intersect one another. |
35-
| ![](https://fonts.gstatic.com/s/i/materialicons/colorize/v4/24px.svg) | Preset Labels | Use a preset annotation type immediately to quickly annotate a silde consistently. |
34+
| ![](https://fonts.gstatic.com/s/i/materialicons/create/v4/24px.svg) | Draw | Draw thin lines, thick lines, or polygons on the image. Annotations can also be computer aided using the Smart-pen tool. Draw them, stretch them, remove them. To maintain the integrity of measurements, avoid drawing shapes that overlap or intersect one another. |
35+
| ![](https://fonts.gstatic.com/s/i/materialicons/colorize/v4/24px.svg) | Preset Labels | Use a preset annotation type immediately to quickly annotate a slide consistently. |
3636
| ![](https://fonts.gstatic.com/s/i/materialicons/search/v4/24px.svg) | Magnifier |The Magnifier works like a magnifying glass and allows you to see the slide at normal magnification (1.0), low magnification (0.5), or high magnification (2.0). Click a magnification level and place the bounding box on the area of the slide you want to magnify. |
3737
| ![](https://fonts.gstatic.com/s/i/materialicons/space_bar/v4/24px.svg) | Measurement | Drag this tool on the slide to learn the measurement in micrometers. |
3838
| ![](https://fonts.gstatic.com/s/i/materialicons/share/v4/24px.svg) | Share View |Opens a window with a URL to the current presentation state of the slide including the magnification level, layers that are currently open, and your position on the image.|

apps/Info.html

+2-4
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,15 @@
6363
<li class="nav-item link" style="font-family: sans-serif;">
6464
<a class="nav-link" href="landing/landing.html"> <i class="fas fa-home"></i> Home</a>
6565
</li>
66-
<li class="nav-item active link" style="font-family: sans-serif;">
66+
<li class="nav-item link" style="font-family: sans-serif;">
6767
<a class="nav-link" href="table.html"> <i class="fas fa-list-ul"></i> Slides</a>
6868
</li>
69-
<li class="nav-item link">
69+
<li class="nav-item active link">
7070
<a class="nav-link" href="Info.html"> <i class="fas fa-info-circle"></i> Info</a>
7171
</li>
7272
<li class="nav-item link">
7373
<a class="nav-link" href="./dev-workbench/workbench.html"> <i class="fas fa-pencil-ruler"></i> Workbench</a>
7474
</li>
75-
</ul>
76-
<ul class="navbar-nav ms-auto">
7775
<li class="nav-item link" style="font-family: sans-serif;">
7876
<a class="nav-link" href="./signup/signup.html"> <i class="fas fa-user-plus"></i> Signup</a>
7977
</li>

apps/landing/landing.html

+5-7
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
<nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-dark" style="position: sticky; margin-top: -4em;">
3838
<div class="container-fluid">
39-
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
39+
<button class="navbar-toggler m-1" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
4040
<span class="navbar-toggler-icon"></span>
4141
</button>
4242
<div class="collapse navbar-collapse" id="navbarSupportedContent" >
@@ -53,8 +53,6 @@
5353
<li class="nav-item link">
5454
<a class="nav-link" href="../dev-workbench/workbench.html"> <i class="fas fa-pencil-ruler"></i> Workbench</a>
5555
</li>
56-
</ul>
57-
<ul class="navbar-nav ms-auto">
5856
<li class="nav-item link" style="font-family: sans-serif;">
5957
<a class="nav-link" href="../signup/signup.html"> <i class="fas fa-user-plus"></i> Signup</a>
6058
</li>
@@ -97,11 +95,11 @@ <h3>caMicroscope</h3>
9795
</div>
9896
</section>
9997
<section class="post">
100-
<a target="_blank" href="https://github.com/camicroscope/" class="image"><img src="./code.jpg" alt=""/></a>
98+
<a target="_blank" href="https://camicroscope.github.io/docs/" class="image"><img src="./code.jpg" alt=""/></a>
10199
<div class="content">
102-
<h3>Source Code</h3>
103-
<p>Get and use the code, or file issues on our github repositories.</p>
104-
<a target="_blank" href="https://github.com/camicroscope/" class="button">More</a>
100+
<h3>Documentation</h3>
101+
<p>Read documentation for using and developing caMicroscope.</p>
102+
<a target="_blank" href="https://camicroscope.github.io/docs/" class="button">More</a>
105103
</div>
106104
</section>
107105
</div>

apps/segment/segment.css

+12-12
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ ul.disabled {
197197
#choice_panel .modalbox-content{
198198
width: 25%;
199199

200-
200+
201201
}
202202
#details_panel .modalbox-content{
203203
width: 25%;
@@ -313,19 +313,19 @@ ul.disabled {
313313
}
314314
.btn-del{
315315
background-color: red;
316-
border: none;
317-
color: white;
318-
padding: 12px 16px;
319-
font-size: 14px;
320-
cursor: pointer;
316+
border: none;
317+
color: white;
318+
padding: 12px 16px;
319+
font-size: 14px;
320+
cursor: pointer;
321321
}
322322
body{
323323
color: black;
324324
}
325325

326326

327327
.btn-sel {
328-
328+
329329
border: 10px ;
330330
border-color: black;
331331
padding: 10px;
@@ -431,21 +431,21 @@ body{
431431
}
432432

433433
#ext1{
434-
434+
435435
text-align: center;
436436
font-size: 16px;
437437

438438

439439
}
440440
#ext2{
441-
441+
442442
text-align: center;
443443
font-size: 16px;
444444

445445
}
446446
.extract{
447447
padding : 3% 6% 3% 6%;
448-
448+
449449
color: white;
450450
background-color:#46a049 !important;
451451
border-radius: 7%;
@@ -454,7 +454,7 @@ body{
454454
}
455455

456456
.extract:hover {
457-
457+
458458
transform: scale(1.2);
459459
cursor: pointer;
460460

@@ -505,4 +505,4 @@ body{
505505
@keyframes fadeout {
506506
from {bottom: 30px; opacity: 1;}
507507
to {bottom: 0; opacity: 0;}
508-
}
508+
}

apps/segment/segment.html

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@
135135
<script type='text/javascript' src='../../core/Store.js'></script>
136136
<script type='text/javascript' src='../../core/CaMic.js'></script>
137137

138+
<script type='text/javascript' src='../../core/extension/segment-annotation.js'></script>
138139
<script type='text/javascript' src='../../core/extension/openseadragon-canvas-draw-overlay.js'></script>
139140
<script type='text/javascript' src='../../core/extension/openseadragon-overlays-manage.js'></script>
140141
<script type='text/javascript' src='../../core/extension/openseadragon-measurement-tool/openseadragon-measurement-tool.js'></script>

0 commit comments

Comments
 (0)