Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • deadlocker8/BudgetMaster
1 result
Select Git revision
Loading items
Show changes
......@@ -49,7 +49,7 @@ class TransactionNameKeywordImporterTest extends ImporterTestBase
@Test
void test_importKeywords_skipAlreadyExisting()
{
final TransactionNameKeyword existingKeyword = new TransactionNameKeyword(12, "income");
final TransactionNameKeyword existingKeyword = new TransactionNameKeyword(null, "income");
keywordRepository.save(existingKeyword);
final TransactionNameKeywordImporter importer = new TransactionNameKeywordImporter(keywordRepository);
......
FROM eclipse-temurin:17-jre-alpine
FROM eclipse-temurin:21-jre-alpine
RUN apk update && apk upgrade && \
rm -rf /var/cache/apk
......@@ -8,7 +8,7 @@ ARG APP_DIR=/BudgetMaster
RUN mkdir -p $APP_DIR
RUN mkdir -p /root/.Deadlocker/BudgetMaster
COPY BudgetMasterServer/build/2.17.2/BudgetMasterServer-v2.17.2.jar /BudgetMaster/BudgetMaster.jar
COPY BudgetMasterServer/build/2.18.0/BudgetMasterServer-v2.18.0.jar /BudgetMaster/BudgetMaster.jar
COPY BudgetMasterServer/src/main/resources/config/templates/settings-docker.properties /root/.Deadlocker/BudgetMaster/settings.properties
RUN echo "server.port=9000" > ~/.Deadlocker/BudgetMaster/settings.properties
......
......@@ -2,7 +2,7 @@
Manage your monthly budget easily with BudgetMaster
- __start:__ 17.12.16
- __current release:__ v2.17.2 (49) from 15.11.24
- __current release:__ v2.18.0 (50) from 14.04.25
## Key Features
- Keep your data private - Host your own BudgetMaster server or use it in standalone mode. All data remains on your machines.
......
build/screenshots/dark/accounts.png

40.7 KiB | W: 0px | H: 0px

build/screenshots/dark/accounts.png

108 KiB | W: 0px | H: 0px

build/screenshots/dark/accounts.png
build/screenshots/dark/accounts.png
build/screenshots/dark/accounts.png
build/screenshots/dark/accounts.png
  • 2-up
  • Swipe
  • Onion skin
build/screenshots/light/accounts.png

43.3 KiB | W: 0px | H: 0px

build/screenshots/light/accounts.png

89.1 KiB | W: 0px | H: 0px

build/screenshots/light/accounts.png
build/screenshots/light/accounts.png
build/screenshots/light/accounts.png
build/screenshots/light/accounts.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -7,7 +7,7 @@
<groupId>de.deadlocker8</groupId>
<artifactId>BudgetMaster</artifactId>
<packaging>pom</packaging>
<version>2.17.2</version>
<version>2.18.0</version>
<name>BudgetMaster</name>
<modules>
......@@ -40,21 +40,21 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.5</version>
<version>3.4.4</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>17</java.version>
<java.version>21</java.version>
<app.versionDate>${maven.build.timestamp}</app.versionDate>
<maven.build.timestamp.format>dd.MM.yy</maven.build.timestamp.format>
<app.versionCode>49</app.versionCode>
<app.versionCode>50</app.versionCode>
<app.author>Robert Goldmann</app.author>
<testcontainer.version>1.20.3</testcontainer.version>
<assertj-core.version>3.26.3</assertj-core.version>
<testcontainer.version>1.20.6</testcontainer.version>
<assertj-core.version>3.27.3</assertj-core.version>
</properties>
<dependencies>
......