mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Merge branch 'maint' into unstable
Resolved conflicts: CMakeLists.txt NEWS configure.ac
This commit is contained in:
commit
b3b4b20e4b
18
NEWS
18
NEWS
@ -74,6 +74,24 @@ Version history:
|
|||||||
applications-specific directory, gnucash.
|
applications-specific directory, gnucash.
|
||||||
|
|
||||||
|
|
||||||
|
2.6.18 - 24 September 2017
|
||||||
|
|
||||||
|
The following bugs are fixed:
|
||||||
|
Bug 644898 - Calendar of upcoming SXes has various display issues
|
||||||
|
Bug 647805 - Interdependent report options fail to change state after
|
||||||
|
using apply for a limited number of times.
|
||||||
|
Bug 771246 - Set Invoice/Bill items date correctly from imported CSV.
|
||||||
|
Bug 784284 - unifying "Clear the entry." tooltip on Loan Repayment
|
||||||
|
Calculator
|
||||||
|
Bug 787479 - Persian currency symbol is doubled.
|
||||||
|
|
||||||
|
Other repairs not marked as bugs in git:
|
||||||
|
Added Catalan Accounts for the New Account Assistant
|
||||||
|
Fixed errors from loading init.py.
|
||||||
|
Run the python bindings tests in a CMake build.
|
||||||
|
Implement dist, distcheck, and uninstall targets for CMake build.
|
||||||
|
|
||||||
|
Updated Translations: Farsi, German, Japanese, Latvian, Serbian, Spanish
|
||||||
|
|
||||||
2.6.17 - 2 July 2017
|
2.6.17 - 2 July 2017
|
||||||
|
|
||||||
|
@ -22,43 +22,20 @@ FUNCTION(FIND_AUTOMAKE AUTOMAKE_VAR ACLOCAL_VAR AUTOMAKE_VERSION_VAR NEED_OVERRI
|
|||||||
ERROR_VARIABLE AUTOMAKE_ERROR
|
ERROR_VARIABLE AUTOMAKE_ERROR
|
||||||
)
|
)
|
||||||
|
|
||||||
# GnuCash will not pass distcheck under automake 1.15+
|
|
||||||
# See if automake-1.11 is available. If so use, that
|
|
||||||
SET(AUTOMAKE_OK TRUE)
|
SET(AUTOMAKE_OK TRUE)
|
||||||
SET(NEED_OVERRIDE FALSE)
|
SET(NEED_OVERRIDE FALSE)
|
||||||
IF(${AUTOMAKE} STREQUAL AUTOMAKE-NOTFOUND)
|
IF(${AUTOMAKE} STREQUAL AUTOMAKE-NOTFOUND)
|
||||||
SET(AUTOMAKE_OK FALSE)
|
SET(AUTOMAKE_OK FALSE)
|
||||||
ELSE()
|
ELSE()
|
||||||
STRING(REGEX REPLACE ".*automake \\(GNU automake\\) ([0-9]\\.[0-9]+).*" "\\1" AUTOMAKE_VERSION "${AUTOMAKE_OUTPUT}")
|
STRING(REGEX REPLACE ".*automake \\(GNU automake\\) ([0-9]\\.[0-9]+).*" "\\1" AUTOMAKE_VERSION "${AUTOMAKE_OUTPUT}")
|
||||||
|
FIND_PROGRAM(ACLOCAL aclocal)
|
||||||
IF (${AUTOMAKE_VERSION} VERSION_GREATER "1.14")
|
IF(${ACLOCAL} STREQUAL ACLOCAL-NOTFOUND)
|
||||||
SET(AUTOMAKE_OK FALSE)
|
MESSAGE(FATAL_ERROR "Found ok version of automake, but can't find aclocal")
|
||||||
ELSE()
|
|
||||||
FIND_PROGRAM(ACLOCAL aclocal)
|
|
||||||
IF(${ACLOCAL} STREQUAL ACLOCAL-NOTFOUND)
|
|
||||||
MESSAGE(FATAL_ERROR "Found ok version of automake, but can't find aclocal")
|
|
||||||
ENDIF()
|
|
||||||
ENDIF()
|
ENDIF()
|
||||||
ENDIF()
|
ENDIF()
|
||||||
IF (NOT AUTOMAKE_OK)
|
IF (NOT AUTOMAKE_OK)
|
||||||
FIND_PROGRAM(AUTOMAKE11 automake-1.11)
|
MESSAGE(FATAL_ERROR "Can't find 'automake' or 'automake-1.11'")
|
||||||
IF (${AUTOMAKE11} STREQUAL AUTOMAKE11-NOTFOUND)
|
MESSAGE(" You can set AUTOTOOLS_IN_DIST=OFF to exclude autotools support.")
|
||||||
IF (${AUTOMAKE} STREQUAL AUTOMAKE-NOTFOUND)
|
|
||||||
MESSAGE(FATAL_ERROR "Can't find 'automake' or 'automake-1.11'")
|
|
||||||
ELSE()
|
|
||||||
MESSAGE("Automake is incompatible version 1.15+, but can't find automake-1.11")
|
|
||||||
MESSAGE(" You can set AUTOTOOLS_IN_DIST=OFF to exclude autotools support.")
|
|
||||||
MESSAGE(FATAL_ERROR "automake not compatible")
|
|
||||||
ENDIF()
|
|
||||||
ELSE()
|
|
||||||
SET(AUTOMAKE ${AUTOMAKE11})
|
|
||||||
SET(AUTOMAKE_VERSION 1.11)
|
|
||||||
SET(NEED_OVERRIDE TRUE)
|
|
||||||
FIND_PROGRAM(ACLOCAL aclocal-1.11)
|
|
||||||
IF(${ACLOCAL} STREQUAL ACLOCAL-NOTFOUND)
|
|
||||||
MESSAGE(FATAL_ERROR "Found automake-1.11, but not aclocal-1.11")
|
|
||||||
ENDIF()
|
|
||||||
ENDIF()
|
|
||||||
ENDIF()
|
ENDIF()
|
||||||
SET(${AUTOMAKE_VAR} ${AUTOMAKE} PARENT_SCOPE)
|
SET(${AUTOMAKE_VAR} ${AUTOMAKE} PARENT_SCOPE)
|
||||||
SET(${ACLOCAL_VAR} ${ACLOCAL} PARENT_SCOPE)
|
SET(${ACLOCAL_VAR} ${ACLOCAL} PARENT_SCOPE)
|
||||||
|
@ -15,7 +15,7 @@ SET(account_DATA
|
|||||||
acctchrt_spouseinc.gnucash-xea
|
acctchrt_spouseinc.gnucash-xea
|
||||||
acctchrt_spouseretire.gnucash-xea)
|
acctchrt_spouseretire.gnucash-xea)
|
||||||
|
|
||||||
SET_DIST_LIST(ca_DIST ${account_DATA} Makefile.am CMakeLists.txt)
|
SET_DIST_LIST(CA_DIST ${account_DATA} Makefile.am CMakeLists.txt)
|
||||||
|
|
||||||
INSTALL(FILES ${account_DATA} DESTINATION ${ACCOUNTS_INSTALL_DIR}/ca)
|
INSTALL(FILES ${account_DATA} DESTINATION ${ACCOUNTS_INSTALL_DIR}/ca)
|
||||||
FILE(COPY ${account_DATA} DESTINATION ${ACCOUNTS_BUILD_DIR}/ca)
|
FILE(COPY ${account_DATA} DESTINATION ${ACCOUNTS_BUILD_DIR}/ca)
|
||||||
|
@ -3,6 +3,7 @@ ADD_SUBDIRECTORY(examples)
|
|||||||
SET(doc_DATA
|
SET(doc_DATA
|
||||||
README.francais
|
README.francais
|
||||||
README.german
|
README.german
|
||||||
|
README-ca.win32-bin.txt
|
||||||
README-de.win32-bin.txt
|
README-de.win32-bin.txt
|
||||||
README-fr.win32-bin.txt
|
README-fr.win32-bin.txt
|
||||||
README-it.win32-bin.txt
|
README-it.win32-bin.txt
|
||||||
|
@ -3,6 +3,7 @@ SUBDIRS = examples
|
|||||||
doc_DATA = \
|
doc_DATA = \
|
||||||
README.francais \
|
README.francais \
|
||||||
README.german \
|
README.german \
|
||||||
|
README-ca.win32-bin.txt \
|
||||||
README-de.win32-bin.txt \
|
README-de.win32-bin.txt \
|
||||||
README-fr.win32-bin.txt \
|
README-fr.win32-bin.txt \
|
||||||
README-it.win32-bin.txt \
|
README-it.win32-bin.txt \
|
||||||
|
52
doc/README-ca.win32-bin.txt
Normal file
52
doc/README-ca.win32-bin.txt
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
GnuCash és un programa de comptabilitat lliure, de codi obert publicat sota la
|
||||||
|
Llicència Pública General GNU (GPL) i disponible per a GNU / Linux, *BSD,
|
||||||
|
Solaris, Mac OSX i Microsoft Windows.
|
||||||
|
|
||||||
|
Dissenyat per ser fàcil d'usar, però potent i flexible, GnuCash permet
|
||||||
|
realitzar un seguiment dels comptes bancaris, les existències, els ingressos i les despeses. Tan ràpid i
|
||||||
|
intuïtiu d'utilitzar com una llista de verificació, es basa en
|
||||||
|
principis comptables professionals per assegurar balanços de comptes i informes precisos.
|
||||||
|
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Opcions d'assistència disponibles:
|
||||||
|
|
||||||
|
Preguntes freqüents en línia: http://wiki.gnucash.org/wiki/FAQ
|
||||||
|
Llistes de correu: http://wiki.gnucash.org/wiki/Mailing_Lists
|
||||||
|
IRC (Xat): canal #gnucash al servidor irc.gnome.org, vegeu també http://wiki.gnucash.org/wiki/IRC
|
||||||
|
|
||||||
|
Si trobeu errors o problemes, no dubteu a informar-los
|
||||||
|
a la nostra eina de seguiment d'errors "Bugzilla":
|
||||||
|
http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash
|
||||||
|
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Característiques principals:
|
||||||
|
|
||||||
|
* Comptabilitat de doble entrada
|
||||||
|
* Comptes d'accions / bons / fons d'inversió
|
||||||
|
* Importació de fitxers QIF / OFX
|
||||||
|
* OFX / HBCI Banca en línia
|
||||||
|
* Informes, gràfics
|
||||||
|
* Comptabilitat de petites empreses
|
||||||
|
* Clients, venedors, treballs, factures, comptes de deutes i cobraments
|
||||||
|
* Transaccions programades
|
||||||
|
* Càlculs financers
|
||||||
|
|
||||||
|
Podeu trobar més informació i un tutorial sobre com començar
|
||||||
|
al menú "Ajuda" quan feu clic a "Guia de conceptes i tutorials".
|
||||||
|
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Sobre el programa:
|
||||||
|
|
||||||
|
GnuCash és un programa de comptabilitat lliure, de codi obert publicat sota la
|
||||||
|
Llicència pública general GNU (GPL). Està desenvolupat de manera col·laborativa per
|
||||||
|
12 persones de més de 6 països.
|
||||||
|
|
||||||
|
La programació de GnuCash va començar el 1997, i la seva primera versió
|
||||||
|
va ser l'any 1998.
|
||||||
|
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Aquesta és la traducció al català del fitxer README GnuCash 2.2.x per als paquets binaris de Windows.
|
Loading…
Reference in New Issue
Block a user