Skip to content

Commit

Permalink
Rename application image-organizer
Browse files Browse the repository at this point in the history
  • Loading branch information
Seledrex committed Dec 29, 2020
1 parent 5e540a8 commit 0bc036b
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: Image Organizer-1.0.dmg
asset_path: image-organizer-1.0.dmg
asset_name: image-organizer.dmg
asset_content_type: application/x-apple-diskimage
build-exe:
Expand All @@ -59,6 +59,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: Image Organizer-1.0.exe
asset_path: image-organizer-1.0.exe
asset_name: image-organizer.exe
asset_content_type: application/vnd.microsoft.portable-executable
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ pom.xml.asc
/.cpcache
*.dmg
*.exe
*.deb
/.clj-kondo/.cache
3 changes: 2 additions & 1 deletion jpackage/common
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
--input dist
--main-jar image-organizer.jar
--name "Image Organizer"
--name "image-organizer"
--main-class clojure.main
--arguments -m
--arguments image-organizer.core
--resource-dir resources

File renamed without changes.
File renamed without changes.
File renamed without changes
2 changes: 1 addition & 1 deletion src/image_organizer/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
:exception nil
:is-repl? true
:logo-image nil
:version "v1.01"
:version "v1.02"
:app-name "Image Organizer"}))

(def event-handler
Expand Down
2 changes: 1 addition & 1 deletion src/image_organizer/util.clj
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
(defn logo-image-url
"Load the URL of the logo image file"
[]
(str (io/resource "Image Organizer.png")))
(str (io/resource "image-organizer.png")))

(defn file->url
"Gets the URL of a file"
Expand Down

0 comments on commit 0bc036b

Please sign in to comment.