Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chadimessmer committed Jan 10, 2023
1 parent 15b82a4 commit fc59739
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:warning: ONLY WORKING WITH SWISS IBAN :warning:

_Pay Your Bill - MF_ is a desktop application that generates complete invoices with the new QR Code payment slips that were introduced in Switzerland on June 30th, 2020 and replaces the old payment slips since October 1st, 2022.
It's available for [macOS](https://www.chadimessmer.ch/pybmf/mac_v1.2.0.zip), [Linux](https://www.chadimessmer.ch/pybmf/linux_v1.2.0.zip) & [Windows](https://www.chadimessmer.ch/pybmf/windows_v1.2.0.zip).
It's available for [macOS](https://www.chadimessmer.ch/pybmf/mac_v2.0.0.zip), [Linux](https://www.chadimessmer.ch/pybmf/linux_v2.0.0.zip) & [Windows](https://www.chadimessmer.ch/pybmf/windows_v2.0.0.zip).

It is builded using [Nextron](https://github.com/saltyshiomix/nextron) & [SwissQRBill](https://github.com/schoero/SwissQRBill).

Expand Down
8 changes: 4 additions & 4 deletions main/helpers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ ipcMain.handle("console", (event, line, mydata, currency) => {
fillColor: "#ECF0F1",
columns: [
{
text: "Position",
width: mm2pt(20),
text: "Pos.",
width: mm2pt(10),
},
{
text: langues.quantité,
Expand All @@ -228,7 +228,7 @@ ipcMain.handle("console", (event, line, mydata, currency) => {
columns: [
{
text: "",
width: mm2pt(20),
width: mm2pt(10),
},
{
text: "",
Expand Down Expand Up @@ -298,7 +298,7 @@ ipcMain.handle("console", (event, line, mydata, currency) => {
columns: [
{
text: index,
width: mm2pt(20),
width: mm2pt(10),
},
{
text: facture.qty,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "pay-your-bill-mf",
"description": "Generate invoices for swiss IBAN",
"version": "1.2.0",
"version": "2.0.0",
"author": "Chadi Messmer <[email protected]>",
"main": "app/background.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions renderer/pages/home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ function Home() {
name="description"
/>
<label className=" text-gray-700 text-sm font-bold mb-2" htmlFor="prix">
{enFrancais ? "Prix unitaire" : "Einselpreis"}
{enFrancais ? "Prix unitaire" : "Einzelpreis"}
</label>
<input
className="prix shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:border-gray-500"
Expand Down Expand Up @@ -564,7 +564,7 @@ function Home() {
name="prix"
/>
<label className="subtotal text-gray-700 text-sm font-bold mb-2">
total : {parseFloat(values.factures[index].prix).toFixed(2)} CHF
total : {parseFloat(values.factures[index].prix).toFixed(2)} {currency}
</label>
<button
onClick={(e) => {
Expand Down

0 comments on commit fc59739

Please sign in to comment.