Skip to content

Commit

Permalink
v0.5
Browse files Browse the repository at this point in the history
v1, added right-click contextual capability
  • Loading branch information
rlyles committed Dec 22, 2024
0 parents commit 96d61ab
Show file tree
Hide file tree
Showing 6,121 changed files with 1,231,392 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
18 changes: 18 additions & 0 deletions build/electron-builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
appId: com.giffer.app
productName: GIFfer
directories:
output: dist
buildResources: build
files:
- "**/*"
- "!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}"
- "!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}"
- "!**/node_modules/.bin"
- "!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}"
win:
target:
- target: portable
arch: x64
icon: build/icon.ico
portable:
artifactName: "GIFfer.exe"
Binary file added build/icon.ico
Binary file not shown.
21 changes: 21 additions & 0 deletions electron-builder.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

{
"build": {
"appId": "com.giffer.app",
"productName": "GIFfer",
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"files": [
"**/*"
],
"extraResources": [
{
"from": "build",
"to": "build",
"filter": ["*.ico"]
}
]
}
}
41 changes: 41 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GIFfer</title>
<link rel="stylesheet" href="src/assets/styles.css">
</head>
<body>
<div class="container">
<h1>GIFfer</h1>

<div id="search-container">
<input
type="text"
id="search-input"
placeholder="...?"
autocomplete="off"
>
<button id="reset-button">Reset</button>
<button id="open-folder-button" class="folder-button">Open GIFs Folder</button>
</div>

<div id="gif-gallery"></div>

<div id="modal" class="modal">
<div class="modal-content">
<span class="close-button">&times;</span>
<h2>Edit Tags</h2>
<p id="modal-filename"></p>
<input type="text" id="modal-tags-input" placeholder="Enter tags, separated by commas">
<button id="save-tags-button">Save Tags</button>
</div>
</div>

<div id="notification" class="notification"></div>
</div>

<script src="src/assets/renderer.js"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions installer.nsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
!macro customInit
!macroend

!macro customInstall
!macroend
16 changes: 16 additions & 0 deletions node_modules/.bin/asar

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions node_modules/.bin/asar.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions node_modules/.bin/asar.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions node_modules/.bin/crc32

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions node_modules/.bin/crc32.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions node_modules/.bin/crc32.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions node_modules/.bin/ejs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions node_modules/.bin/ejs.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions node_modules/.bin/ejs.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions node_modules/.bin/electron

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions node_modules/.bin/electron-builder

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions node_modules/.bin/electron-builder.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions node_modules/.bin/electron-builder.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions node_modules/.bin/electron-osx-flat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 96d61ab

Please sign in to comment.