Skip to content

Commit

Permalink
Kinda stable build; ver. 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kawashirov committed Oct 4, 2022
1 parent 310989a commit c101213
Show file tree
Hide file tree
Showing 8 changed files with 547 additions and 267 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,11 @@ dmypy.json

# Pyre type checker
.pyre/

# kawa
*.dist/
*.build/
*.onefile-build/
Project_Default.xml
*.bak
main.exe
2 changes: 1 addition & 1 deletion .idea/misc.xml

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

4 changes: 3 additions & 1 deletion .idea/vrc2webp.iml

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

29 changes: 15 additions & 14 deletions assets/default.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
# vrc2webp default configuration file

# Where to delete files:
# - keep - do not delete anything, keep original file with converted.
# - trash - delete to system Recycle Bin, keeps space on disk used, but possible to restore. (Default)
# - unlink - delete file permanently from file system.
delete-mode: trash

#
# CPU priorities of processes: above_normal, normal, below_normal, idle
# Using lower priorities by default to not interfere with other running software.
# It's not possible to set realtime or high priorities for safety/sanity reasons.
Expand All @@ -20,15 +13,18 @@ own-priority-io: low
recoders-priority-io: very_low

# Where to watch files to recode to WEBP.
# Windows environment %VARIABLES% are supported.
watch-paths:
- '%USERPROFILE%\Pictures\VRChat\2021-11 - Copy\'
# - '%USERPROFILE%\Pictures\ChilloutVR\'
- '%USERPROFILE%\Pictures\VRChat\'
- '%USERPROFILE%\Pictures\ChilloutVR\'

# Look for files in sub-folders.
recursive: true
# recursive: true
# NOT IMPLEMENTED YET; ALWAYS RECURSIVE

# Extensions of files to convert to WEBP.
file-extensions: [.png, .jpg, .jpeg]
# Extensions of original files to convert to WEBP.
# Note: extensions .tmp.jpg, .tmp.png, ... are used internally and ignored.
file-extensions: [ .png, .jpg, .jpeg ]

# Change naming format of VRChat screenshots. Ex:
# VRChat_3840x2160_2021-11-10_19-21-40.183.webp -> VRChat_2021-11-10_19-21-40.183_3840x2160.webp
Expand All @@ -39,6 +35,11 @@ vrc-swap-resolution-and-time: true
# if 0 or negative - will choose automatically number of logical cores on your CPU.
max-parallel-recodes: -1

#
# Try update modification time of files to be the same as originals.
# Try update modification time of recoded WEBP files to be the same as originals.
update-mtime: true

# Where to delete original files:
# - keep - do not delete anything, keep original file with converted.
# - trash - delete to system Recycle Bin, keeps space on disk used, but possible to restore. (Default)
# - unlink - delete file permanently from file system.
delete-mode: trash
Loading

0 comments on commit c101213

Please sign in to comment.