File tree Expand file tree Collapse file tree 4 files changed +7
-9
lines changed Expand file tree Collapse file tree 4 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -40,18 +40,18 @@ ConfigView::ConfigView(uint32 flags)
40
40
BStringView *versionView = new BStringView (" version" , version);
41
41
42
42
BStringView *copyrightView = new BStringView (" copyright" ,
43
- B_UTF8_COPYRIGHT " 2025 Haiku Inc. " );
43
+ B_UTF8_COPYRIGHT " 2025 Johan Wagenheim " );
44
44
45
45
BString openExrInfo = B_TRANSLATE (" Based on libheif %version%" );
46
46
openExrInfo.ReplaceAll (" %version%" , heif_get_version ());
47
47
BStringView *copyrightView2 = new BStringView (" copyright2" ,
48
48
openExrInfo.String ());
49
49
50
50
BStringView *copyrightView3 = new BStringView (" copyright3" ,
51
- B_UTF8_COPYRIGHT " 2002-2014 Industrial Light & Magic, " );
51
+ " Based in part on code shared by Zenja at: " );
52
52
53
53
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 " ));
55
55
56
56
// Build the layout
57
57
BLayoutBuilder::Group<>(this , B_VERTICAL, 0 )
Original file line number Diff line number Diff line change 1
1
/*
2
2
* HEICMain.cpp – HEIC image translator for Haiku
3
- * Version 0.1 .0 (March 31st, 2025)
3
+ * Version 0.2 .0 (April 2025)
4
4
*
5
5
* Copyright (c) 2025 Johan Wagenheim <johan@dospuntos.no>
6
6
*
13
13
14
14
#include < Application.h>
15
15
#include < Catalog.h>
16
- #include < Alert.h>
17
16
18
17
#include " shared/TranslatorWindow.h"
19
18
#include " HEICTranslator.h"
23
22
24
23
int main ()
25
24
{
26
- (new BAlert (" Test" , " Main" , " OK" ))->Go ();
27
25
BApplication app (" application/x-vnd.Haiku-HEICTranslator" );
28
26
if (LaunchTranslatorWindow (new HEICTranslator,
29
27
B_TRANSLATE (" HEIC Settings" )) != B_OK)
Original file line number Diff line number Diff line change 19
19
#include < SupportDefs.h>
20
20
#include < TranslationDefs.h>
21
21
22
- #define HEIC_TRANSLATOR_VERSION B_TRANSLATION_MAKE_VERSION (0 ,1 ,0 )
22
+ #define HEIC_TRANSLATOR_VERSION B_TRANSLATION_MAKE_VERSION (0 ,2 ,0 )
23
23
#define HEIC_IMAGE_FORMAT ' HEIC'
24
24
25
25
class HEICTranslator : public BaseTranslator {
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ resource app_signature "application/x-vnd.Haiku-HEICTranslator";
2
2
3
3
resource app_version {
4
4
major = 0,
5
- middle = 1 ,
5
+ middle = 2 ,
6
6
minor = 0,
7
7
8
8
variety = B_APPV_FINAL,
9
9
internal = 0,
10
10
11
- short_info = "0.1 .0",
11
+ short_info = "0.2 .0",
12
12
long_info = "Haiku HEICTranslator Add-On"
13
13
};
You can’t perform that action at this time.
0 commit comments