Skip to content

Commit 83df554

Browse files
committed
photo viewer with link to full size image to view detals; docu
1 parent 60edd19 commit 83df554

File tree

2 files changed

+18
-13
lines changed

2 files changed

+18
-13
lines changed

PhotoApp/src/pages/viewer.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<q-page v-if="photo !== undefined" class="column wrap items-center ">
1010
<div class="row items-center" style="padding-top: 5px; padding-bottom: 5px;">
11-
Selected image <q-btn :disable="!hasPrev" @click="move(-1)" icon="chevron_left" title="Move to previous image." :style="hasPrev ? {} : {color: 'grey'}"></q-btn>
11+
<q-btn :disable="!hasPrev" @click="move(-1)" icon="chevron_left" title="Move to previous image." :style="hasPrev ? {} : {color: 'grey'}"></q-btn>
1212
<span class="time-text"><span v-if="locationText !== undefined">{{locationText}}</span><span v-else>{{locationTextPrev}}</span> | {{dateText}}</span>
1313
<q-btn :disable="!hasNext" @click="move(+1)" icon="chevron_right" title="Move to next image." :style="hasNext ? {} : {color: 'grey'}"></q-btn>
1414
<q-select v-model="processing" :options="['original', 'lighten', 'lighten strong', 'darken', 'darken strong']" label="Processing" dense options-dense style="width: 200px;" rounded standout/>
@@ -24,7 +24,8 @@
2424
{label: 'No incorrect', value: 'no_incorrect'},
2525
{label: 'None', value: 'none'}
2626
]"
27-
/>
27+
/>
28+
<a :href="imageURL" target="_blank" title="Open current image at new tab to view details."><q-icon size="md" name="image_search" /></a>
2829
</div>
2930
<div style="position: relative;" class="" ref="imageDiv">
3031
<img :src="imageURL" :style="{'max-width': maxImageWidth + 'px', 'max-height': maxImageHeight + 'px'}" ref="image" @load="onLoadImage" @error="onErrorImage"/>

README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
# AudioDB
1+
# AudioDB / PhotoDB
22

3-
Requirements: Java 11 (or newer)
3+
This repository contains sources, documentation and release packages of AudioDB and PhotoDB.
4+
In brief, the whole package is called **AudioDB** (which also includes PhotoDB).
45

5-
AudioDB releases:
66

7-
https://github.com/Nature40/audiodb/releases
7+
Requirements: [Java 11 (or newer)](https://adoptium.net)
88

9-
# Installation on Ubuntu
9+
Supported operation systems: **Ubuntu** and **Windows**
10+
11+
AudioDB releases: https://github.com/Nature40/audiodb/releases
12+
13+
# Deployment on Ubuntu
1014

1115
Install Java, e.g.:
1216

@@ -38,26 +42,26 @@ http://127.0.0.1:8080/
3842
Stop server by key crtl-c or by closing the terminal.
3943

4044

41-
# Installation on Windows
45+
# Deployment on Windows
4246

43-
Install Java
47+
Install [Java](https://adoptium.net)
4448

45-
Download AudioDB package and extract.
49+
Download AudioDB [package](https://github.com/Nature40/audiodb/releases) and extract.
4650

4751
# Running on Windows
4852

49-
Start AudioDB server:
53+
Start AudioDB server: Run the start script from the **command line** or just **double click** at the script file:
5054

5155
```
5256
win_audio.cmd
5357
```
5458

55-
Open AudioDB web-interface on a browser.
59+
Open AudioDB web-interface on a **web browser**.
5660
Local URL with default port 8080:
5761

5862
http://127.0.0.1:8080/
5963

60-
Stop server by key crtl-c or by closing the terminal.
64+
Stop server by key **ctrl-c** or by closing the terminal.
6165

6266
# Configuration
6367

0 commit comments

Comments
 (0)