Releases: rapoelho/inSANE
1.1.0
v1.0.2
🇧🇷: Adaptando o código para ficar de uma forma melhor.
🇺🇸: Adapting the code to make it look better.
Full Changelog: v1.0.1...v1.0.2
v1.0.1
I found a better way to detect the Pictures Folder. I decided to use the xdg-user-dir PICTURES
command to detect the Pictures Folder.
So The Script is now language independent and this can be used even in English or in Portuguese, but the script messeges are in Portuguese.
Therefore the "configurarVariaveis" routine changed from these lines:
configurarVariaveis () {
PastaPadrao=~/Imagens/Scan ## Pasta onde o Scan será salvo
ResolucaoPadrao=600 ## Resolução da imagem em DPI
}
To these lines:
configurarVariaveis () {
PastaImagens=`xdg-user-dir PICTURES`
PastaPadrao=~$PastaImagens/Scan ## Pasta onde o Scan será salvo
ResolucaoPadrao=600 ## Resolução da imagem em DPI
}
Fixed Bug (23/11/2024)
Fixed code in the "PastaPadrao" variable. From...
configurarVariaveis () {
PastaImagens=`xdg-user-dir PICTURES`
PastaPadrao=~$PastaImagens/Scan ## Pasta onde o Scan será salvo
ResolucaoPadrao=600 ## Resolução da imagem em DPI
}
... to
configurarVariaveis () {
PastaImagens=`xdg-user-dir PICTURES`
PastaPadrao=$PastaImagens/Scan ## Pasta onde o Scan será salvo
ResolucaoPadrao=600 ## Resolução da imagem em DPI
}
v1.0.0
This is a first version of my shell script that I made when the other SANE Frontends stopped working.
This version includes the ability of scan images in the ~/Imagens/Scan
directory with 600 DPI resolution and automatic scanner detection.
And this inSANE version is in Brazilian Portuguese.