Skip to content

Releases: rapoelho/inSANE

1.1.0

18 Apr 02:40
66865a4
Compare
Choose a tag to compare
  • Melhoras na Detecção do Scanner, deixando o inSANE exclusivo para Scanners USB. Se o Scanner não for detectado, o inSANE encerra e avisa sobre o Scanner
  • Notificações!
  • Detecção do SANE. Se o SANE não estiver instalado, o inSANE notifica o usuário.

v1.0.2

28 Dec 17:19
f555de9
Compare
Choose a tag to compare

🇧🇷: 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

20 Nov 15:40
3386d7a
Compare
Choose a tag to compare

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

20 Nov 02:05
b2bf9ae
Compare
Choose a tag to compare

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.