Skip to content

Commit 2524cce

Browse files
committed
Update info and version
1 parent 12d79ef commit 2524cce

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

ConfigView.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,18 @@ ConfigView::ConfigView(uint32 flags)
4040
BStringView *versionView = new BStringView("version", version);
4141

4242
BStringView *copyrightView = new BStringView("copyright",
43-
B_UTF8_COPYRIGHT "2025 Haiku Inc.");
43+
B_UTF8_COPYRIGHT "2025 Johan Wagenheim");
4444

4545
BString openExrInfo = B_TRANSLATE("Based on libheif %version%");
4646
openExrInfo.ReplaceAll("%version%", heif_get_version());
4747
BStringView *copyrightView2 = new BStringView("copyright2",
4848
openExrInfo.String());
4949

5050
BStringView *copyrightView3 = new BStringView("copyright3",
51-
B_UTF8_COPYRIGHT "2002-2014 Industrial Light & Magic,");
51+
"Based in part on code shared by Zenja at:");
5252

5353
BStringView *copyrightView4 = new BStringView("copyright4",
54-
B_TRANSLATE("a division of Lucasfilm Entertainment Company Ltd"));
54+
B_TRANSLATE("https://dev.haiku-os.org/ticket/14909#comment:5"));
5555

5656
// Build the layout
5757
BLayoutBuilder::Group<>(this, B_VERTICAL, 0)

HEICMain.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* HEICMain.cpp – HEIC image translator for Haiku
3-
* Version 0.1.0 (March 31st, 2025)
3+
* Version 0.2.0 (April 2025)
44
*
55
* Copyright (c) 2025 Johan Wagenheim <johan@dospuntos.no>
66
*
@@ -13,7 +13,6 @@
1313

1414
#include <Application.h>
1515
#include <Catalog.h>
16-
#include <Alert.h>
1716

1817
#include "shared/TranslatorWindow.h"
1918
#include "HEICTranslator.h"
@@ -23,7 +22,6 @@
2322

2423
int main()
2524
{
26-
(new BAlert("Test", "Main", "OK"))->Go();
2725
BApplication app("application/x-vnd.Haiku-HEICTranslator");
2826
if (LaunchTranslatorWindow(new HEICTranslator,
2927
B_TRANSLATE("HEIC Settings")) != B_OK)

HEICTranslator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include <SupportDefs.h>
2020
#include <TranslationDefs.h>
2121

22-
#define HEIC_TRANSLATOR_VERSION B_TRANSLATION_MAKE_VERSION(0,1,0)
22+
#define HEIC_TRANSLATOR_VERSION B_TRANSLATION_MAKE_VERSION(0,2,0)
2323
#define HEIC_IMAGE_FORMAT 'HEIC'
2424

2525
class HEICTranslator : public BaseTranslator {

HEICTranslator.rdef

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ resource app_signature "application/x-vnd.Haiku-HEICTranslator";
22

33
resource app_version {
44
major = 0,
5-
middle = 1,
5+
middle = 2,
66
minor = 0,
77

88
variety = B_APPV_FINAL,
99
internal = 0,
1010

11-
short_info = "0.1.0",
11+
short_info = "0.2.0",
1212
long_info = "Haiku HEICTranslator Add-On"
1313
};

0 commit comments

Comments
 (0)