Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation shift and minor changes #13

Merged
merged 3 commits into from
Dec 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name = "ExifViewer"
uuid = "81511e1f-44aa-483a-b228-c9d3a109f0d4"
authors = ["Ashwani Rathee <[email protected]>"]
version = "0.1.0"

[deps]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
ExifViewer.jl is a Julia wrapper of the C library libexif that provides EXIF support. EXIF is short for Exchangeable Image File, a format that is a standard for storing interchange information in digital photography image files using JPEG compression.
</p>

[![Docs-dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://ashwani-rathee.github.io/ExifViewer.jl) [![Slack](https://img.shields.io/badge/chat-slack-e01e5a)](https://join.slack.com/t/julialang/shared_invite/zt-1hxxb5ryp-Ts_egJ7FRN2muQ7nkTtCNQ) [![License: MIT](https://img.shields.io/badge/License-MIT-success.svg)](https://opensource.org/licenses/MIT) [![Downloads](https://shields.io/endpoint?url=https://pkgs.genieframework.com/api/v1/badge/ExifViewer)](https://pkgs.genieframework.com?packages=ExifViewer)
[![Docs-dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliaimages.org/ExifViewer.jl/dev/) [![Slack](https://img.shields.io/badge/chat-slack-e01e5a)](https://join.slack.com/t/julialang/shared_invite/zt-1hxxb5ryp-Ts_egJ7FRN2muQ7nkTtCNQ) [![License: MIT](https://img.shields.io/badge/License-MIT-success.svg)](https://opensource.org/licenses/MIT) [![Downloads](https://shields.io/endpoint?url=https://pkgs.genieframework.com/api/v1/badge/ExifViewer)](https://pkgs.genieframework.com?packages=ExifViewer)
### Installation
---
If you have not yet installed Julia, please follow the [instructions](https://julialang.org/downloads/platform/) for your operating system.
Expand All @@ -21,7 +21,7 @@ Dev Version
```julia
using Pkg
# Enter ']' from the REPL to enter Pkg mode.
pkg> add https://github.com/ashwani-rathee/ExifViewer.jl.git
pkg> add https://github.com/JuliaImages/ExifViewer.jl.git
```

### Usage
Expand Down Expand Up @@ -108,4 +108,4 @@ Note: Some tags are present by default like EXIF version, FLASHPIX version etc a

### Contributions and Issues:

If you have questions about ExifViewer.jl, feel free to get in touch via Slack or open an issue :hearts:
If you have questions about ExifViewer.jl, feel free to get in touch via Slack or open an issue :hearts:
16 changes: 2 additions & 14 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,9 @@ DocMeta.setdocmeta!(ExifViewer, :DocTestSetup, :(using ExifViewer); recursive=tr

makedocs(;
modules=[ExifViewer],
authors="Ashwani Rathee",
repo="github.com/ashwani-rathee/ExifViewer.jl/blob/{commit}{path}#{line}",
sitename="ExifViewer.jl",
format=Documenter.HTML(;
prettyurls=Base.get(ENV, "CI", "false") == "true",
canonical="https://ashwani-rathee.github.io/ExifViewer.jl",
assets=String[],
),
pages=[
"Home" => "index.md",
],
)

deploydocs(;
repo="github.com/ashwani-rathee/ExifViewer.jl",
devbranch="main",
push_preview = true
)
repo="github.com/JuliaImages/ExifViewer.jl",
)
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CurrentModule = ExifViewer

# ExifViewer

This is the documentation for [ExifViewer](https://github.com/ashwani-rathee/ExifViewer.jl)
This is the documentation for [ExifViewer](https://github.com/JuliaImages/ExifViewer.jl)

ExifViewer.jl is a Julia wrapper of the C library libexif that provides EXIF support.

Expand Down